Home
last modified time | relevance | path

Searched refs:sendResponse (Results 1 – 20 of 20) sorted by last modified time

/plugin/batchedit/
H A Dserver.php42 $this->sendResponse(array('error' => 'server_error', 'message' => $error->getMessage()));
89 $this->sendResponse(array('operation' => $this->getProgressLabel($operation), 'progress' => $progress));
110 private function sendResponse($data) { function in BatcheditServer
/plugin/tagfilter/
H A Daction.php97 $this->sendResponse(sprintf($Htagfilter->getLang('missing_plugin'), 'tag'));
103 $this->sendResponse(sprintf($Htagfilter->getLang('missing_plugin'), 'pagelist'));
154 $this->sendResponse('<i>' . $lang['nothingfound'] . '</i>');
188 $this->sendResponse($text);
206 private function sendResponse($text) function in action_plugin_tagfilter
/plugin/davcal/vendor/sabre/http/
H A DCHANGELOG.md165 * Changed: Response::send() is now Sapi::sendResponse($response).
H A DREADME.md115 HTTP\Sapi::sendResponse($response);
320 Sapi::sendResponse($response);
/plugin/davcal/vendor/sabre/http/examples/
H A Dbasicauth.php55 Sapi::sendResponse($response);
H A Dreverseproxy.php50 Sapi::sendResponse($response);
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php314 $this->sapi->sendResponse($this->httpResponse);
441 …function invokeMethod(RequestInterface $request, ResponseInterface $response, $sendResponse = true… argument
455 $this->sapi->sendResponse($response);
469 if ($sendResponse) {
470 $this->sapi->sendResponse($response);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/HTTP/
H A DSapiMock.php23 static function sendResponse(ResponseInterface $response) { function in Sabre\\HTTP\\SapiMock
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DSapiTest.php102 Sapi::sendResponse($response);
133 Sapi::sendResponse($response);
158 Sapi::sendResponse($response);
/plugin/davcal/vendor/sabre/http/lib/
H A DSapi.php56 static function sendResponse(ResponseInterface $response) { function in Sabre\\HTTP\\Sapi
/plugin/diagramsnet/lib/js/diagramly/
H A DEditorUi.js14228 var sendResponse = mxUtils.bind(this, function(resp, error)
14267 sendResponse(null, 'Invalid Call: ' + funtionName + ' is not allowed.');
14286 sendResponse(Array.prototype.slice.apply(arguments));
14292 sendResponse(null, err || 'Unkown Error');
14301 sendResponse([resp]);
14306 sendResponse(null, 'Invalid Call: ' + funtionName + ' is not found.');
14311 sendResponse(null, 'Invalid Call: An error occurred, ' + e.message);
/plugin/refnotes/
H A Daction.php409 private function sendResponse($contentType, $data) {
427 $this->sendResponse('application/x-suggestions+json', json_encode($config));
452 $this->sendResponse('text/plain', $saved ? 'saved' : 'failed');
380 private function sendResponse($contentType, $data) { global() function in refnotes_before_ajax_call_unknown
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php320 $this->sapi->sendResponse($this->httpResponse);
458 * @param bool $sendResponse Whether to send the HTTP response to the DAV client.
461 …function invokeMethod(RequestInterface $request, ResponseInterface $response, $sendResponse = true… argument
475 $this->sapi->sendResponse($response);
497 if ($sendResponse) {
498 $this->sapi->sendResponse($response);
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md198 * Changed: Response::send() is now Sapi::sendResponse($response).
H A DREADME.md115 HTTP\Sapi::sendResponse($response);
320 Sapi::sendResponse($response);
/plugin/webdav/vendor/sabre/http/lib/
H A DSapi.php56 static function sendResponse(ResponseInterface $response) { function in Sabre\\HTTP\\Sapi
/plugin/issuelinks/
H A DWebhook.php40 $util->sendResponse(400, 'unknown webhook');
47 $util->sendResponse($validationResult->code, $validationResult->body);
52 $util->sendResponse(500, $e->getMessage());
56 $util->sendResponse($result->code, $result->body);
/plugin/issuelinks/action/
H A Dajax.php57 $this->util->sendResponse(401, 'Not logged in!');
63 $this->util->sendResponse(403, 'Must be Admin');
81 $this->util->sendResponse($response['status'], $response['data']);
102 $this->util->sendResponse(401, 'Not logged in!');
108 $this->util->sendResponse(403, 'Must be Admin');
117 $this->util->sendResponse($e->getCode(), $e->getMessage());
119 $this->util->sendResponse(200, $html);
187 $this->util->sendResponse(403, 'Must be Admin');
202 $this->util->sendResponse(202, 'Importing issues...');
232 $this->util->sendResponse(401, 'Not logged in!');
[all …]
/plugin/issuelinks/helper/
H A Dutil.php85 public function sendResponse($code, $msg) function in helper_plugin_issuelinks_util
/plugin/farmsync/action/
H A Dajax.php48 $this->sendResponse(403, "Security-Token invalid!");
73 $this->sendResponse(200, $form->toHTML());
89 $this->sendResponse(200, $result);
110 $this->sendResponse(200, "");
118 $this->sendResponse(200, "");
122 $this->sendResponse(400, "malformed request");
129 private function sendResponse($code, $msg) { function in action_plugin_farmsync_ajax