getContent() публичный Метод

Get parsed template content
public getContent ( string $template = null ) : string
$template string
Результат string
Пример #1
0
 /**
  * Get the block content
  *
  * @param string $template
  *
  * @return string
  */
 public function render($template = null)
 {
     // set path to template if the widget didn't return any data
     if ($this->output === null) {
         return trim($this->object->getContent($template));
     }
     // return possible output
     return trim($this->output);
 }