Home
last modified time | relevance | path

Searched refs:attributes (Results 26 – 29 of 29) sorted by path

12

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php108 private static $attributes;
432 self::$attributes = [
509 self::$attributes,
1133 $attributes = $this->parseAttributes($response);
1134 if (!isset($attributes['type']) && $this->version < 4) {
1137 $attributes['type'] = $fileType;
1140 $contents[$shortname] = $attributes + ['filename' => $shortname];
1142 if (isset($attributes['type']) && $attributes['type'] == NET_SFTP_TYPE_DIRECTORY && ($shortname != '.' && $shortname != '..')) {
1150 $this->update_stat_cache($temp, (object) ['lstat' => $attributes]);
328 var $attributes = array(); global() variable in phpseclib\\Net\\SFTP
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md94 - New methods `SimplePie::rename_attributes()` and `SimplePie_Sanitize::rename_attributes()` allow renaming attributes by @math-GH in [#717](https://github.com/simplepie/simplepie/pull/717)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php205 $attributes = [];
212 $attributes[$attrName] = $xml->value;
214 $this->tag_open(null, $tagName, $attributes);
267 public function tag_open($parser, $tag, $attributes) argument
272 foreach ($attributes as $name => $value) {
H A DSanitize.php252 * Set element/attribute key/value pairs of HTML attributes
383 // Strip out HTML tags and attributes that might cause various security problems.
412 foreach ($this->replace_url_attributes as $element => $attributes) {
413 $this->replace_urls($document, $element, $attributes);
497 public function replace_urls($document, $tag, $attributes) argument
499 if (!is_array($attributes)) {
500 $attributes = [$attributes];
506 foreach ($attributes as $attribute) {
548 foreach ($element->attributes a
[all...]

12