예제 #1
0
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $model = $this->getModelObject();
     return $model ? $model->getMetaTags() : parent::getKeywords();
 }
예제 #2
0
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $model = $this->getNewsMessage();
     return $model ? $model->getMetaTags() : parent::getKeywords();
 }
예제 #3
0
파일: Page.php 프로젝트: kirkbauer2/kirkxc
 /**
  * Get meta keywords
  *
  * @return string
  */
 public function getKeywords()
 {
     $page = $this->getPage();
     // todo: rename getMetaKeywords() to getMetaTags()
     return $page ? $page->getMetaKeywords() : parent::getKeywords();
 }
예제 #4
0
파일: Page.php 프로젝트: 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();
 }