/plugin/components/lib/ |
H A D | action_manager.php | 40 return ($handler->action() != $action) ? NULL : $handler; 64 if ($new && $new->action() == $action) { 82 public function act(&$action) { argument 84 if (is_array($action)) 85 list($action) = array_keys($action); 97 $this->load($path, $action); 103 if (!actionOK($action)) { 105 $action = 'show'; 115 $action = 'denied'; 123 $action = $new_action; [all …]
|
/plugin/bureaucracyau/_test/ |
H A D | actions_template.test.php | 11 $action = $this->getTemplateClass(); 12 $action->prepareLanguagePlaceholder(); 14 $this->assertEquals('en', $action->values['__lang__']); 16 $this->assertEquals('', $action->values['__trans__']); 30 $action = $this->getTemplateClass(); 31 $action->prepareLanguagePlaceholder(); 50 $action = $this->getTemplateClass(); 51 $action->prepareLanguagePlaceholder(); 66 $action = $this->getTemplateClass(); 67 $action->prepareFieldReplacements($data, '_', ''); [all …]
|
/plugin/bureaucracy-au/_test/ |
H A D | actions_template.test.php | 11 $action = $this->getTemplateClass(); 12 $action->prepareLanguagePlaceholder(); 14 $this->assertEquals('en', $action->values['__lang__']); 16 $this->assertEquals('', $action->values['__trans__']); 30 $action = $this->getTemplateClass(); 31 $action->prepareLanguagePlaceholder(); 50 $action = $this->getTemplateClass(); 51 $action->prepareLanguagePlaceholder(); 66 $action = $this->getTemplateClass(); 67 $action->prepareFieldReplacements($data, '_', ''); [all …]
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 42.42.js | 1 …action:{token:"punctuation"}},{regex:/@irregular_keywords(?!@IDENTRST)/,action:{token:"keyword"}},…
|
/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 [all...] |
/plugin/elasticsearch/vendor/ruflin/elastica/src/ |
H A D | Bulk.php | 50 foreach ($this->getActions() as $action) { 51 $data .= (string) $action; 100 public function addAction(Action $action): self 102 $this->_actions[] = $action; 114 foreach ($actions as $action) { 115 $this->addAction($action); 134 $action = AbstractDocumentAction::create($document, $opType); 136 return $this->addAction($action); 158 $action = AbstractDocumentAction::create($script, $opType); 160 return $this->addAction($action); 98 addAction(Action $action) global() argument [all...] |
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
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 shoul [all...] |
/plugin/dwspecialist/ |
H A D | action.php | 38 $action="specialist"; 41 'title' => $action, 42 'icon' => '../../plugins/dwspecialist/images/'.$action.'.png', 45 foreach ($actions as $action) { 46 $act=tpl_get_action($action); 48 $name = (key_exists('btn_'.$act['type'], $lang)) ? $lang['btn_'.$act['type']] : $action; 50 $name = $action; 55 'icon' => '../../plugins/dwspecialist/images/'.$action.'.png', 56 'insert'=> '<special '.$action.'>',
|
H A D | syntax.php | 100 foreach ($actions as $action) { 101 switch ($action) { 103 $act=array( 'params' => array('do' => $action, 'rev' => $rev), 104 'type' => $action); 121 $act=tpl_get_action($action); //$act['params']['do']; is now defined 123 $name=(key_exists('btn_'.$act['type'], $lang)) ? $lang['btn_'.$act['type']] : $action; 130 $line.=$crlf.$listoffset.$prolog.$action; 156 $line.=$crlf.$listoffset.$prolog.$action; 186 foreach ($parameters as $action) { 187 $action=trim($action); [all …]
|
/plugin/bez/ |
H A D | cli.php | 19 $action = new action_plugin_bez_base(); 20 $action->createObjects(true); 22 $threads = $action->get_model()->threadFactory->get_all(); 25 $action->get_model()->threadFactory->save($thread); 29 $thread_comments = $action->get_model()->thread_commentFactory->get_all(); 32 $action->get_model()->thread_commentFactory->save($thread_comment); 37 $tasks = $action->get_model()->taskFactory->get_all(); 40 $action->get_model()->taskFactory->save($task); 45 $task_comments = $action->get_model()->task_commentFactory->get_all(); 48 $action [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 [all...] |
H A D | WebDriverCompositeAction.php | 8 * An action for aggregating actions and triggering all of them afterwards. 20 * @param WebDriverAction $action 23 public function addAction(WebDriverAction $action) argument 25 $this->actions[] = $action; 45 foreach ($this->actions as $action) { 46 $action->perform();
|
/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 [all...] |
/plugin/conflictmerger/ |
H A D | action.php | 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']) { 203 * @param action The action to clean. 208 function cleanAction($action) { argument 209 if (is_array($action)) { 210 list($action) = array_keys($action); 213 $action = strtolower($action); 214 $action = preg_replace('/[^1-9a-z_]+/', '', $action); [all …]
|
/plugin/bureaucracy-au/ |
H A D | syntax.php | 136 foreach($rawactions as $action) { 137 $action['type'] = $this->_sanitizeClassName($action['type']); 139 if(strpos($action['type'], '_') === false) { 140 $action['actionname'] = 'bureaucracyau_action' . $action['type']; 143 $action['actionname'] = $action['type']; 147 $alternativename = $action['type'] . '_'. $action['type']; 151 $actions[] = $action; 156 $actions[] = $action; 176 foreach($actions as $action) { 336 if(!$action) { [all …]
|
/plugin/bureaucracyau/ |
H A D | syntax.php | 136 foreach($rawactions as $action) { 137 $action['type'] = $this->_sanitizeClassName($action['type']); 139 if(strpos($action['type'], '_') === false) { 140 $action['actionname'] = 'bureaucracyau_action' . $action['type']; 143 $action['actionname'] = $action['type']; 147 $alternativename = $action['type'] . '_'. $action['type']; 151 $actions[] = $action; 156 $actions[] = $action; 176 foreach($actions as $action) { 336 if(!$action) { [all …]
|
/plugin/structtasks/_test/ |
H A D | ActionTest.php | 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/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
H A D | MobileDeviceAction.php | 25 public $action; variable in Google\\Service\\Directory\\MobileDeviceAction 30 public function setAction($action) argument 32 $this->action = $action; 39 return $this->action;
|
H A D | ChromeOsDeviceAction.php | 25 public $action; variable in Google\\Service\\Directory\\ChromeOsDeviceAction 34 public function setAction($action) argument 36 $this->action = $action; 43 return $this->action;
|
/plugin/structpublish/helper/ |
H A D | publish.php | 26 * @param string $action 30 public function saveRevision($action, $newversion = '') 35 if (!$this->dbHelper->checkAccess($ID, [$action])) { 36 throw new \Exception('User may not ' . $action); 41 if ($action === Constants::ACTION_PUBLISH) { 45 $revision->setStatus(Constants::transitionBy($action)); 49 if ($action === Constants::ACTION_PUBLISH) { 31 saveRevision($action, $newversion = '') global() argument
|
/plugin/bureaucracy/ |
H A D | syntax.php | 141 foreach($rawactions as $action) { 142 $action['type'] = $this->_sanitizeClassName($action['type']); 144 if(strpos($action['type'], '_') === false) { 145 $action['actionname'] = 'bureaucracy_action' . $action['type']; 148 $action['actionname'] = $action['type']; 152 $alternativename = $action['type'] . '_'. $action['type']; 156 $actions[] = $action; 161 $actions[] = $action; 181 foreach($actions as $action) { 341 if(!$action) { [all …]
|
/plugin/drawio/ |
H A D | script.js | 18 action: 'get_auth' 67 action: 'draft_get' 87 action: 'draft_rm' 116 iframe.contentWindow.postMessage(JSON.stringify({action: 'load', 130 action: 'get_png' 145 action: 'get_svg' 197 action: 'save' 207 action: 'draft_rm' 229 action: 'draft_save' 257 action: 'draft_save' [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ToolResults/ |
H A D | StartActivityNotFound.php | 25 public $action; variable in Google\\Service\\ToolResults\\StartActivityNotFound 34 public function setAction($action) argument 36 $this->action = $action; 43 return $this->action;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/ |
H A D | FieldMetadata.php | 26 public $action; variable in Google\\Service\\CloudHealthcare\\FieldMetadata 35 public function setAction($action) argument 37 $this->action = $action; 44 return $this->action;
|
/plugin/autotranslation/ |
H A D | script.js | 11 var action = $frm.attr('action'); 12 var link = action + '?id=' + id; 13 if(action.substr(action.length-1) == '/'){ 14 link = action + id;
|