Home
last modified time | relevance | path

Searched refs:cmd (Results 76 – 100 of 228) sorted by path

12345678910

/plugin/epub/scripts/
H A Depub_utils.php460 $cmd = 'zip -Xr9Dq my-book.epub *';
461 exec($cmd,$ar, $ret);
489 $cmd = "RMDIR /s /q $meta";
492 $cmd ="rm -f -r $meta";
495 system($cmd,$retval);
500 echo "$cmd\n";
/plugin/farm/
H A Dadmin.php39 var $cmd = ''; variable in admin_plugin_farm
216 function wl($cmd, $opt = array()) { argument
252 $this->cmd = 'overview';
256 $this->cmd = key($_REQUEST['farm_cmd']);
257 $t = $_REQUEST['farm_cmd'][$this->cmd];
276 }else $this->cmd = $_REQUEST['farm_cmd'];
317 if(!isset($commands[$this->cmd])) $this->cmd = 'overview';
320 $file = DOKU_FARM_PLUGIN.$commands[$this->cmd].'.class.php';
323 $class = 'dokuwiki_farm_'.$commands[$this->cmd];
350 if($this->cmd != 'farminstall') {
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm51 <cfexecute name="cmd.exe" arguments='/c type "#tempfile_in#" | "#aspell_dir#\aspell.exe" #aspell_op…
H A Dspellchecker.php105 $cmd = "$aspell_prog $aspell_opts < $tempfile 2>&1";
106 if( $aspellret = shell_exec( $cmd )) {
137 $aspell_err = "Error executing `$cmd`\\n$aspell_err";
141 error_handler( "System error: Aspell program execution failed (`$cmd`)" );
H A Dspellchecker.pl74 my $cmd = "$aspell_cmd $aspell_opts < $tmpfilename 2>&1";
75 open ASPELL, "$cmd |" or handleError( "Could not execute `$cmd`\\n$!" ) and return;
100 close ASPELL or handleError( "Error executing `$cmd`\\n$unhandledText" ) and return;
/plugin/fedauth/
H A Daction.php32 var $cmd = ''; variable in action_plugin_fedauth
213 $this->cmd = key($fa);
214 $this->provid = is_array($fa[$this->cmd]) ? key($fa[$this->cmd]) : null;
216 $this->cmd = $fa;
223 if (in_array($this->cmd, $this->commands)) {
227 $this->cmd = $defaultcmd;
229 } else if ($this->cmd == 'select') {
230 $this->cmd = 'login';
239 if ($this->cmd != 'manage' && $this->cmd != 'signedin') {
240 if (($this->cmd != 'login' || $this->provid != '') && !checkSecurityToken()) {
[all …]
H A Dadmin.php28 var $cmd = ''; variable in admin_plugin_fedauth
H A Dcommon.php72 * @param string $cmd command to handle
76 function &load_handler_class($plugin, $cmd, $type, $provid='', $base='base') { argument
77 $class = "fa_" . $cmd;
91 return new $class($plugin, $cmd, $provid);
/plugin/fedauth/classes/adm/
H A Dfa_manage.adm.class.php27 * @param string $cmd name of the command to handle
30 function __construct(&$manager, $cmd, $provid='') { argument
31 parent::__construct(&$manager, $cmd, $provid);
85 $method = 'process_' . $this->cmd;
99 $method = 'handle_ajax_' . $this->cmd;
202 …$details = ($this->cmd == 'details' && $this->provid == $id) ? $this->_html_details($id, true) : '…
233 function _json_buttoninfo($cmd) { argument
235 $cmd, $this->provid, $this->lang['btn_'.$cmd], $this->lang['btn_'.$cmd]);
H A Dfa_movedn.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_moveup.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_remove.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_restore.adm.class.php25 * @param string $cmd name of the command to handle
28 function __construct(&$manager, $cmd, $provid='') { argument
29 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_toggle.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_uselarge.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_usesmall.adm.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
/plugin/fedauth/classes/
H A Dfa_base.class.php31 var $cmd = ''; variable in fa_base
47 * @param string $cmd name of the command to handle
50 function __construct(&$manager, $cmd, $provid='') { argument
53 $this->cmd = $cmd;
63 $method = 'process_' . $this->cmd;
68 …return array('msg' => $this->manager->getLang('unknowncmd').' <b>'.$this->cmd.'</b>', 'code' => -1…
77 $method = 'handle_ajax_' . $this->cmd;
88 $method = 'html_' . $this->cmd;
/plugin/fedauth/classes/usr/
H A Dfa_login.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
155 $btn = $this->cmd;
162 $cmd = 'select';
166 $cmd = 'signin';
169 … $out .= '<a href="'.wl($ID, array('do'=> $act, 'sectok' => $sectok)).'&fa['.$cmd.']['.$id.']">'
H A Dfa_logout.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_manage.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_register.usr.class.php22 * @param string $cmd name of the command to handle
25 function __construct(&$manager, $cmd, $provid='') { argument
26 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_remove.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_signedin.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
H A Dfa_signin.usr.class.php21 * @param string $cmd name of the command to handle
24 function __construct(&$manager, $cmd, $provid='') { argument
25 parent::__construct(&$manager, $cmd, $provid);
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcclient.js183 if (cmd == "who" || cmd == "who2")
191 if (cmd == "whois" || cmd == "whois2")
197 if (cmd == "getnewmsg" || cmd == "join")
206 if (cmd != "update")
243 else if (cmd == "join" || cmd == "join2")
286 else if (cmd == "privmsg" || cmd == "privmsg2")
323 cmd = '';
434 else if (cmd == "whois" || cmd == "whois2")
464 else if (cmd == "who" || cmd == "who2")
486 if (cmd == "who")
[all …]

12345678910