Home
last modified time | relevance | path

Searched refs:sendRequest (Results 1 – 5 of 5) sorted by last modified time

/dokuwiki/lib/plugins/popularity/
H A Dhelper.php68 $status = $httpClient->sendRequest($this->submitUrl, ['data' => $data], 'POST');
/dokuwiki/inc/
H A Dinfoutils.php347 $http->sendRequest('https://www.dokuwiki.org', '', 'HEAD');
H A DFeedParserFile.php30 $this->success = $this->http->sendRequest($url);
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php62 public function sendRequest($url, $data = '', $method = 'GET') function in dokuwiki\\HTTP\\DokuHTTPClient
77 return parent::sendRequest($url, $data, $method);
H A DHTTPClient.php92 if (!$this->sendRequest($url)) return false;
136 if (!$this->sendRequest($url, $data, 'POST')) return false;
158 public function sendRequest($url, $data = '', $method = 'GET')
379 return $this->sendRequest($this->resp_headers['location'], $unencodedData, $method);
382 return $this->sendRequest($this->resp_headers['location'], [], 'GET');
164 public function sendRequest($url,$data='',$method='GET'){ global() function in dokuwiki\\HTTP\\HTTPClient