Home
last modified time | relevance | path

Searched refs:cmd (Results 26 – 50 of 228) sorted by relevance

12345678910

/plugin/mdpage/vendor/cebe/markdown/bin/
H A Dmarkdown115 $cmd = $argv[0];
118 $cmd [--flavor=<flavor>] [--full] [file.md]
136 $cmd README.md > README.html
140 $cmd --flavor=gfm README.md > README.html
144 curl http://daringfireball.net/projects/markdown/syntax.text | $cmd > md.html
/plugin/docsearch/
H A Dcron.php83 $cmd = $conf['docsearch'][$extension];
84 $cmd = str_replace('%in%', escapeshellarg($file), $cmd);
85 $cmd = str_replace('%out%', escapeshellarg($out), $cmd);
89 system($cmd, $exitCode);
90 if($exitCode != 0) fwrite(STDERR, "Command failed: $cmd\n");
/plugin/freechat/phpfreechat/src/
H A Dpfccommand.class.php59 $cmd = NULL;
234 $cmd =& pfcCommand::Factory($cmdtoplay['cmdstr']);
243 $cmd->run($xml_reponse, $cmdp);
245 @$cmd->run($xml_reponse, $cmdp);
278 $cmd = $res[1];
285 if ($one_parameter || $cmd == 'send' || $cmd == 'notice' || $cmd == 'me')
288 $result['cmdname'] = $cmd;
319 $result['cmdname'] = $cmd;
H A Dphpfreechat.class.php58 $r =& $this->$function($cmd);
283 $cmd =& pfcCommand::Factory($cmdname);
286 if ($cmd != NULL)
290 $cmd->run($xml_reponse, $cmdp);
292 @$cmd->run($xml_reponse, $cmdp);
296 $cmd =& pfcCommand::Factory("error");
304 $cmd->run($xml_reponse, $cmdp);
306 @$cmd->run($xml_reponse, $cmdp);
317 $cmd =& pfcCommand::Factory("update");
325 $cmd->run($xml_reponse, $cmdp);
[all …]
/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);
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessFailedExceptionTest.php44 $cmd = 'php';
51 …tExitCodeText', 'isOutputDisabled', 'getWorkingDirectory'])->setConstructorArgs([$cmd])->getMock();
83 …"The command \"$cmd\" failed.\n\nExit Code: $exitCode($exitText)\n\nWorking directory: {$workingDi…
94 $cmd = 'php';
99 …xt', 'getOutput', 'getErrorOutput', 'getWorkingDirectory'])->setConstructorArgs([$cmd])->getMock();
129 …"The command \"$cmd\" failed.\n\nExit Code: $exitCode($exitText)\n\nWorking directory: {$workingDi…
/plugin/pagenav/
H A Dsyntax.php122 * @param string $cmd
125 protected function buildImgLink($page, $cmd) argument
127 $img = inlineSVG(__DIR__ . '/img/' . $cmd . '.svg');
131 return '<span class="' . $cmd . '">' . $img . '</span>';
138 'title' => $this->getLang($cmd) . ': ' . hsc($title),
139 'class' => 'wikilink1 ' . $cmd,
/plugin/pubmed2020/
H A Dsyntax.php367 list($cmd, $id) = explode(':', $req, 2);
368 $cmd = strtolower($cmd);
375 $id = $cmd;
376 $cmd = $this->documentFormat;
385 if ($cmd === "doc_format") {
390 $cmd = $this->documentFormat;
395 if (array_key_exists($cmd, $this->outputTpl)) {
426 switch($cmd) {
616 if (empty($this->outputTpl[$cmd]))
617 $cmd = "long_abstract";
[all …]
/plugin/maintenance/
H A Dhelper.php56 …$cmd = 'nohup bash '.escapeshellarg($script).' > '.escapeshellarg($this->script_last_log_file). ' …
57 exec($cmd, $output, $result);
77 $cmd = "ps p $pid >&-";
78 exec($cmd, $output, $result);
80 $cmd = "kill -9 $pid";
81 exec($cmd, $output, $result);
/plugin/freechat/phpfreechat/src/commands/
H A Dnick.class.php27 $cmd =& pfcCommand::Factory("error");
28 $cmd->run($xml_reponse, $cmdp);
55 $cmd =& pfcCommand::Factory("notice");
60 $cmd->run($xml_reponse, $cmdp);
66 $cmd->run($xml_reponse, $cmdp);
H A Dquit.class.php29 $cmd =& pfcCommand::Factory("leave");
30 $cmd->run($xml_reponse, $cmdp);
40 $cmd =& pfcCommand::Factory("leave");
41 $cmd->run($xml_reponse, $cmdp);
H A Djoin.class.php29 $cmd =& pfcCommand::Factory("error");
30 $cmd->run($xml_reponse, $cmdp);
53 $cmd =& pfcCommand::Factory("notice");
54 $cmd->run($xml_reponse, $cmdp);
/plugin/freechat/phpfreechat/data/public/js/
H A Dxajax.js166 data="";if(cmd!="jc")objElement=this.$(id);var cmdFullname;try{if(cmd=="cc"){cmdFullname="confirmCo…
168 if(cmd=="al"){cmdFullname="alert";alert(data);}
172 else if(cmd=="js"){cmdFullname="script/redirect";eval(data);}
173 else if(cmd=="in"){cmdFullname="includeScript";this.include(data);}
174 else if(cmd=="ino"){cmdFullname="includeScriptOnce";this.includeOnce(data);}
175 else if(cmd=="css"){cmdFullname="includeCSS";this.addCSS(data);}
180 else if(cmd=="rp"){cmdFullname="replace";this.replace(id,property,search,data)
182 else if(cmd=="rm"){cmdFullname="remove";this.remove(id);}
183 else if(cmd=="ce"){cmdFullname="create";this.create(id,data,property);}
184 else if(cmd=="ie"){cmdFullname="insert";this.insert(id,data,property);}
[all …]
/plugin/fedauth/classes/adm/
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_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_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/authg2fa/
H A Daction.php44 $cmd = key($fn);
45 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
47 $cmd = $fn;
62 switch($cmd) {
H A Dadmin.php66 $cmd = key($fn);
67 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
69 $cmd = $fn;
73 if ($cmd != "search") {
78 switch($cmd) {
89 switch($cmd){
/plugin/pubchem/
H A Dsyntax.php51 list($cmd,$cid) = $match;
52 $cmd = strtolower($cmd);
57 switch($cmd){
71 $renderer->doc.='<div class="plugin_cmd">'.sprintf($this->getLang('plugin_cmd_not_found'),$cmd).'</div>';
89 switch($cmd){
112 $mode = $cmd[0]; // s or l
119 if(strpos($cmd,'template')!==false){
139 $renderer->doc.='<div class="plugin_cmd">'.sprintf($this->getLang('plugin_cmd_not_found'),$cmd).'</div>';
/plugin/zip/pear/MIME/
H A DType.php379 $cmd = new System_Command;
384 if (!$cmd->which($fileCmd)) {
385 unset($cmd);
389 $cmd->pushCommand($fileCmd, "-bi '{$file}'");
390 $res = $cmd->execute();
391 unset($cmd);
/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/slideshare/slideshare/
H A Dsyntax.php47 $cmd = $result[2][0];
57 return array($state, array($cmd,$id,$align,$title));
63 list($cmd,$id,$align,$title) = $match;
68 if ($cmd=='link') {

12345678910