Frontend\Core\Engine\Block\Extra::getContent PHP Метод

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

Get the block content
public getContent ( ) : string
Результат 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);
    }