Home
last modified time | relevance | path

Searched refs:sanitize (Results 1 – 4 of 4) sorted by last modified time

/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php438 public $sanitize; variable in SimplePie\\SimplePie
703 $this->sanitize = new \SimplePie\Sanitize();
1368 $this->sanitize->remove_div($enable);
1376 $this->sanitize->strip_htmltags($tags);
1378 $this->sanitize->encode_instead_of_strip($tags);
1384 $this->sanitize->encode_instead_of_strip($enable);
1392 $this->sanitize->rename_attributes($attribs);
1400 $this->sanitize->strip_attributes($attribs);
1408 $this->sanitize->add_attributes($attribs);
1435 $this->sanitize
2304 public function sanitize($data, $type, $base = '') global() function in SimplePie\\SimplePie
[all...]
H A DSource.php94 public function sanitize($data, $type, $base = '') function in SimplePie\\Source
96 return $this->item->sanitize($data, $type, $base);
107 return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$return[0]['attribs']]), $this->get_base($return[0]));
109 return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$return[0]['attribs']]), $this->get_base($return[0]));
111 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
113 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
115 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
117 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
119 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
144 $term = $this->sanitize(
[all...]
H A DItem.php178 * @see \SimplePie\SimplePie::sanitize()
179 * @param string $data Data to sanitize
184 public function sanitize($data, $type, $base = '') function in SimplePie\\Item
186 return $this->feed->sanitize($data, $type, $base);
221 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
223 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
225 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
227 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
229 return $this->sanitize($return[0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
231 return $this->sanitize(
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md221 * Check the result of sanitize before returning in `get_content()` and `get_description()`. [#494](https://github.com/simplepie/simplepie/pull/494)