Home
last modified time | relevance | path

Searched refs:strip_htmltags (Results 1 – 2 of 2) sorted by last modified time

/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php72 public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style']; variable in SimplePie\\Sanitize
184 public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style']) function in SimplePie\\Sanitize
188 $this->strip_htmltags = $tags;
190 $this->strip_htmltags = explode(',', $tags);
193 $this->strip_htmltags = false;
386 if ($this->strip_htmltags) {
387 foreach ($this->strip_htmltags as $tag) {
503 if (!is_array($this->strip_htmltags) || !in_array($tag, $this->strip_htmltags)) {
H A DSimplePie.php658 * @var array Stores the default tags to be stripped by strip_htmltags().
659 * @see SimplePie::strip_htmltags()
662 public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style']; variable in SimplePie\\SimplePie
1348 $this->strip_htmltags(false);
1371 public function strip_htmltags($tags = '', $encode = null) function in SimplePie\\SimplePie
1374 $tags = $this->strip_htmltags;
1376 $this->sanitize->strip_htmltags($tags);