Home
last modified time | relevance | path

Searched refs:methodname (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/inc/Remote/
H A DXmlRpcServer.php50 protected function call($methodname, $args)
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");
45 call($methodname, $args) global() argument
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DClassServer.php57 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 DIntrospectionServer.php61 public function call($methodname, $args) argument
69 if (!$this->hasMethod($methodname)) {
73 $method = $this->callbacks[$methodname];
74 $signature = $this->signatures[$methodname];
124 return parent::call($methodname, $argsbackup);
H A DServer.php74 protected function call($methodname, $args) argument
76 if (!$this->hasMethod($methodname)) {
77 return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.');
79 $method = $this->callbacks[$methodname];