Home
last modified time | relevance | path

Searched refs:useragent (Results 1 – 8 of 8) sorted by last modified time

/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php20 protected $useragent; variable in IXR\\Client\\Client
60 $this->useragent = 'The Incutio XML-RPC PHP Library';
78 $this->headers['User-Agent'] = $this->useragent;
H A DClientMulticall.php17 $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)';
H A DClientSSL.php58 $this->useragent = 'The Incutio XML-RPC PHP Library for SSL';
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php62 public $useragent; variable in SimplePie\\File
72 public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = []) argument
81 $this->useragent = $useragent;
83 if ($useragent === null) {
84 $useragent = ini_get('user_agent');
85 $this->useragent = $useragent;
107 curl_setopt($fp, CURLOPT_USERAGENT, $useragent);
138 $this->__construct($location, $timeout, $redirects, $headers, $useragent,
[all...]
H A DSanitize.php88 public $useragent = ''; variable in SimplePie\\Sanitize
169 public function pass_file_data($file_class = 'SimplePie\File', $timeout = 10, $useragent = '', $force_fsockopen = false) argument
175 if ($useragent) {
176 $this->useragent = (string) $useragent;
428 $file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']], $this->useragent, $this->force_fsockopen]);
H A DSimplePie.php445 public $useragent = ''; variable in SimplePie\\SimplePie
961 if ($this->useragent !== \SimplePie\Misc::get_default_useragent()) {
962 $options[CURLOPT_USERAGENT] = $this->useragent;
1301 $this->useragent = (string) $ua;
1554 $this->sanitize->pass_file_data($this->registry->get_class(File::class), $this->timeout, $this->useragent, $this->force_fsockopen, $this->curl_options);
1777 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
1819 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
1832 $locate = $this->registry->create(Locator::class, [&$file, $this->timeout, $this->useragent, $this->max_checked_feeds, $this->force_fsockopen, $this->curl_options]);
H A DLocator.php58 public $useragent; variable in SimplePie\\Locator
74 public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = []) argument
77 $this->useragent = $useragent;
229 $feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
/dokuwiki/inc/
H A DFeedParserFile.php29 __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = array()) global() argument