Home
last modified time | relevance | path

Searched refs:useragent (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php33 public $useragent; variable in SimplePie\\File
89 …int $timeout = 10, int $redirects = 5, ?array $headers = null, ?string $useragent = null, bool $fo… argument
102 $this->useragent = $useragent;
104 if ($useragent === null) {
105 $useragent = (string) ini_get('user_agent');
106 $this->useragent = $useragent;
134 curl_setopt($fp, CURLOPT_USERAGENT, $useragent);
174 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_…
212 $out .= "User-Agent: $useragent\r\n";
248 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_…
[all …]
H A DLocator.php29 public $useragent = null; variable in SimplePie\\Locator
67 …public function __construct(File $file, int $timeout = 10, ?string $useragent = null, int $max_che… argument
70 $this->useragent = $useragent;
464 if ($this->useragent !== null) {
465 $options['useragent'] = $this->useragent;
H A DSanitize.php73 public $useragent = ''; variable in SimplePie\\Sanitize
202 …_file_data(string $file_class = File::class, int $timeout = 10, string $useragent = '', bool $forc… argument
209 if ($useragent) {
210 $this->useragent = $useragent;
820 'useragent' => $this->useragent,
H A DSimplePie.php418 public $useragent = ''; variable in SimplePie\\SimplePie
1033 if ($this->useragent !== Misc::get_default_useragent()) {
1034 $options[CURLOPT_USERAGENT] = $this->useragent;
1384 $this->useragent = (string) $ua;
2000 $this->useragent,
3453 'useragent' => $this->useragent,
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php17 $this->useragent = 'The Incutio XML-RPC PHP Library (multicall 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 DClientSSL.php58 $this->useragent = 'The Incutio XML-RPC PHP Library for SSL';
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md44 - `SimplePie\File::$useragent` is deprecated, pass the user agent in constructor instead