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

getText() public method

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