Backend\Core\Engine\Meta::getTitle PHP 메소드

getTitle() 공개 메소드

Get the current value for the page title;
public getTitle ( ) : mixed
리턴 mixed
    public function getTitle()
    {
        // not set so return null
        if (!isset($this->data['title'])) {
            return;
        }
        // return value
        return $this->data['title'];
    }