Home
last modified time | relevance | path

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

12345678910

/plugin/freechat/phpfreechat/src/proxies/
H A Dchecknickchange.class.php98 $cmd =& pfcCommand::Factory("nick");
99 return $cmd->run($xml_reponse, $cmdp);
H A Dchecktimeout.class.php66 $cmd =& pfcCommand::Factory("notice");
67 $cmd->run($xml_reponse, $cmdp);
H A Dnoflood.class.php84 $cmd =& pfcCommand::Factory("leave");
85 $cmd->run($xml_reponse, $cmdp);
/plugin/freesync/
H A Dadmin.php54 $cmd = key($fn);
55 $param = is_array($fn[$cmd]) ? $fn[$cmd] : null;
57 $cmd = $fn;
63 switch($cmd) {
/plugin/geourl/
H A Dadmin.php77 if (!isset($_REQUEST['cmd'])) return; // first time - nothing to do
79 if (!is_array($_REQUEST['cmd'])) return;
/plugin/git/lib/
H A DGit.php290 $cmd = 'show '.$branch.':'.$filename;
293 return $this->run($cmd);
388 $cmd = "gc";
389 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
392 $cmd = "prune";
393 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
396 $cmd = "add . -A";
400 $cmd = "commit -a -m \"".$message."\"";
440 $cmd = "clone -q $source \"".$this->repo_path."\"";
639 $cmd = 'push';
[all …]
/plugin/git/syntax/
H A Dremotestatus.php135 … $renderer->doc .= ' <input type="submit" name="cmd[ignore]" value="Ignore this commit" />';
136 $renderer->doc .= ' <input type="submit" name="cmd[merge]" value="Merge All" />';
/plugin/glossary/syntax/
H A Ddiv.php45 $cmd = "";
65 $cmd = "printSample";
67 $cmd = "printList";
69 $cmd = "printPoll";
72 $cmd = "printProposal";
74 $cmd = "adminProposal";
76 $cmd = "adminDefinition";
78 $cmd = "adminGlossaries";
86 $glossary->$cmd ($arg);
/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/groupadmin/
H A Dadmin.php78 $cmd = key($fn);
79 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
81 $cmd = $fn;
/plugin/groupmanager/
H A Dsyntax.php325 $cmd = key($fn);
326 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
328 $cmd = $fn;
332 if ($cmd != "search") {
340 switch ($cmd) {
370 switch ($cmd) {
605 function _htmlUserForm(&$renderer, $cmd, $user = '', $userdata = array(), $indent = 0) argument
629 …$this->_htmlInputField($renderer, $cmd . "_userid", "userid", $this->lang["user_id"], $user, $this…
633 …$renderer->doc .= "<input type='hidden' id='" . $cmd . "_usergroups' name='usergroups' value='" . …
641 …d><label for=\"" . $cmd . "_usernotify\" >" . $this->lang["user_notify"] . ": </label></td><td><in…
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dfilter.output.ps2pdf.class.php3 function safe_exec($cmd, &$output) { argument
4 exec($cmd, $output, $result);
10 $message .= "Error executing '{$cmd}'<br/>\n";
11 error_log("Error executing '{$cmd}'.");
20 $_cmd = $cmd;
22 error_log("Error executing '{$cmd}'. Command produced no output.");
/plugin/html5video2/script/
H A Dvideo.min.js12 …ps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91},a=97;a<123;a++)…
/plugin/icalevents/vendor/sabre/vobject/bin/
H A Dgenerateicalendardata.php7 $cmd = $argv[0]; variable
16 {$cmd} [events]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DCLI.php205 $cmd = "patch -p0 -ui \"$diffFile\"";
208 exec($cmd, $output, $retVal);
H A DFixer.php270 $cmd = "diff -u -L$filename -LPHP_CodeSniffer $filename \"$tempName\"";
272 $diff = shell_exec($cmd);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DNotifysend.php215 $cmd = $this->getBasicCommand();
216 $cmd .= ' -i info';
217 $cmd .= ' "PHP CodeSniffer: Ok"';
218 $cmd .= ' "All fine"';
219 exec($cmd);
234 $cmd .= ' -i error';
237 exec($cmd);
249 $cmd = $this->path;
251 $cmd .= ' -h int:transient:1';
254 $cmd .= ' -a phpcs';
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/
H A DCSSLintSniff.php69 $cmd = escapeshellcmd($csslintPath).' '.escapeshellarg($fileName).' 2>&1';
70 exec($cmd, $output, $retval);
H A DClosureLinterSniff.php87 $cmd = '$lintPath --nosummary --notime --unix_mode '.escapeshellarg($fileName);
88 $msg = exec($cmd, $output, $retval);
H A DESLintSniff.php89 …$cmd = escapeshellcmd(escapeshellarg($eslintPath).' '.implode(' ', $eslintOptions).' '.escapeshell…
92 exec($cmd, $stdout, $code);
H A DJSHintSniff.php76 $cmd = "$rhinoPath \"$jshintPath\" ".escapeshellarg($fileName);
77 $msg = exec($cmd, $output, $retval);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DSyntaxSniff.php78 $cmd = escapeshellcmd($this->_phpPath)." -l -d error_prepend_string='' $fileName 2>&1";
80 $cmd = escapeshellcmd($this->_phpPath)." -l $fileName 2>&1";
83 $output = shell_exec($cmd);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/
H A DJSLintSniff.php74 $cmd = "$rhinoPath \"$jslintPath\" ".escapeshellarg($fileName);
75 $msg = exec($cmd, $output, $retval);
H A DJavaScriptLintSniff.php69 …$cmd = '"'.escapeshellcmd($jslPath).'" -nologo -nofilelisting -nocontext -nosummary -output-format…
70 $msg = exec($cmd, $output, $retval);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Debug/
H A DCodeAnalyzerSniff.php66 $cmd = escapeshellcmd($analyzerPath).' '.escapeshellarg($fileName).' 2>&1';
72 $exitCode = exec($cmd, $output, $retval);

12345678910