Home
last modified time | relevance | path

Searched refs:commandName (Results 1 – 14 of 14) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckcommands.js27 FCKCommands.RegisterCommand = function( commandName, command ) argument
29 this.LoadedCommands[ commandName ] = command ;
32 FCKCommands.GetCommand = function( commandName ) argument
34 var oCommand = FCKCommands.LoadedCommands[ commandName ] ;
39 switch ( commandName )
46 case 'Superscript' : oCommand = new FCKCoreStyleCommand( commandName ) ; break ;
142 if ( FCKRegexLib.NamedCommands.test( commandName ) )
143 oCommand = new FCKNamedCommand( commandName ) ;
146 alert( FCKLang.UnknownCommand.replace( /%1/g, commandName ) ) ;
151 FCKCommands.LoadedCommands[ commandName ] = oCommand ;
H A Dfck_gecko.js311 FCK.GetNamedCommandState = function( commandName ) argument
313 switch ( commandName )
318 return FCK._BaseGetNamedCommandState( commandName ) ;
333 FCK.ExecuteRedirectedNamedCommand = function( commandName, commandParameter ) argument
335 switch ( commandName )
361 FCK.ExecuteNamedCommand( commandName, commandParameter ) ;
H A Dfck.js434 ExecuteNamedCommand : function( commandName, commandParameter, noRedirect, noSaveUndo ) argument
439 if ( !noRedirect && FCK.RedirectNamedCommands[ commandName ] != null )
440 FCK.ExecuteRedirectedNamedCommand( commandName, commandParameter ) ;
444 FCK.EditorDocument.execCommand( commandName, false, commandParameter ) ;
452 GetNamedCommandState : function( commandName ) argument
458 if ( FCKBrowserInfo.IsSafari && FCK.EditorWindow && commandName.IEquals( 'Paste' ) )
461 if ( !FCK.EditorDocument.queryCommandEnabled( commandName ) )
465 … return FCK.EditorDocument.queryCommandState( commandName ) ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF ;
474 GetNamedCommandValue : function( commandName ) argument
477 var eState = FCK.GetNamedCommandState( commandName ) ;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DSlashCommandMetadata.php31 public $commandName; variable in Google\\Service\\HangoutsChat\\SlashCommandMetadata
72 public function setCommandName($commandName) argument
74 $this->commandName = $commandName;
81 return $this->commandName;
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfcktoolbarpanelbutton.js25 var FCKToolbarPanelButton = function( commandName, label, tooltip, style, icon ) argument
27 this.CommandName = commandName ;
32 oIcon = FCKConfig.SkinPath + 'toolbar/' + commandName.toLowerCase() + '.gif' ;
36 …var oUIButton = this._UIButton = new FCKToolbarButtonUI( commandName, label, tooltip, oIcon, style…
H A Dfcktoolbarbutton.js24 var FCKToolbarButton = function( commandName, label, tooltip, style, sourceView, contextSensitive, … argument
26 this.CommandName = commandName ;
34 this.IconPath = FCKConfig.SkinPath + 'toolbar/' + commandName.toLowerCase() + '.gif' ;
/plugin/combo/ComboStrap/
H A DPipelineUtility.php107 $commandName = substr($command, 0, $leftParenthesis);
126 $commandName = trim($commandName);
127 if (!empty($commandName)) {
128 switch ($commandName) {
157 LogUtility::msg("command ($commandName) is unknown", LogUtility::LVL_MSG_ERROR, "pipeline");
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfcknamedcommand.js24 var FCKNamedCommand = function( commandName ) argument
26 this.Name = commandName ;
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshCore.js153 getButtonHtml: function(highlighter, commandName, label) argument
155 commandName = escapeHtml(commandName);
158 + ' command_' + commandName
159 + ' ' + commandName
183 commandName = getValue('command')
187 if (highlighter && commandName)
188 sh.toolbar.items[commandName].execute(highlighter);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php401 $commandName = $command->getName();
402 if (!isset(self::$commands[$commandName])) {
403 if ($this->isW3cCompliant && !isset(self::$w3cCompliantCommands[$commandName])) {
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshCore.js1434 getButtonHtml: function(highlighter, commandName, label) argument
1436 commandName = escapeHtml(commandName);
1439 + ' command_' + commandName
1440 + ' ' + commandName
1464 commandName = getValue('command')
1468 if (highlighter && commandName)
1469 sh.toolbar.items[commandName].execute(highlighter);
/plugin/codemirror/dist/keymaps/
H A Dvim.min.js.map1commandName","matchCommand_","parseCommandArgs_","toInput","eatWhile","eat","lineEnd","parseLineSp…
H A Dvim.min.js3commandName){if(i.line!==undefined){k="move"}}else{j=this.matchCommand_(i.commandName);if(j){k=j.n…
/plugin/edittable/lib/
H A Dhandsontable.full.js38792 value: function execute(commandName) {
38799 var commandSplit = commandName.split(':');
38800 commandName = commandSplit[0];
38803 var command = this.commands[commandName];
38806 throw new Error('Menu command \'' + commandName + '\' not exists.');