Home
last modified time | relevance | path

Searched refs:action (Results 1 – 22 of 22) sorted by relevance

/dokuwiki/inc/Extension/
H A DEvent.php19 * @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
118 trigger($action = null, $enablePrevent = true) global() argument
196 createAndTrigger($name, & $data, $action = null, $canPreventDefault = true) global() argument
[all...]
/dokuwiki/inc/
H A DActionRouter.php20 protected $action;
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
19 protected $action; global() variable in dokuwiki\\ActionRouter
200 checkAction(AbstractAction $action) global() argument
[all...]
H A Dconfutils.php354 * check if the given action was disabled in config
357 * @param string $action
360 function actionOK($action)
401 return !in_array($action, $disabled);
347 actionOK($action) global() argument
H A Ddeprecated.php333 * @param callback $action (optional, default=NULL) default action, a php callback function
334 * @param bool $canPreventDefault (optional, default=true) can hooks prevent the default action
337 * by default this is the return value of the default action however
341 function trigger_event($name, &$data, $action=null, $canPreventDefault=true) {
343 return \dokuwiki\Extension\Event::createAndTrigger($name, $data, $action, $canPreventDefault);
339 trigger_event($name, & $data, $action = null, $canPreventDefault = true) global() argument
H A Dform.php60 * @param bool|string $action (optional, deprecated) submit URL, defaults to current page
66 public function __construct($params, $action = false, $method = false, $enctype = false)
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
65 __construct($params, $action = false, $method = false, $enctype = false) global() argument
/dokuwiki/inc/Action/
H A DSubscribe.php69 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 Dusertools.less14 li.action a {
28 li.action a:hover,
29 li.action a:active {
43 li.action a {
H A Ddesign.less76 .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.css102 .qq-action-container * {
H A Dmobile.less247 /* action dropdown is alternative for all hidden tools */
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js15 action: this._options.action,
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 Dmedia.js41 // add the action to autofill the "upload as" field
44 // Attach the image selector action to all links
363 var action = ''; variable
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',
917 * Default implementation for the media manager's select action
H A Dfileuploader.js257 action: '/server/upload', property in qq.FileUploaderBasic._options
327 action: this._options.action,
860 action: '/upload.php', property in qq.UploadHandlerAbstract._options
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 Dadmin.php48 * Execute the requested action(s) and initialize the plugin repository
73 foreach ($actions as $action => $extensions) {
75 switch ($action) {
83 $this->getLang('msg_' . $info['type'] . '_' . $info['action'] . '_success'),
138 $this->getLang('msg_' . $info['type'] . '_' . $info['action'] . '_success'),
147 $this->getLang('msg_' . $info['type'] . '_' . $info['action'] . '_success'),
/dokuwiki/lib/plugins/extension/helper/
H A Dlist.php561 * Display the action buttons if they are possible
623 * Display an action button for an extension
625 * @param string $action The action
629 public function makeAction($action, $extension)
633 if ($action == 'install' || $action == 'reinstall') {
637 $classes = 'button ' . $action;
638 $name = 'fn[' . $action . '][' . hsc($extension->getID()) . ']';
641 $this->getLang('btn_' . $action)
626 makeAction($action, $extension) global() argument
[all...]
H A Dextension.php1069 $action = file_exists($target) ? 'update' : 'install';
1071 // copy action
1081 'action' => $action
1293 if ($extension['action'] == 'install') continue;
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php281 * 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/lib/plugins/acl/
H A Dstyle.css73 #acl_manager table .action {
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DREADME.md28 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/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css582 -ms-touch-action: none;
583 touch-action: none;
592 -ms-touch-action: none;
593 touch-action: none;
674 -ms-touch-action: none;
675 touch-action: none;
732 -ms-touch-action: none;
733 touch-action: none;
788 -ms-touch-action: none;
789 touch-action
[all...]
/dokuwiki/inc/Search/
H A DIndexer.php240 foreach ($val_idx as $id => $action) {
241 if ($action == -1) {
245 } elseif ($action == 1) {
/dokuwiki/data/
H A Ddeleted.files810 lib/plugins/upgradeplugindirectory/action.php
819 lib/plugins/importoldchangelog/action.php
821 lib/plugins/importoldindex/action.php