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;
    }