Home
last modified time | relevance | path

Searched refs:args (Results 1 – 25 of 26) sorted by last modified time

12

/dokuwiki/inc/parser/
H A Dxhtml.php80 $args = func_get_args();
82 if (isset($args[1])) $data['target'] = $args[1];
83 if (isset($args[2])) $data['name'] = $args[2];
84 if (isset($args[3])) $data['hid'] = $args[3];
H A Dhandler.php51 * @param mixed $args arguments for this call
54 public function addCall($handler, $args, $pos)
56 $call = [$handler, $args, $pos];
104 public function _addCall($handler, $args, $pos)
107 $this->addCall($handler, $args, $pos);
114 * @param mixed $args arguments for this call
119 public function addPluginCall($plugin, $args, $state, $pos, $match)
121 $call = ['plugin', [$plugin, $args, $state, $match], $pos];
52 addCall($handler, $args, $pos) global() argument
97 _addCall($handler, $args, $pos) global() argument
111 addPluginCall($plugin, $args, $state, $pos, $match) global() argument
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php142 * @param array $args
145 protected function cmdAdd(bool $notify, array $args)
155 [$login, $mail, $name, $grps, $pass] = $args;
188 * @param array $args
191 protected function cmdDelete(array $args)
201 $users = explode(',', $args[0]);
218 * @param array $args
221 protected function cmdAddToGroup(array $args)
226 [$name, $newgrps] = $args; argument
256 * @param array $args
148 cmdAdd(bool $notify, array $args) global() argument
196 cmdDelete(array $args) global() argument
264 cmdRemoveFromGroup(array $args) global() argument
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php67 $args = func_get_args();
68 $method = array_shift($args);
69 $request = new Request($method, $args);
H A DClientMulticall.php22 $args = func_get_args();
23 $methodName = array_shift($args);
26 'params' => $args
H A DClientSSL.php130 $args = func_get_args();
131 $method = array_shift($args);
132 $request = new Request($method, $args);
/dokuwiki/inc/
H A Dinfoutils.php546 if (isset($call['args'])) {
547 foreach ($call['args'] as $arg) {
H A Ddeprecated.php643 public function __construct($method, $args)
646 parent::__construct($method, $args);
641 __construct($method, $args) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php2213 * @param string|PrivateKey|array[]|Agent|null ...$args
2217 public function login($username, ...$args)
2229 if (!count($args)) {
2233 return $this->sublogin($username, ...$args);
2240 * @param string|PrivateKey|array[]|Agent|null ...$args
2244 protected function sublogin($username, ...$args)
2250 if (empty($args)) {
2254 foreach ($args as $arg) {
2268 while (count($args)) {
2270 $newargs = $args;
[all...]
H A DSFTP.php1261 * @param string ...$args
1263 public function setListOrder(...$args)
1266 if (empty($args)) {
1269 $len = count($args) & 0x7FFFFFFE;
1271 $this->sortOptions[$args[$i]] = $args[$i + 1];
/dokuwiki/vendor/kissifrot/php-ixr/src/Request/
H A DRequest.php16 private $args; variable in IXR\\Request\\Request
19 public function __construct($method, $args) argument
22 $this->args = $args;
30 foreach ($this->args as $arg) {
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DClassServer.php57 public function call($methodname, $args) argument
65 if (count($args) == 1) {
67 $args = $args[0];
86 $result = $object->$method($args);
94 $result = $method($args);
H A DIntrospectionServer.php54 public function addCallback($method, $callback, $args, $help) argument
57 $this->signatures[$method] = $args;
61 public function call($methodname, $args) argument
64 if ($args && !is_array($args)) {
65 $args = [$args];
78 if (count($args) != count($signature)) {
84 $argsbackup = $args;
85 for ($i = 0, $j = count($args);
[all...]
H A DServer.php74 protected function call($methodname, $args) argument
82 if (is_array($args) && count($args) == 1) {
84 $args = $args[0];
93 return $this->$method($args);
96 return call_user_func($method, $args);
148 public function getCapabilities($args) argument
160 public function listMethods($args) argument
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php709 $args = func_get_args();
710 switch (count($args)) {
712 $this->set_cache_duration($args[2]);
715 $this->set_cache_location($args[1]);
718 $this->set_feed_url($args[0]);
3088 * @param array $args Arguments to the method
3091 public function __call($method, $args) argument
/dokuwiki/inc/Remote/
H A DApi.php21 * 'args' => array(
117 * @param array $args arguments to pass to the given method
121 public function call($method, $args = [])
123 if ($args === null) {
124 $args = [];
137 return $methods[$method]($args);
90 call($method, $args = array()) global() argument
126 callCustomCallPlugin($method, $args) global() argument
162 callPlugin($pluginName, $method, $args) global() argument
189 callCoreMethod($method, $args) global() argument
231 checkArgumentLength($methodMeta, $args) global() argument
H A DXmlRpcServer.php50 protected function call($methodname, $args)
53 $result = $this->remote->call($methodname, $args);
45 call($methodname, $args) global() argument
/dokuwiki/bin/
H A Ddwpage.php160 $args = $options->getArgs();
163 $wiki_id = array_shift($args);
164 $localfile = array_shift($args);
168 $localfile = array_shift($args);
169 $wiki_id = array_shift($args);
178 $wiki_id = array_shift($args);
183 $wiki_id = array_shift($args);
188 $wiki_id = array_shift($args);
189 $key = trim(array_shift($args));
H A Dwantedpages.php69 $args = $options->getArgs();
70 if ($args) {
71 $startdir = dirname(wikiFN($args[0] . ':xxx'));
H A Dgittool.php86 $args = $options->getArgs();
87 if (!$command) $command = array_shift($args);
94 $this->cmdClone($args);
97 $this->cmdInstall($args);
104 $this->cmdGit($command, $args);
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php12 protected $args = []; variable in splitbrain\\slika\\ImageMagickAdapter
23 $this->args[] = $this->options['imconvert'];
24 $this->args[] = $imagepath;
30 $this->args[] = '-auto-orient';
43 $this->args[] = '-rotate';
45 $this->args[] = '180';
47 $this->args[] = '90';
49 $this->args[] = '270';
54 $this->args[] = '-flop';
73 $this->args[]
[all...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt414 public static void main(String[] args) {
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php26 protected $args = array(); variable in splitbrain\\phpcli\\Options
54 'args' => array(),
60 $this->args = $this->readPHPArgv();
61 $this->bin = basename(array_shift($this->args));
121 $this->setup[$command]['args'][] = array(
145 'args' => array(),
193 $argc = count($this->args);
196 foreach ($this->setup[$this->command]['args'] as $arg) {
211 * The given $args array should NOT contain the executed file as first item anymore! The $args
[all...]

12