Backend\Core\Engine\Meta::getTitle PHP Method

getTitle() public method

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