getCacheTagsOfWysiwygText() публичный статический Метод

public static getCacheTagsOfWysiwygText ( $text, array $tags = [] ) : array
$text
$tags array
Результат array
Пример #1
0
 /**
  * This is a dummy and is mostly implemented by relation types
  *
  * @param mixed $data
  * @param array $tags
  * @return array
  */
 public function getCacheTags($data, $tags = array())
 {
     return Text::getCacheTagsOfWysiwygText($data, $tags);
 }
Пример #2
0
 /**
  * @param $ownerDocument
  * @param array $blockedTags
  * @return array
  */
 public function getCacheTags($ownerDocument, $blockedTags = [])
 {
     return Text::getCacheTagsOfWysiwygText($this->text, $blockedTags);
 }