Pimcore\Model\Object\News::getShortText PHP Method

getShortText() public method

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