Пример #1
0
 /**
  * Get tag ids of the paragraph
  *
  * @return array
  */
 function getTagIds()
 {
     if ($this->getRenderedMetaContent() instanceof TagsAwareInterface) {
         return array_unique(array_merge(parent::getTagIds(), $this->getRenderedMetaContent()->getTagIds()));
     }
     return parent::getTagIds();
 }