Home
last modified time | relevance | path

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

/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php74 public $strip_attributes = ['bgsound', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc']; variable in SimplePie\\Sanitize
215 public function strip_attributes($attribs = ['bgsound', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc']) function in SimplePie\\Sanitize
219 $this->strip_attributes = $attribs;
221 $this->strip_attributes = explode(',', $attribs);
224 $this->strip_attributes = false;
398 if ($this->strip_attributes) {
399 foreach ($this->strip_attributes as $attrib) {
H A DSimplePie.php644 * @var array Stores the default attributes to be stripped by strip_attributes().
645 * @see SimplePie::strip_attributes()
648 public $strip_attributes = ['bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc']; variable in SimplePie\\SimplePie
1349 $this->strip_attributes(false);
1395 public function strip_attributes($attribs = '') function in SimplePie\\SimplePie
1398 $attribs = $this->strip_attributes;
1400 $this->sanitize->strip_attributes($attribs);