getCacheTagsOfWysiwygText() public static method

public static getCacheTagsOfWysiwygText ( $text, array $tags = [] ) : array
$text
$tags array
return array
Exemplo n.º 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);
 }
Exemplo n.º 2
0
 /**
  * @param $ownerDocument
  * @param array $blockedTags
  * @return array
  */
 public function getCacheTags($ownerDocument, $blockedTags = [])
 {
     return Text::getCacheTagsOfWysiwygText($this->text, $blockedTags);
 }