Prado\Web\UI\TPage::getTitle PHP Метод

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

public getTitle ( ) : string
Результат string page title.
    public function getTitle()
    {
        if ($this->_head) {
            return $this->_head->getTitle();
        } else {
            return $this->_title === null ? '' : $this->_title;
        }
    }