| /dokuwiki/vendor/simplepie/simplepie/src/HTTP/ |
| H A D | FileClient.php | 24 private $registry; variable in SimplePie\\HTTP\\FileClient 32 public function __construct(Registry $registry, array $options = []) argument 34 $this->registry = $registry; 58 $file = $this->registry->create(File::class, [
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Locator.php | 57 protected $registry; variable in SimplePie\\Locator 109 public function set_registry(\SimplePie\Registry $registry) argument 111 $this->registry = $registry; 121 assert($this->registry !== null); 128 $sniffer = $this->registry->create(Content\Type\Sniffer::class, [$this->file]); 167 assert($this->registry !== null); 170 $sniffer = $this->registry->create(Content\Type\Sniffer::class, [$file]); 192 assert($this->registry !== null); 202 …$base = $this->registry->call(Misc::class, 'absolutize_url', [trim($element->getAttribute('href'))… 238 assert($this->registry !== null); [all …]
|
| H A D | RegistryAware.php | 22 public function set_registry(Registry $registry); argument
|
| H A D | Source.php | 24 protected $registry; variable in SimplePie\\Source 38 public function set_registry(\SimplePie\Registry $registry) argument 40 $this->registry = $registry; 99 …return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_t… 101 …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… 213 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]); [all …]
|
| H A D | SimplePie.php | 559 public $registry; variable in SimplePie\\SimplePie 683 $this->registry = new Registry(); 771 … $this->multifeed_url[] = $this->registry->call(Misc::class, 'fix_protocol', [$value, 1]); 774 $this->feed_url = $this->registry->call(Misc::class, 'fix_protocol', [$url, 1]); 1105 return $this->registry; 1121 return $this->registry->register(Cache::class, $class, true); 1137 return $this->registry->register(Locator::class, $class, true); 1153 return $this->registry->register(Parser::class, $class, true); 1169 return $this->registry->register(File::class, $class, true); 1185 return $this->registry->register(Sanitize::class, $class, true); [all …]
|
| H A D | Item.php | 41 protected $registry; variable in SimplePie\\Item 72 public function set_registry(\SimplePie\Registry $registry) argument 74 $this->registry = $registry; 242 …$this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'ato… 244 …$this->data['title'] = $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'ato… 280 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct… 283 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct… 330 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_content_c… 333 …($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct… 414 … $categories[] = $this->registry->create(Category::class, [$term, $scheme, $label, $type]); [all …]
|
| H A D | Sanitize.php | 85 public $registry; variable in SimplePie\\Sanitize 141 public function set_registry(\SimplePie\Registry $registry) argument 143 $this->registry = $registry; 551 $absolute = $this->registry->call(Misc::class, 'absolutize_url', [$data, $base]); 564 …$data = $this->registry->call(Misc::class, 'change_encoding', [$data, 'UTF-8', $this->output_encod… 610 …$value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute),… 797 $cache = $this->registry->call(Cache::class, 'get_handler', [ 816 $this->registry,
|
| H A D | Misc.php | 2005 public static function xml_encoding(string $data, \SimplePie\Registry $registry) argument 2030 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 2040 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 2050 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'U… 2060 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'U… 2070 $parser = $registry->create(Parser::class, [substr($data, 5, $pos - 5)]);
|
| H A D | Parser.php | 52 protected $registry; variable in SimplePie\\Parser 57 public function set_registry(\SimplePie\Registry $registry) argument 59 $this->registry = $registry; 112 … $declaration = $this->registry->create(DeclarationParser::class, [substr($data, 5, $pos - 5)]); 291 …$base = $this->registry->call(Misc::class, 'absolutize_url', [$attribs[\SimplePie\SimplePie::NAMES…
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedParser.php | 20 $this->registry->register(File::class, FeedParserFile::class); 21 $this->registry->register('Item', FeedParserItem::class);
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 270 * Update the registry if the Sanitize class has been changed. [#532](https://github.com/simplepie/s…
|