Ejemplo n.º 1
0
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $model = $this->getModelObject();
     return $model ? $model->getMetaTags() : parent::getKeywords();
 }
Ejemplo n.º 2
0
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $model = $this->getNewsMessage();
     return $model ? $model->getMetaTags() : parent::getKeywords();
 }
Ejemplo n.º 3
0
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $page = $this->getPage();
     // todo: rename getMetaKeywords() to getMetaTags()
     return $page ? $page->getMetaKeywords() : parent::getKeywords();
 }
Ejemplo n.º 4
0
Archivo: Page.php Proyecto: kingsj/core
 /**
  * Get meta keywords
  *
  * @return string
  * @see    ____func_see____
  * @since  1.0.0
  */
 public function getKeywords()
 {
     $page = $this->getPage();
     return $page ? $page->getMetaKeywords() : parent::getKeywords();
 }