| /dokuwiki/inc/Extension/ |
| H A D | Event.php | 19 * @var mixed|null READWRITE the results of the event action, only relevant in "_AFTER" advise 20 * event handlers may modify this if they are preventing the default action 24 /** @var bool READONLY if true, event handlers can prevent the events default action */ 27 /** @var bool whether or not to carry out the default action associated with the event */ 57 * properly handle correct processing of any default action and issue an 61 * // default action code block 108 * - carry out the default action using $this->data based on $enablePrevent and 112 * @param null|callable $action 115 * the value set by any <event>_before or <event> handlers if the default action is prevented 116 * or the results of the default action (a 119 trigger($action = null, $enablePrevent = true) global() argument 197 createAndTrigger($name, & $data, $action = null, $canPreventDefault = true) global() argument [all...] |
| /dokuwiki/inc/ |
| H A D | ActionRouter.php | 20 protected $action; variable in dokuwiki\\ActionRouter 37 * Sets up the correct action based on the $ACT global. Writes back 38 * the selected action to $ACT 50 $ACT = $this->action->getActionName(); 68 * Setup the given action 71 * sets $action 84 $this->action = $this->loadAction($actionname); 85 $this->checkAction($this->action); 86 $this->action->preProcess(); 88 // event said the action shoul 204 checkAction(AbstractAction $action) global() argument [all...] |
| H A D | confutils.php | 354 * check if the given action was disabled in config 357 * @param string $action 360 function actionOK($action) argument 401 return !in_array($action, $disabled);
|
| H A D | form.php | 60 * @param bool|string $action (optional, deprecated) submit URL, defaults to current page 66 public function __construct($params, $action = false, $method = false, $enctype = false) argument 70 if ($action !== false) $this->params['action'] = $action; 83 if (!isset($this->params['action'])) { 84 $this->params['action'] = ''; 412 * Create a form element for an action button. 417 * @param string $act Wiki action of the button, will be used as the do= parameter
|
| /dokuwiki/inc/Action/ |
| H A D | Subscribe.php | 69 foreach (['target', 'style', 'action'] as $param) { 75 // any action given? if not just return and show the subscription page 76 if (empty($params['action']) || !checkSecurityToken()) return; 83 $action = $params['action']; 85 // Perform action. 87 if ($action === 'unsubscribe') { 96 $lang["subscr_{$action}_success"], 107 $lang["subscr_{$action}_error"], 118 * default action fo [all...] |
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | usertools.less | 14 li.action a { 28 li.action a:hover, 29 li.action a:active { 43 li.action a {
|
| H A D | design.less | 76 .mode_admin .action.admin a, 77 .mode_login .action.login a, 78 .mode_register .action.register a, 79 .mode_profile .action.profile a, 80 .mode_recent .action.recent a, 81 .mode_index .action.index a, 82 .mode_media .action.media a, 83 .mode_revisions .action.revs a, 84 .mode_backlink .action.backlink a, 85 .mode_subscribe .action [all...] |
| H A D | _fileuploader.css | 102 .qq-action-container * {
|
| H A D | mobile.less | 247 /* action dropdown is alternative for all hidden tools */
|
| /dokuwiki/lib/scripts/ |
| H A D | fileuploaderextended.js | 15 action: this._options.action, property 84 '<div class="qq-action-container">' + 85 ' <button class="qq-upload-action" type="submit" id="mediamanager__upload_button">' + LANG.media_upload_btn + '</button>' + 108 uploadButton: 'qq-upload-action', 186 var action = document.location.href; 187 var i = action.indexOf('?'); 188 if (i) action = action.substr(0, i); 189 var button = '<form method="post" action [all...] |
| H A D | media.js | 41 // add the action to autofill the "upload as" field 44 // Attach the image selector action to all links 363 var action = ''; 364 var i = $form[0].action.indexOf('?'); 366 action = $form[0].action.substr(i + 1); 368 return action + '&' + $form.serialize(); 668 action: DOKU_BASE + 'lib/exe/ajax.php', property 917 * Default implementation for the media manager's select action
|
| H A D | fileuploader.js | 257 action: '/server/upload', property 327 action: this._options.action, property 860 action: '/upload.php', property 1104 var queryString = qq.obj2url(params, this._options.action); 1106 form.setAttribute('action', queryString); 1200 var queryString = qq.obj2url(params, this._options.action);
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | admin.php | 19 * Execute the requested action(s) and initialize the plugin repository 42 foreach ($INPUT->post->arr('fn') as $action => $extensions) { 45 switch ($action) {
|
| H A D | GuiExtension.php | 342 * Generate the action buttons 373 foreach ($actions as $action) { 375 'class' => 'button ' . $action, 377 'name' => 'fn[' . $action . '][' . $this->extension->getID() . ']', 379 $html .= '<button ' . buildAttributes($attr) . '>' . $this->getLang('btn_' . $action) . '</button>';
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | Lexer.php | 281 * recognised token and finally the action the parser is to take. 292 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) { 294 return [$unparsed, $match, $action];
|
| /dokuwiki/ |
| H A D | .gitignore | |
| /dokuwiki/lib/plugins/acl/ |
| H A D | style.css | 73 #acl_manager table .action {
|
| /dokuwiki/vendor/aziraphale/email-address-validator/ |
| H A D | README.md | 28 Note that this updated version is **version 2.0.0**. I have kept the original class tagged as **version 1.0.10** (it was the 10th commit to the Google Code svn repository). If you want to use Composer to install the **old** class, simply specify `^1` as the version constraint (which will allow for backwards-compatible changes to be installed, if any get made, while never jumping to my modified class without your direct action):
|
| /dokuwiki/inc/Search/ |
| H A D | Indexer.php | 240 foreach ($val_idx as $id => $action) { 241 if ($action == -1) { 245 } elseif ($action == 1) {
|
| /dokuwiki/lib/scripts/jquery/jquery-ui-theme/ |
| H A D | smoothness.css | 571 touch-action: none; 580 touch-action: none; 660 touch-action: none; 717 touch-action: none; 766 touch-action: none;
|
| /dokuwiki/data/ |
| H A D | deleted.files | 834 lib/plugins/upgradeplugindirectory/action.php 843 lib/plugins/importoldchangelog/action.php 845 lib/plugins/importoldindex/action.php
|