Home
last modified time | relevance | path

Searched refs:getBody (Results 1 – 25 of 146) sorted by relevance

123456

/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DPrepareBodyMiddleware.php34 if ($request->getBody()->getSize() === 0) {
42 if ($uri = $request->getBody()->getMetadata('uri')) {
53 $size = $request->getBody()->getSize();
98 $body = $request->getBody();
DMessageFormatter.php108 $result = $request->getBody()->__toString();
116 $body = $response->getBody();
123 $result = $response->getBody()->__toString();
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
DPrepareBodyMiddleware.php36 if ($request->getBody()->getSize() === 0) {
44 if ($uri = $request->getBody()->getMetadata('uri')) {
55 $size = $request->getBody()->getSize();
104 $body = $request->getBody();
DMessageFormatter.php105 $result = $request->getBody();
108 $result = $response ? $response->getBody() : 'NULL';
/plugin/matrixnotifierwas/vendor/psr/http-message/docs/
DPSR7-Usage.md80 …tand and is useful when repeatedly calling body methods. (You only call `getBody()` once). Using t…
83 $body = $response->getBody();
95 > This method is useful when only performing few operations as the `$request->getBody()` statement …
98 $response->getBody()->write('hello');
106 $body = $response->getBody();
115 $response->getBody()->write('Hello'); // writing directly
116 $body = $request->getBody(); // which is a `StreamInterface`
126 $body = $repsonse->getBody();
140 $body = $response->getBody();
153 $body = $response->getBody();
/plugin/combo/ComboStrap/
DHttpResponse.php171 …LogUtility::log2file("Bad Http Response: $this->status : {$this->getBody()}", LogUtility::LVL_MSG_…
269 function getBody(): string function in ComboStrap\\HttpResponse
324 return XmlDocument::createHtmlDocFromMarkup($this->getBody());
365 return Json::createFromString($this->getBody())->toArray();
421 ->executeHtmlPage($this->getBody(), $waitTimeInSecondToComplete)
434 return Json::createFromString($this->getBody());
/plugin/davcal/vendor/sabre/http/lib/
DMessage.php49 $body = $this->getBody();
70 $body = $this->getBody();
88 function getBody() { function in Sabre\\HTTP\\Message
DMessageDecoratorTrait.php62 function getBody() { function
64 return $this->inner->getBody();
/plugin/webdav/vendor/sabre/http/lib/
DMessage.php49 $body = $this->getBody();
70 $body = $this->getBody();
92 function getBody() { function in Sabre\\HTTP\\Message
DMessageDecoratorTrait.php62 function getBody() { function
64 return $this->inner->getBody();
/plugin/socialshareprivacy2/SSP/scripts/
Djquery.socialshareprivacy.mail.js23 function getBody (options, uri, settings) { function
36 'body' : getBody,
/plugin/ckgdoku/ckeditor/plugins/clipboard/dialogs/
Dpaste.js5 …unction(c){function k(a){var b=new CKEDITOR.dom.document(a.document),g=b.getBody(),d=b.getById("ck…
8 …:"",focus:function(){var a=this.getInputElement(),b=a.getFrameDocument().getBody();!b||b.isReadOnl…
10 ….removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.a…
12 b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus(),d;c&&c.remove();d=b.getHtml();…
/plugin/ckgedit/ckeditor/plugins/clipboard/dialogs/
Dpaste.js5 …unction(c){function k(a){var b=new CKEDITOR.dom.document(a.document),g=b.getBody(),d=b.getById("ck…
8 …:"",focus:function(){var a=this.getInputElement(),b=a.getFrameDocument().getBody();!b||b.isReadOnl…
10 ….removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.a…
11 …etDialog().getParentEditor(),b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus();…
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
DREST.php96 $response->getBody(),
125 $body = (string) $response->getBody();
151 return (string) $response->getBody();
/plugin/davcal/vendor/sabre/http/tests/HTTP/
DMessageTest.php28 $this->assertEquals($body, stream_get_contents($message->getBody()));
41 $this->assertEquals($body, $message->getBody());
148 $body = $message->getBody();
DMessageDecoratorTest.php24 $this->assertEquals('foo', $this->inner->getBody());
25 $this->assertEquals('foo', $this->outer->getBody());
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DMessage.php45 return "{$msg}\r\n\r\n" . $message->getBody();
60 $body = $message->getBody();
100 $body = $message->getBody();
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DMessage.php45 return "{$msg}\r\n\r\n".$message->getBody();
58 $body = $message->getBody();
99 $body = $message->getBody();
/plugin/noticeboard/noticeboard/classes/
DICal.php57 $out .= $this->getBody();
76 private function getBody(){ function in helper_plugin_noticeboard_ICal
/plugin/noticeboard/classes/
DICal.php57 $out .= $this->getBody();
76 private function getBody(){ function in helper_plugin_noticeboard_ICal
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
DGuzzle5HttpHandler.php114 'body' => $request->getBody(),
124 $response->getBody(),
/plugin/authfacebook/lib/
DFacebookClient.php185 $requestBody->getBody(),
222 $rawResponse->getBody(),
/plugin/authfacebook/lib/Http/
DRequestBodyInterface.php38 public function getBody(); function
DRequestBodyUrlEncoded.php51 public function getBody() function in Facebook\\Http\\RequestBodyUrlEncoded
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
DCurlFactory.php112 $body = $easy->response->getBody();
235 $body = $easy->request->getBody();
271 $conf[CURLOPT_POSTFIELDS] = (string) $request->getBody();
281 $body = $request->getBody();
515 $body = $easy->request->getBody();

123456