getKeywords() публичный Метод

Устаревший:
public getKeywords ( ) : string
Результат string
Пример #1
0
 /**
  * @param boolean $callParent
  * @return string
  */
 public function getKeywords($callParent = true)
 {
     if ($callParent) {
         return parent::getKeywords();
     }
     foreach ($this->getPagesOnPath() as $page) {
         if ($page->getKeywords()) {
             return $page->getKeywords();
         }
     }
     return '';
 }