Ejemplo n.º 1
0
 /**
  * Retrieve og image url
  * @return string
  */
 public function getOgImage()
 {
     if (!$this->hasData('og_image')) {
         if ($file = $this->getData('og_img')) {
             $image = $this->_url->getMediaUrl($file);
         } else {
             $image = false;
         }
         $this->setData('og_image', $image);
     }
     return $this->getData('og_image');
 }