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;
        }
    }