| /plugin/components/lib/ |
| D | action_manager.php | 4 require_once dirname(__FILE__) . '/action.php'; 20 // this holds the renderer of the specific action 22 // this holds the handler of the specific action 37 // create an object and check if it responds to the correct action 38 private static function create($class, $action) { argument 40 return ($handler->action() != $action) ? NULL : $handler; 55 // can handle the action, and is not extended 56 private function unique($classes, $action) { argument 59 $new = $this->create($class, $action); 64 if ($new && $new->action() == $action) { [all …]
|
| D | action.php | 6 * These renderers renders the output of an action. 15 * Specifies the action name that this process responds to 17 * @return string the action name 19 abstract public function action(); function in Doku_Action_Renderer 22 * renders the xhtml output of an action 30 * - a static one that acts as action handler managers 31 * * act($action_name) to handle an action; 32 * * render($action_name) to render the output of an action. 33 * - an interface that specifies what each action should implement, namely 34 * * action() returning the action name; [all …]
|
| /plugin/bureaucracy-au/_test/ |
| D | actions_template.test.php | 11 $action = $this->getTemplateClass(); 12 $action->prepareLanguagePlaceholder(); 14 $this->assertEquals('en', $action->values['__lang__']); 15 $this->assertEquals('/@LANG@/', $action->patterns['__lang__']); 16 $this->assertEquals('', $action->values['__trans__']); 17 $this->assertEquals('/@TRANS@/', $action->patterns['__trans__']); 30 $action = $this->getTemplateClass(); 31 $action->prepareLanguagePlaceholder(); 33 $this->assertEquals('en', $action->values['__lang__']); 34 $this->assertEquals('/@LANG@/', $action->patterns['__lang__']); [all …]
|
| /plugin/bureaucracyau/_test/ |
| D | actions_template.test.php | 11 $action = $this->getTemplateClass(); 12 $action->prepareLanguagePlaceholder(); 14 $this->assertEquals('en', $action->values['__lang__']); 15 $this->assertEquals('/@LANG@/', $action->patterns['__lang__']); 16 $this->assertEquals('', $action->values['__trans__']); 17 $this->assertEquals('/@TRANS@/', $action->patterns['__trans__']); 30 $action = $this->getTemplateClass(); 31 $action->prepareLanguagePlaceholder(); 33 $this->assertEquals('en', $action->values['__lang__']); 34 $this->assertEquals('/@LANG@/', $action->patterns['__lang__']); [all …]
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
| H A D | LexerCustomAction.php | 11 * Executes a custom lexer action by calling {@see Recognizer::action()} with the 12 * rule and action indexes assigned to the custom action. The implementation of 13 * a custom action is added to the generated code for the lexer in an override 14 * of {@see Recognizer::action()} when the grammar is compiled. 31 * Constructs a custom lexer action with the specified rule and action 35 * {@see Recognizer::action()}. 36 * @param int $actionIndex The action index to use for calls to 37 * {@see Recognizer::action()}. 46 * Gets the rule index to use for calls to {@see Recognizer::action()}. 48 * @return int The rule index for the custom action. [all …]
|
| H A D | LexerIndexedCustomAction.php | 14 * This action is not serialized as part of the ATN, and is only required for 28 private $action; variable in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerIndexedCustomAction 31 * Constructs a new indexed custom action by associating a character offset 39 * the specified lexer action should be executed. 40 * @param LexerAction $action The lexer action to execute at a particular 43 public function __construct(int $offset, LexerAction $action) argument 46 $this->action = $action; 51 * action should be executed. The value is interpreted as an offset relative 55 * action should be executed. 63 * Gets the lexer action to execute. [all …]
|
| H A D | LexerActionType.php | 10 * The type of a {@see LexerChannelAction} action. 15 * The type of a {@see LexerCustomAction} action. 20 * The type of a {@see LexerModeAction} action. 25 * The type of a {@see LexerMoreAction} action. 30 * The type of a {@see LexerPopModeAction} action. 35 * The type of a {@see LexerPushModeAction} action. 40 * The type of a {@see LexerSkipAction} action. 45 * The type of a {@see LexerTypeAction} action.
|
| H A D | LexerAction.php | 11 * Represents a single action which can be executed following the successful 12 * match of a lexer rule. Lexer actions are used for both embedded action syntax 20 * Gets the serialization type of the lexer action. 22 * @return int The serialization type of the lexer action. 27 * Gets whether the lexer action is position-dependent. Position-dependent 29 * index at the time the action is executed. 36 * @return bool `true` if the lexer action semantics can be affected by the 43 * Execute the lexer action in the context of the specified {@see Lexer}.
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | Bulk.php | 5 use Elastica\Bulk\Action; alias 6 use Elastica\Bulk\Action\AbstractDocument as AbstractDocumentAction; 27 * @var Action[] 50 foreach ($this->getActions() as $action) { 51 $data .= (string) $action; 100 public function addAction(Action $action): self argument 102 $this->_actions[] = $action; 108 * @param Action[] $actions 114 foreach ($actions as $action) { 115 $this->addAction($action); [all …]
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 42.42.js | 1 …action:{token:""}},{regex:/\(\*\)/,action:{token:"invalid"}},{regex:/\(\*/,action:{token:"comment"… property
|
| /plugin/actionlink/ |
| D | syntax.php | 3 * Action link plugin. Lets you use action links in your wiki syntax. 26 'desc' => 'Actionlink plugin lets you use action links in your wiki syntax. 27 Basic syntax: {{actionlink>action|title}}', 47 return array('action'=>hsc($matches[0]),'title'=>hsc($matches[1])); 53 if(!empty($data['action'])) $action=$data['action']; 54 else $action=''; 65 switch($action){ 67 #most complicated type - we need to decide on current action 74 'class="action edit" accesskey="e" rel="nofollow"'); 79 'class="action create" accesskey="e" rel="nofollow"'); [all …]
|
| /plugin/bez/meta/ |
| H A D | Tpl.php | 10 private $action; variable in dokuwiki\\plugin\\bez\\meta\\Tpl 19 public function __construct(\action_plugin_bez_base $action) { argument 21 $this->action = $action; 22 $this->conf = $action->getGlobalConf(); 27 $info = $action->getInfo(); 33 $this->set('users', $this->action->get_model()->userFactory->get_all()); 34 $this->set('groups', $this->action->get_model()->userFactory->get_groups()); 37 public function action($default=null) { function in dokuwiki\\plugin\\bez\\meta\\Tpl 38 $action = $this->action->get_action(); 39 if ($action == '' && !is_null($default)) { [all …]
|
| /plugin/ryubin/ryubin/xml/ |
| D | ArrowButtons.xml | 16 <action>up</action> 25 <action>left</action> 34 <action>home</action> 44 <action>right</action> 53 <action>down</action> 62 <action>d_left</action> 72 <action>d_right</action> 82 <action>auto_start</action> 92 <action>auto_stop</action> 101 <action>sound_effect0</action> [all …]
|
| D | IntegratedCtrl_640.xml | 19 <action>rewind</action> 29 <action>play</action> 39 <action>pause</action> 116 <action>turn_on</action> 126 <action>turn_off</action> 136 <action>show_information</action> 146 <action>minus</action> 156 <action>plus</action> 167 <action>full_scr</action>
|
| /plugin/components/commands/ |
| D | example.php | 3 // this exampel shows how to handle an action, and render the results. 5 /** action() should return the name of the action that this handler 8 * this action is components.example 10 public function action() { return 'example'; } function in Components_Action_Example 13 * this action needs, e.g., 'AUTH_NONE', 'AUTH_READ', etc. 17 /** handle() method perform the action, 20 * If there should be no change in action name, 31 /** action() should return the name of the action that this handler 34 * this action is components.example 36 public function action() { return 'example'; } function in Components_Action_Renderer_Example [all …]
|
| /plugin/combo/ |
| H A D | deleted.files | 13 action/math.php 14 action/metaviewer.php 21 action/lowqualitypage.php 127 action/blockquote.php 128 action/metadata.php 129 action/home.php 130 action/metadataviewer.php 131 action/sidebarscachebursting.php 132 action/cachebursting.php 133 action/urlmanager.php [all …]
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/ |
| H A D | WebDriverActions.php | 19 * WebDriver action builder. It implements the builder pattern. 26 protected $action; variable in Facebook\\WebDriver\\Interactions\\WebDriverActions 36 $this->action = new WebDriverCompositeAction(); 44 $this->action->perform(); 56 $this->action->addAction( 72 $this->action->addAction( 88 $this->action->addAction( 104 $this->action->addAction( 120 $this->action->addAction( 123 $this->action->addAction( [all …]
|
| /plugin/components/ |
| D | README.md | 63 ## Action handlers and renderers 64 See lib/action.php for the definitions of the action handlers, renderers. These handlers must 68 avoid colliding in file names. You can only define at most a single action handler and at most a si… 70 ### Extending a previously defined action 75 - `public function action() { return ...; }` 76 …- This defines the action name that these handlers respond to. Note the full action name is plugin… 78 - This returns the minimum required permission for the user to perform this action. 80 …is is the logic that handles the action. If you want to chain performing another action, return th… 82 - This is the renderer logic for the action. The randerer is called after all post processors 90 in your wiki text to play with this action.
|
| /plugin/database/ |
| D | action.php | 17 require_once(DOKU_PLUGIN.'action.php'); 22 * All DokuWiki plugins to extend the action function 76 global $action; 89 if (isset($_REQUEST['action']) || isset($_REQUEST['fn']) // already in db code 97 // There are two methods of determing the action 98 // 1. Using an icon with name='fn[action][param(s)]' and params separated by | 99 // 2. Using a form with hidden fields of action, table and record 108 $action = key($fn); 109 $param = is_array($fn[$action]) ? key($fn[$action]) : null; 115 // Pick up the action [all …]
|
| /plugin/yuriigantt/src/ |
| D | JsonRequest.php | 81 switch ($this->payload->action) { 85 $responseData = ['action' => 'inserted', 'tid' => $task->id]; 88 $responseData = ['action' => 'inserted', 'tid' => $link->id]; 95 $responseData = ['action' => 'deleted']; 98 $responseData = ['action' => 'deleted']; 105 $responseData = ['action' => 'updated']; 108 $responseData = ['action' => 'updated']; 113 $responseData = $this->error('Unknown action'); 128 …if (empty($this->payload->action) || !in_array($this->payload->action, [self::ACTION_UPDATE, self:… 129 $error = $this->error('this action is not supported'); [all …]
|
| /plugin/bez/cron/ |
| H A D | functions.php | 3 $action = new action_plugin_bez_base(); variable 4 $action->createObjects(true); 7 global $action; 9 $threads = $action->get_model()->threadFactory->get_all(array( 25 global $action; 29 $days_before = $action->getConf('task_remaind_days_before'); 41 $tasks = $action->get_model()->taskFactory->get_all($filters); 51 global $action; 59 $threads = $action->get_model()->threadFactory->get_all(array( 76 $tasks = $action->get_model()->taskFactory->get_all(array( [all …]
|
| /plugin/structtasks/_test/ |
| D | ActionTest.php | 12 * Tests action handler for structtasks plugin 26 $action = plugin_load('action', 'structtasks'); 27 $action->loadConfig(); 30 $action->notifiers = [$notifier]; 38 $action = plugin_load('action', 'structtasks'); 39 $action->loadConfig(); 42 $action->notifiers = [$notifier]; 54 $action = plugin_load('action', 'structtasks'); 55 $action->loadConfig(); 94 $action->notifiers = [$notifier];
|
| /plugin/dokullm/doc/ |
| H A D | profiles.txt | 17 - Add prompt pages for each action in your profile 26 * ''dokullm:profiles:PROFILE_NAME:action_name'' - Prompt page for each action 27 * ''dokullm:profiles:PROFILE_NAME:action_name:system'' - Action-specific system prompt extension 29 ===== Profile Action Definition ===== 34 | action_id | Button Text | Description of what the action does | icon_name | result_action_type | 37 * **ID**: The action identifier, which corresponds to the prompt name 39 * **Description**: A detailed description of the action, used as a tooltip 41 * **Result**: The action to perform with the LLM result: 49 Here's an example of how to structure your profile action table: 68 Each action in your profile corresponds to a prompt page. To add a custom prompt: [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/Resource/ |
| D | Actions.php | 34 * Execute an action remotely. In order to execute an action, the client must 35 * first upload all of the inputs, the Command to run, and the Action into the 37 * referring to them. The server will run the action and eventually return the 38 * result. The input `Action`'s fields MUST meet the various canonicalization 40 * the same digest as other logically equivalent `Action`s. The server MAY 44 * the requirement, then it will treat the `Action` as distinct from another 45 * logically equivalent action if they hash differently. Returns a stream of 55 * action will be reported in the `status` field of the `ExecuteResponse`. The 58 * `FAILED_PRECONDITION`: One or more errors occurred in setting up the action 61 * There is insufficient quota of some resource to run the action. * [all …]
|
| /plugin/conflictmerger/ |
| D | action.php | 13 require_once(DOKU_PLUGIN.'action.php'); 22 * Action plugin for Dokuwiki to automatically merge changes with latest 26 * custom action, 'conflictSolving', when needed. That happens when some changes 30 * When a 'conflictSolving' action is received, a conflict solving page is 56 'name' => 'Conflict Merger Plugin (action component)', 119 //$event->data action may come as an array, so it must be cleaned 120 $action = $this->cleanAction($event->data); 122 if ($action != 'edit' && $action != 'save') { 133 if ($action == 'edit' && $_REQUEST['conflictDate'] == $INFO['lastmod']) { 137 if ($action == 'save' && $_REQUEST['conflictDate'] == $INFO['lastmod']) { [all …]
|