Pimcore\Model\Object\BlogArticle::getPosterImage PHP Метод

getPosterImage() публичный Метод

Get posterImage - Poster Image
public getPosterImage ( ) : Pimcore\Model\Object\Data\Hotspotimage
Результат Pimcore\Model\Object\Data\Hotspotimage
    public function getPosterImage()
    {
        $preValue = $this->preGetValue("posterImage");
        if ($preValue !== null && !\Pimcore::inAdmin()) {
            return $preValue;
        }
        $data = $this->posterImage;
        return $data;
    }