Prado\Web\UI\TPage::getTitle PHP Method

getTitle() public method

public getTitle ( ) : string
return string page title.
    public function getTitle()
    {
        if ($this->_head) {
            return $this->_head->getTitle();
        } else {
            return $this->_title === null ? '' : $this->_title;
        }
    }