Home
last modified time | relevance | path

Searched refs:attribs (Results 1 – 6 of 6) sorted by path

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php1653 _start_element_handler($parser, $name, $attribs) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php230 } elseif (isset($this->data['attribs'][\SimplePie\SimplePie::NAMESPACE_RDF]['about'])) {
231 return $this->sanitize($this->data['attribs'][\SimplePie\SimplePie::NAMESPACE_RDF]['about'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
258 $this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$return[0]['attribs']]), $this->get_base($return[0]));
260 $this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$return[0]['attribs']]), $this->get_base($return[0]));
296 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
299 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
346 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_content_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
349 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
373 $thumbnail = $return[0]['attribs'][''];
421 if (isset($category['attribs']['']['ter
[all...]
H A DMisc.php118 $return[$i]['attribs'] = [];
119 if (isset($matches[$i][2][0]) && preg_match_all('/[\x09\x0A\x0B\x0C\x0D\x20]+([^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3D\x3E]*)(?:[\x09\x0A\x0B\x0C\x0D\x20]*=[\x09\x0A\x0B\x0C\x0D\x20]*(?:"([^"]*)"|\'([^\']*)\'|([^\x09\x0A\x0B\x0C\x0D\x20\x22\x27\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x3E]*)?))?/', ' ' . $matches[$i][2][0] . ' ', $attribs, PREG_SET_ORDER)) {
120 for ($j = 0, $total_attribs = count($attribs); $j < $total_attribs; $j++) {
121 if (count($attribs[$j]) === 2) {
122 $attribs[$j][2] = $attribs[$j][1];
124 $return[$i]['attribs'][strtolower($attribs[$j][1])]['data'] = Misc::entities_decode(end($attribs[$j]));
135 foreach ($element['attribs'] a
1804 atom_03_construct_type($attribs) global() argument
1833 atom_10_construct_type($attribs) global() argument
1853 atom_10_content_construct_type($attribs) global() argument
[all...]
H A DParser.php271 $attribs = [];
274 $attribs[$attrib_namespace][$attribute] = $value;
277 if (isset($attribs[\SimplePie\SimplePie::NAMESPACE_XML]['base'])) {
278 $base = $this->registry->call(Misc::class, 'absolutize_url', [$attribs[\SimplePie\SimplePie::NAMESPACE_XML]['base'], end($this->xml_base)]);
288 if (isset($attribs[\SimplePie\SimplePie::NAMESPACE_XML]['lang'])) {
289 $this->xml_lang[] = $attribs[\SimplePie\SimplePie::NAMESPACE_XML]['lang'];
298 if (isset($attribs[''])) {
299 foreach ($attribs[''] as $name => $value) {
308 $this->data = ['data' => '', 'attribs' => $attribs, 'xml_bas
[all...]
H A DSanitize.php202 public function rename_attributes($attribs = []) argument
204 if ($attribs) {
205 if (is_array($attribs)) {
206 $this->rename_attributes = $attribs;
208 $this->rename_attributes = explode(',', $attribs);
215 public function strip_attributes($attribs = ['bgsound', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc']) argument
217 if ($attribs) {
218 if (is_array($attribs)) {
219 $this->strip_attributes = $attribs;
221 $this->strip_attributes = explode(',', $attribs);
228 add_attributes($attribs = ['audio'['preload''none'], 'iframe'['sandbox''allow-scripts allow-same-origin'], 'video'['preload''none']]) global() argument
[all...]
H A DSimplePie.php1387 public function rename_attributes($attribs = '') argument
1389 if ($attribs === '') {
1390 $attribs = $this->rename_attributes;
1392 $this->sanitize->rename_attributes($attribs);
1395 public function strip_attributes($attribs = '') argument
1397 if ($attribs === '') {
1398 $attribs = $this->strip_attributes;
1400 $this->sanitize->strip_attributes($attribs);
1403 public function add_attributes($attribs = '') argument
1405 if ($attribs
[all...]