Searched refs:methodname (Results 1 – 5 of 5) sorted by relevance
| /dokuwiki/inc/Remote/ |
| H A D | XmlRpcServer.php | 50 protected function call($methodname, $args) argument 53 $result = $this->remote->call($methodname, $args); 58 return new Error(-32603, "server error. not authorized to call method $methodname"); 61 return new Error(-32604, "server error. forbidden to call the method $methodname");
|
| H A D | JsonRpcServer.php | 168 * @param string $methodname 173 public function call($methodname, $args) argument 176 return $this->remote->call($methodname, $args); 180 … throw new RemoteException("server error. not authorized to call method $methodname", -32603); 183 … throw new RemoteException("server error. forbidden to call the method $methodname", -32604);
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Server/ |
| H A D | ClassServer.php | 57 public function call($methodname, $args) argument 59 if (!$this->hasMethod($methodname)) { 60 … return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.'); 62 $method = $this->callbacks[$methodname];
|
| H A D | IntrospectionServer.php | 69 if (!$this->hasMethod($methodname)) { 73 $method = $this->callbacks[$methodname]; 74 $signature = $this->signatures[$methodname]; 124 return parent::call($methodname, $argsbackup);
|
| H A D | Server.php | 80 protected function call($methodname, $args) argument 82 if (!$this->hasMethod($methodname)) { 83 … return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.'); 85 $method = $this->callbacks[$methodname];
|