Home
last modified time | relevance | path

Searched refs:attrib (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php392 foreach ($this->rename_attributes as $attrib) {
393 $this->rename_attr($attrib, $xpath);
398 foreach ($this->strip_attributes as $attrib) {
399 $this->strip_attr($attrib, $xpath);
603 protected function strip_attr($attrib, $xpath) argument
605 $elements = $xpath->query('//*[@' . $attrib . ']');
608 $element->removeAttribute($attrib);
612 protected function rename_attr($attrib, $xpath) argument
614 $elements = $xpath->query('//*[@' . $attrib . ']');
617 $element->setAttribute('data-sanitized-' . $attrib, $element->getAttribute($attrib));
[all …]