/plugin/upgrade/vendor/splitbrain/php-cli/src/ |
H A D | Options.php | 8 * Parses command line options passed to the CLI script. Allows CLI scripts to easily register all accepted options and 22 /** @var string current parsed command if any */ 23 protected $command = ''; variable in splitbrain\\phpcli\\Options 56 'commandhelp' => 'This tool accepts a command as first parameter as outlined below:' 58 ); // default command 112 * @param string $command if theses apply to a sub command only 115 public function registerArgument($arg, $help, $required = true, $command = '') argument 117 if (!isset($this->setup[$command])) { 118 throw new Exception("Command $command no 137 registerCommand($command, $help) global() argument 161 registerOption($long, $help, $short = null, $needsarg = false, $command = '') global() argument [all...] |
/plugin/swiftmail/Swift/Connection/ |
H A D | Sendmail.php | 69 $this->setCommand($command); 166 public function setCommand($command) argument 168 if ($command == self::AUTO_DETECT) $command = $this->findSendmail() . " -bs"; 170 if (!strrpos($command, " -")) 174 $path = substr($command, 0, strrpos($command, " -")); 175 $flags = substr($command, strrpos($command, " -")+2); 195 …pes[0], $command . $end) && !empty($command)) throw new Swift_ConnectionException("The sendmail p… 261 … if (!$this->send && strpos($command, " ")) $command = substr($command, strpos($command, " ")+1); 264 $this->pipeIn($command); 266 $this->request = $command; [all …]
|
H A D | NativeMail.php | 98 public function write($command, $end="\r\n") argument 100 $command = strtoupper($command); 101 if (strpos($command, " ")) $command = substr($command, 0, strpos($command, " ")); 102 switch ($command)
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
H A D | dhtmlxgantt_undo.js | 213 if (command.entity === undo.command.entity.link) { 214 if (command.value && command.value.id === oldId) { 217 if (command.oldValue && command.oldValue.id === oldId) { 542 var command = undo.command.create(obj, old, actionType, entityType); 603 … _a = [command.oldValue, command.value], command.value = _a[0], command.oldValue = _a[1]; 609 this.command = { class in AnonymousFunction4dce81d40100.AnonymousFunction4dce81d42100.Undo.Undo 628 switch (command) { 755 var command = null; 777 var method = methods[command.entity][command.type]; 781 … gantt[method](command.oldValue, command.oldValue.parent, command.oldValue.$index); [all …]
|
/plugin/plantuml/ |
H A D | syntax.php | 202 $command = $java; 205 $command .= " -jar $jar"; 206 $command .= ' -charset UTF-8'; 207 $command .= ' -encodeurl'; 209 $command .= ' 2>&1'; 252 $command = $java; 254 $command .= ' -Dfile.encoding=UTF-8'; 255 $command .= " -jar $jar"; 256 $command .= ' -charset UTF-8'; 257 $command .= ' ' . escapeshellarg($in); [all …]
|
/plugin/odtsupport/ |
H A D | syntax.php | 79 $command = $matches[1]; 86 switch ($command) { 132 return array($command,$string,$hash,$string2); 149 if ($command == $this->serverurl) { 152 } else if ($command != $this->odt_field_pagehash4 153 && $command != $this->odt_field_pagehash 154 && $command != $this->odt_field_metadata) { 165 if ($command == $this->serverurl) { 170 } else if ($command == $this->odt_field_pagehash4 171 || $command == $this->odt_field_pagehash [all …]
|
/plugin/pdftools/ |
H A D | admin.php | 34 $command = key($_REQUEST['cmd']); 37 if (strpos($command,"install:")===0) { 38 $command = str_replace("install:","",$command); 40 $this->output = "COMMAND: Install template '$command'"; 42 recurse_copy(DOKU_PLUGIN."/pdftools/tpl/$command",DOKU_PLUGIN."/dw2pdf/tpl/$command"); 45 if (strpos($command,"erase:")===0) { 46 $command = str_replace("erase:","",$command); 48 $this->output = "COMMAND: Erase '$command'"; 50 $this->rrmdir(DOKU_PLUGIN."dw2pdf/tpl/$command"); 56 if(strpos($command,"upload")===0) {
|
/plugin/runcommand/ |
H A D | postaction.php | 37 $command=$_POST['command'.$rcObjectId]; variable 45 $command=str_replace("$".$baseElement,$_POST[$element],$command); variable 46 debug("Replace: ".$baseElement." -> ".$_POST[$element]." | ".$command, 3, $rcDebugLevel); 48 $command=stripslashes($command); variable 52 $lastLine = exec($command, $outputValue, $retVal);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/ |
H A D | ExecAction.php | 26 public $command; variable in Google\\Service\\CloudRun\\ExecAction 31 public function setCommand($command) argument 33 $this->command = $command; 40 return $this->command;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/ |
H A D | GoogleDevtoolsRemoteworkersV1test2AdminTemp.php | 23 public $command; variable in Google\\Service\\RemoteBuildExecution\\GoogleDevtoolsRemoteworkersV1test2AdminTemp 33 public function setCommand($command) argument 35 $this->command = $command; 39 return $this->command;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SmartDeviceManagement/ |
H A D | GoogleHomeEnterpriseSdmV1ExecuteDeviceCommandRequest.php | 25 public $command; variable in Google\\Service\\SmartDeviceManagement\\GoogleHomeEnterpriseSdmV1ExecuteDeviceCommandRequest 34 public function setCommand($command) argument 36 $this->command = $command; 43 return $this->command;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/ |
H A D | ShellTask.php | 25 public $command; variable in Google\\Service\\Dataflow\\ShellTask 34 public function setCommand($command) argument 36 $this->command = $command; 43 return $this->command;
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | ProcessHandler.php | 39 private $command; variable in Monolog\\Handler\\ProcessHandler 61 …* @param string $command Command for the process to start. Absolute paths are … 66 …public function __construct(string $command, $level = Logger::DEBUG, bool $bubble = true, ?string … argument 68 if ($command === '') { 77 $this->command = $command; 116 … $this->process = proc_open($this->command, static::DESCRIPTOR_SPEC, $this->pipes, $this->cwd); 139 sprintf('The process "%s" could not be opened: ' . $errors, $this->command)
|
/plugin/statdisplay/ |
H A D | syntax.php | 38 $command = trim(substr($match, 14, -2)); 39 list($command, $params) = array_pad(explode('?', $command), 2, ''); 57 'command' => $command, 68 $command = $data['command']; 76 $table->table($renderer, $command, $from, $to); 79 …> DOKU_BASE . 'lib/plugins/statdisplay/graph.php?graph=' . rawurlencode($command) . '&f=' . $from …
|
/plugin/odt/renderer/ |
H A D | pagepdf.php | 89 $command = $this->config->getParam('convert_to_pdf'); 90 $command = str_replace('%outdir%', $temp_dir, $command); 91 $command = str_replace('%sourcefile%', $file, $command); 95 exec ($command, $output, $result); 102 $message = str_replace('%command%', $command, $message);
|
/plugin/ckgdoku/ckeditor/plugins/about/ |
H A D | plugin.js | 14 var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) ); 15 command.modes = { wysiwyg: 1, source: 1 }; 16 command.canUndo = false; 17 command.readOnly = 1; 21 command: 'about',
|
/plugin/swiftmail/ |
H A D | Swift.php | 217 $greeting = $this->command("", 220); 231 $this->command("QUIT"); 288 public function command($command, $code=null) function in Swift 292 if ($command !== "") 319 $this->command("RSET", 250); 420 $this->command("DATA", 354); 424 $this->command($bytes, -1); 427 $this->command("\r\n.", 250); 444 $this->command("DATA", 354); 447 $this->command($bytes, -1); [all …]
|
/plugin/batchedit/ |
H A D | request.php | 26 private $command; variable in BatcheditRequest 39 $this->command = $this->parseCommand(); 41 if ($this->command == self::COMMAND_WELCOME) { 54 if ($this->command == self::COMMAND_APPLY || $config->getConf('keepmarks')) { 63 return $this->command; 127 $command = key($_REQUEST['cmd']); 129 if (($command != 'preview') && ($command != 'apply')) { 133 return $command;
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/ |
H A D | connector.py | 54 command = self.request.get("Command") 62 if ( not command in Config.ConfigAllowedCommands ): 63 return self.sendError( 1, 'The %s command isn\'t allowed' % command ) 69 if command == "QuickUpload": 87 if (command == "FileUpload"): 94 s += self.createXmlHeader(command, resourceType, currentFolder, url) 100 s += selector[command](resourceType, currentFolder)
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMachineLearningEngine/ |
H A D | GoogleCloudMlV1ContainerSpec.php | 30 public $command; variable in Google\\Service\\CloudMachineLearningEngine\\GoogleCloudMlV1ContainerSpec 57 public function setCommand($command) argument 59 $this->command = $command; 66 return $this->command;
|
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/ |
H A D | fcktextcolorcommand.js | 87 function FCKTextColorCommand_OnClick( ev, command, color ) argument 90 command.SetColor( color ) ; 91 command._Panel.Hide() ; 94 function FCKTextColorCommand_AutoOnClick( ev, command ) argument 97 command.SetColor( '' ) ; 98 command._Panel.Hide() ; 101 function FCKTextColorCommand_MoreOnClick( ev, command ) argument 104 command._Panel.Hide() ; 105 …g.DlgColorTitle, 'dialog/fck_colorselector.html', 400, 330, FCKTools.Hitch(command, 'SetColor') ) ;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/ |
H A D | Link.php | 25 public $command; variable in Google\\Service\\ContainerAnalysis\\Link 47 public function setCommand($command) argument 49 $this->command = $command; 53 return $this->command;
|
/plugin/dlcounter/ |
H A D | syntax.php | 49 $command = trim(substr($match, 12 ,-2)); 50 $x = explode('?', $command); 51 $command = $x[0]; 55 'command' => $command, 103 $command = $data['command']; 108 if( $command == 'file' ){ 120 if( $command == 'name' ){ 128 else if( $command [all...] |
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/Service/ |
H A D | DriverCommandExecutor.php | 29 * @param WebDriverCommand $command 35 public function execute(WebDriverCommand $command) argument 37 if ($command->getName() === DriverCommand::NEW_SESSION) { 42 $value = parent::execute($command); 43 if ($command->getName() === DriverCommand::QUIT) {
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/ |
H A D | HttpCommandExecutor.php | 22 * @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#command-reference 260 * @param WebDriverCommand $command 265 public function execute(WebDriverCommand $command) argument 267 $http_options = $this->getCommandHttpOptions($command); 271 $sessionID = $command->getSessionID(); 273 $params = $command->getParameters(); 294 if ($command->getName() === DriverCommand::NEW_SESSION) { 399 protected function getCommandHttpOptions(WebDriverCommand $command) argument 401 $commandName = $command->getName(); 404 throw new InvalidArgumentException($command [all...] |