Home
last modified time | relevance | path

Searched refs:callbacks (Results 1 – 5 of 5) sorted by path

/dokuwiki/inc/
H A Ddeprecated.php613 public function __construct($callbacks = false, $data = false, $wait = false)
616 parent::__construct($callbacks, $data, $wait);
611 __construct($callbacks = false, $data = false, $wait = false) global() argument
/dokuwiki/lib/scripts/
H A Dlocktimer.js17 callbacks: [], property in dw_locktimer
64 * is updated. This method can be used to add further callbacks to be executed at that moment.
69 dw_locktimer.callbacks.push(callback);
123 dw_locktimer.callbacks.forEach(
151 dw_locktimer.callbacks.push(dw_locktimer.refreshed);
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DClassServer.php35 $this->callbacks[$rpcName] = $functionName;
45 // Add to our callbacks array
53 $this->callbacks[$prefix . $this->_delim . $method] = [$prefix, $targetMethod];
62 $method = $this->callbacks[$methodname];
H A DIntrospectionServer.php56 $this->callbacks[$method] = $callback;
73 $method = $this->callbacks[$methodname];
H A DServer.php13 protected $callbacks = []; variable in IXR\\Server\\Server
17 public function __construct($callbacks = false, $data = false, $wait = false) argument
20 if ($callbacks) {
21 $this->callbacks = $callbacks;
79 $method = $this->callbacks[$methodname];
126 return in_array($method, array_keys($this->callbacks));
155 $this->callbacks['system.getCapabilities'] = 'this:getCapabilities';
156 $this->callbacks['system.listMethods'] = 'this:listMethods';
157 $this->callbacks['syste
[all...]