/dokuwiki/vendor/simplepie/simplepie/src/ |
D | RegistryAware.php | 59 * @param Registry $registry 63 public function set_registry(Registry $registry)/* : void */; argument
|
D | Locator.php | 71 protected $registry; variable in SimplePie\\Locator 97 public function set_registry(\SimplePie\Registry $registry)/* : void */ argument 99 $this->registry = $registry; 109 $sniffer = $this->registry->create(Content\Type\Sniffer::class, [$this->file]); 146 $sniffer = $this->registry->create(Content\Type\Sniffer::class, [$file]); 173 …$base = $this->registry->call(Misc::class, 'absolutize_url', [trim($element->getAttribute('href'))… 211 …$rel = array_unique($this->registry->call(Misc::class, 'space_separated_tokens', [strtolower($link… 215 …$href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $… 217 …$href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $… 223 …et', $rel) && $link->hasAttribute('type') && in_array(strtolower($this->registry->call(Misc::class… [all …]
|
D | SimplePie.php | 702 $this->registry = new \SimplePie\Registry(); 785 … $this->multifeed_url[] = $this->registry->call(Misc::class, 'fix_protocol', [$value, 1]); 788 $this->feed_url = $this->registry->call(Misc::class, 'fix_protocol', [$url, 1]); 1029 return $this->registry; 1045 return $this->registry->register(Cache::class, $class, true); 1061 return $this->registry->register(Locator::class, $class, true); 1077 return $this->registry->register(Parser::class, $class, true); 1093 return $this->registry->register(File::class, $class, true); 1109 return $this->registry->register(Sanitize::class, $class, true); 1125 return $this->registry->register(Item::class, $class, true); [all …]
|
D | Source.php | 61 protected $registry; variable in SimplePie\\Source 69 public function set_registry(\SimplePie\Registry $registry)/* : void */ argument 71 $this->registry = $registry; 106 …return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_t… 108 …return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_t… 151 $categories[] = $this->registry->create(Category::class, [$term, $scheme, $label]); 162 $categories[] = $this->registry->create(Category::class, [$term, $scheme, null]); 165 …$categories[] = $this->registry->create(Category::class, [$this->sanitize($category['data'], \Simp… 168 …$categories[] = $this->registry->create(Category::class, [$this->sanitize($category['data'], \Simp… 205 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]); [all …]
|
D | Item.php | 81 protected $registry; variable in SimplePie\\Item 106 public function set_registry(\SimplePie\Registry $registry)/* : void */ argument 108 $this->registry = $registry; 257 …$this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'ato… 259 …$this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'ato… 295 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct… 298 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct… 345 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_content_c… 348 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct… 429 … $categories[] = $this->registry->create(Category::class, [$term, $scheme, $label, $type]); [all …]
|
D | Sanitize.php | 90 public $registry; variable in SimplePie\\Sanitize 130 public function set_registry(\SimplePie\Registry $registry)/* : void */ argument 132 $this->registry = $registry; 427 …$file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FO… 458 $absolute = $this->registry->call(Misc::class, 'absolutize_url', [$data, $base]); 469 …$data = $this->registry->call(Misc::class, 'change_encoding', [$data, 'UTF-8', $this->output_encod… 507 …$value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute),… 643 $cache = $this->registry->call(Cache::class, 'get_handler', [
|
D | Parser.php | 75 protected $registry; variable in SimplePie\\Parser 77 public function set_registry(\SimplePie\Registry $registry)/* : void */ argument 79 $this->registry = $registry; 128 … $declaration = $this->registry->create(DeclarationParser::class, [substr($data, 5, $pos - 5)]); 276 …$base = $this->registry->call(Misc::class, 'absolutize_url', [$attribs[\SimplePie\SimplePie::NAMES…
|
D | Misc.php | 1960 public static function xml_encoding($data, $registry) argument 1985 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 1995 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 2005 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'U… 2015 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'U… 2025 $parser = $registry->create(Parser::class, [substr($data, 5, $pos - 5)]);
|
/dokuwiki/inc/Feed/ |
D | FeedParser.php | 20 $this->registry->register(File::class, FeedParserFile::class); 21 $this->registry->register('Item', FeedParserItem::class);
|
/dokuwiki/vendor/simplepie/simplepie/ |
D | CHANGELOG.md | 218 * Update the registry if the Sanitize class has been changed. [#532](https://github.com/simplepie/s…
|