Pimcore\Model\Object\BlogArticle::getTitle PHP Method

getTitle() public method

Get title - Title
public getTitle ( $language = null ) : string
return string
    public function getTitle($language = null)
    {
        $data = $this->getLocalizedfields()->getLocalizedValue("title", $language);
        $preValue = $this->preGetValue("title");
        if ($preValue !== null && !\Pimcore::inAdmin()) {
            return $preValue;
        }
        return $data;
    }