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

getPosterImage() public method

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