Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php121 $cmd = join(' ', $args);
124 exec($cmd, $output, $return);
127 throw new Exception('ImageMagick returned non-zero exit code for ' . $cmd);
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php124 // submit button name is of the form - fn[cmd][param(s)]
128 $cmd = key($fn);
129 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
131 $cmd = $fn;
135 if ($cmd != "search") {
140 switch ($cmd) {
171 switch ($cmd) {
372 * @param string $cmd 'add' or 'modify'
378 protected function htmlUserForm($cmd,
377 htmlUserForm($cmd, $user = '', $userdata = array(), $indent = 0) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php3203 * @param string $cmd
3209 public function write($cmd, $channel = null)
3227 $this->send_channel_packet($channel, $cmd);
3245 write($cmd) global() argument
/dokuwiki/bin/
H A Dgittool.php171 * @param $cmd
174 public function cmdGit($cmd, $arg) argument
178 $shell = array_merge(['git', $cmd], $arg);
/dokuwiki/conf/
H A Dinterwiki.conf33 paypal https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=
/dokuwiki/lib/plugins/revert/
H A Dadmin.php12 protected $cmd;
11 protected $cmd; global() variable in admin_plugin_revert
/dokuwiki/lib/plugins/acl/
H A Dadmin.php107 if ($INPUT->has('cmd') && checkSecurityToken()) {
108 $cmd = $INPUT->extract('cmd')->str('cmd');
121 if ($cmd == 'save' && $scope && $this->who && $INPUT->has('acl')) {
125 } elseif ($cmd == 'del' && $scope && $this->who) {
128 } elseif ($cmd == 'update') {
423 echo '<button type="submit" name="cmd[save]">' . $lang['btn_save'] . '</button>';
425 echo '<button type="submit" name="cmd[save]">' . $lang['btn_update'] . '</button>';
426 echo '<button type="submit" name="cmd[de
[all...]
/dokuwiki/inc/
H A Dmedia.php1976 $cmd = $conf['im_convert'];
1977 $cmd .= ' -resize ' . $to_w . 'x' . $to_h . '!';
1979 $cmd .= ' -quality ' . $conf['jpg_quality'];
1981 $cmd .= " $from $to";
1983 @exec($cmd, $out, $retval);
2014 $cmd = $conf['im_convert'];
2015 $cmd .= ' -crop ' . $to_w . 'x' . $to_h . '+' . $ofs_x . '+' . $ofs_y;
2017 $cmd .= ' -quality ' . $conf['jpg_quality'];
2019 $cmd .= " $from $to";
2021 @exec($cmd,
[all...]
H A Dio.php727 * @param string $cmd
734 function io_exec($cmd, $input, &$output)
741 $ph = proc_open($cmd, $descspec, $pipes);
683 io_exec($cmd, $input, & $output) global() argument