Home
last modified time | relevance | path

Searched refs:cmd (Results 126 – 150 of 228) sorted by relevance

12345678910

/plugin/freechat/phpfreechat/src/proxies/
H A Dauth.class.php53 $cmd =& pfcCommand::Factory("error");
54 $cmd->run($xml_reponse, $cmdp);
H A Dchecknickchange.class.php98 $cmd =& pfcCommand::Factory("nick");
99 return $cmd->run($xml_reponse, $cmdp);
/plugin/simplechat/
H A Dajax.php12 $cmd = $_GET['cmd']; variable
15 switch( $cmd ){
/plugin/freechat/phpfreechat/src/commands/
H A Dprivmsg.class.php27 $cmd =& pfcCommand::Factory("error");
28 $cmd->run($xml_reponse, $cmdp);
/plugin/latex/
H A Dadmin.php197 $cmd = $path." --version 2>&1";
198 echo htmlspecialchars($cmd);
201 exec($cmd,$execout,$statuscode);
/plugin/latex-was/
H A Dadmin.php197 $cmd = $path." --version 2>&1";
198 echo htmlspecialchars($cmd);
201 exec($cmd,$execout,$statuscode);
/plugin/dwcommits/
H A Dadmin.php65 if (!isset($_REQUEST['cmd'])) return; // first time - nothing to do
80 if (!is_array($_REQUEST['cmd'])) return;
83 switch (key($_REQUEST['cmd'])) {
98 $this->helper->update_commits(key($_REQUEST['cmd']));
156 $this->current_page = $dwc_Divs[key($_REQUEST['cmd'])];
159 …$this->submitted = $this->current_page . '<br />' . key($_REQUEST['cmd']) . '<pre>' . print_r($_R…
/plugin/abc2/abc-libraries/abc2svg/
H A Dmdnn-1.js60 of()},set_fmt:function(of,cmd,param){if(cmd=="mdnn") argument
63 of(cmd,param)},set_pitch:function(of,last_s){of(last_s)
H A Dclair-1.js123 of()},set_fmt:function(of,cmd,param){if(cmd=="clairnote"){this.set_v_param("clair",true);this.set_v_param("stafflines","|-|---|-|") argument
126 of(cmd,param)},set_pitch:function(of,last_s){if(last_s){of(last_s)
/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/dokutexit/
H A Dtexitrender.php118 $cmd = new texitConfig('command');
124 $cmd_doc .= $cmd->read();
125 if ($cmd->is_error())
H A Dlatex.php1752 function putcmd($cmd, $mode=1) { argument
1753 return $this->put('\\' . $cmd, $mode);
1755 function putcmd_protect($cmd, $mode=1) { argument
1758 function putcmdnl($cmd, $mode=1) { argument
1759 $this->putcmd($cmd . DOKU_LF, $mode);
1761 function nlputcmdnl($cmd) { argument
1763 $this->putcmd($cmd . DOKU_LF);
1765 function nlputcmd($cmd) { argument
1767 $this->putcmd($cmd);
1775 function putmathcmd($cmd) { argument
[all …]
/plugin/google_adsense2/
H A Dadmin.php65 if (!isset($_REQUEST['cmd'])) return; // first time - nothing to do
67 if (!is_array($_REQUEST['cmd'])) return;
/plugin/listeabo/
H A Dadmin.php11 var $cmd; variable in admin_plugin_listeabo
/plugin/backup/
H A Dadmin.php291 $cmd = [$this, 'backup' . ucfirst($pref)];
292 if (is_callable($cmd)) {
293 $cmd($tar, $logger);
295 $logger('Can\'t call ' . $cmd[1], -1);
/plugin/combo/
H A Dcli.php180 $cmd = $options->getCmd();
183 switch ($cmd) {
231 if ($cmd !== "") {
232 fwrite(STDERR, "Combo: Command unknown (" . $cmd . ")");
/plugin/pageseditees/
H A Dadmin.php11 var $cmd; variable in admin_plugin_pagesEditees
/plugin/fedauth/
H A Dadmin.php28 var $cmd = ''; variable in admin_plugin_fedauth
/plugin/shell/
H A DP0wnyShell.js137 this.makeRequest("?feature=shell", {cmd: command, cwd: this.cwd}, function (response) {
352 insertToHistory(cmd) { argument
353 this.commandHistory.push(cmd);
/plugin/nsexport/packer/ziphtml/
H A Dzip.php204 $cmd = "$zip -q -$comp -r - .";
205 system($cmd);
/plugin/userimportextended/
H A Dadmin.php48 $cmd = $INPUT->param('cmd');
49 if (!empty($cmd)) {
50 switch(key($cmd)) {
/plugin/dev/
H A Dcli.php246 $cmd = 'git ' . join(' ', $args);
250 $this->info($cmd);
251 $last = exec($cmd, $output, $result);
467 $cmd = join(' ', array_map('escapeshellarg', $args));
468 $this->info("Running $cmd");
471 passthru($cmd, $result);
495 $cmd = join(' ', array_map('escapeshellarg', $args));
496 $this->info("Running $cmd");
499 passthru($cmd, $result);
525 $cmd
[all...]
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php1628 private function prepareWindowsCommandLine($cmd, array &$env) argument
1633 $cmd = preg_replace_callback(
1663 $cmd
1666 $cmd = 'cmd /V:ON /E:ON /D /C ('.str_replace("\n", ' ', $cmd).')';
1668 $cmd .= ' '.$offset.'>"'.$filename.'"';
1671 return $cmd;
/plugin/combo/vendor/symfony/process/
H A DProcess.php172 * Command-lines are parsed by the shell of your OS (/bin/sh on Unix-like, cmd.exe on Windows.)
1542 private function prepareWindowsCommandLine(string $cmd, array &$env): string argument
1547 $cmd = preg_replace_callback(
1577 $cmd
1580 $cmd = 'cmd /V:ON /E:ON /D /C ('.str_replace("\n", ' ', $cmd).')';
1582 $cmd .= ' '.$offset.'>"'.$filename.'"';
1585 return $cmd;
/plugin/dokukiwix/
H A Dadmin.php11 var $cmd; variable in admin_plugin_dokukiwix

12345678910