/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/ |
H A D | StreamClient.php | 18 * @param mixed $requestBody 29 $requestBody, argument 38 if ($method === 'GET' && !empty($requestBody)) { 42 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) { 55 if (is_array($requestBody)) { 56 $requestBody = http_build_query($requestBody, '', '&'); 58 $extraHeaders['Content-length'] = 'Content-length: '.strlen($requestBody); 60 $context = $this->generateStreamContext($requestBody, $extraHeaders, $method);
|
H A D | CurlClient.php | 55 * @param mixed $requestBody 66 $requestBody, argument 75 if ($method === 'GET' && !empty($requestBody)) { 79 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) { 91 if ($requestBody && is_array($requestBody)) { 92 $requestBody = http_build_query($requestBody, '', '&'); 101 curl_setopt($ch, CURLOPT_POSTFIELDS, $requestBody);
|
H A D | ClientInterface.php | 18 * @param mixed $requestBody 28 $requestBody, argument
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/ |
H A D | StreamClient.php | 18 * @param mixed $requestBody 29 $requestBody, argument 38 if ($method === 'GET' && !empty($requestBody)) { 42 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) { 55 if (is_array($requestBody)) { 56 $requestBody = http_build_query($requestBody, '', '&'); 58 $extraHeaders['Content-length'] = 'Content-length: '.strlen($requestBody); 60 $context = $this->generateStreamContext($requestBody, $extraHeaders, $method);
|
H A D | CurlClient.php | 55 * @param mixed $requestBody 66 $requestBody, argument 75 if ($method === 'GET' && !empty($requestBody)) { 79 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) { 91 if ($requestBody && is_array($requestBody)) { 92 $requestBody = http_build_query($requestBody, '', '&'); 101 curl_setopt($ch, CURLOPT_POSTFIELDS, $requestBody);
|
H A D | ClientInterface.php | 18 * @param mixed $requestBody 28 $requestBody, argument
|
/plugin/evesso/classes/ |
H A D | oAuthHTTPClient.php | 21 * @param mixed $requestBody 31 $requestBody, argument 38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
|
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/ |
H A D | HTTPClient.php | 72 $this->requestBody = $this->defaultRequestBody; 99 $contentLength = strlen($this->requestBody); 113 $this->requestBody = $body; 164 $request .= $this->requestBody;
|
/plugin/authfacebook/lib/ |
H A D | FacebookClient.php | 170 $requestBody = $request->getMultipartBody(); 172 'Content-Type' => 'multipart/form-data; boundary=' . $requestBody->getBoundary(), 175 $requestBody = $request->getUrlEncodedBody(); 185 $requestBody->getBody(),
|
/plugin/botbouncer/lib/ |
H A D | mollom.php | 365 $requestBody = '<?xml version="1.0"?>' ."\n"; 366 $requestBody .= '<methodCall>' ."\n"; 367 $requestBody .= ' <methodName>mollom.'. $method .'</methodName>' ."\n"; 368 $requestBody .= ' <params>' ."\n"; 369 $requestBody .= ' <param>'."\n"; 370 $requestBody .= ' '. self::buildValue($parameters) ."\n"; 371 $requestBody .= ' </param>'."\n"; 372 $requestBody .= ' </params>' ."\n"; 373 $requestBody .= '</methodCall>' ."\n"; 394 @curl_setopt($curl, CURLOPT_POSTFIELDS, $requestBody);
|
/plugin/oauth/ |
H A D | HTTPClient.php | 17 $requestBody, 25 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method); 19 retrieveResponse(UriInterface $endpoint, $requestBody, array $extraHeaders = array(), $method = 'POST') global() argument
|
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/ |
H A D | SharingPlugin.php | 244 $requestBody = $request->getBodyAsString(); 253 $request->setBody($requestBody); 255 $message = $this->server->xml->parse($requestBody, $request->getUrl(), $documentType);
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
H A D | SharingPlugin.php | 255 $requestBody = $request->getBodyAsString(); 264 $request->setBody($requestBody); 266 $message = $this->server->xml->parse($requestBody, $request->getUrl(), $documentType);
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/ |
H A D | CorePlugin.php | 319 $requestBody = $request->getBodyAsString(); 320 if (strlen($requestBody)) { 322 $propFindXml = $this->server->xml->expect('{DAV:}propfind', $requestBody); 554 $requestBody = $request->getBodyAsString(); 557 if ($requestBody) { 568 $mkcol = $this->server->xml->expect('{DAV:}mkcol', $requestBody);
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/ |
H A D | CorePlugin.php | 319 $requestBody = $request->getBodyAsString(); 320 if (strlen($requestBody)) { 322 $propFindXml = $this->server->xml->expect('{DAV:}propfind', $requestBody); 554 $requestBody = $request->getBodyAsString(); 557 if ($requestBody) { 568 $mkcol = $this->server->xml->expect('{DAV:}mkcol', $requestBody);
|