getContent() public method

Get parsed template content.
public getContent ( ) : string
return string
Esempio n. 1
0
 /**
  * Get the block content
  *
  * @return string
  */
 public function getContent()
 {
     // set path to template if the widget didn't return any data
     if ($this->output === null) {
         return trim($this->object->getContent());
     }
     // return possible output
     return trim($this->output);
 }