Home
last modified time | relevance | path

Searched refs:action (Results 101 – 125 of 794) sorted by relevance

12345678910>>...32

/plugin/etherpadlite/externals/etherpad-lite-client/
H A Dexample_big.php29 $action = $_GET['action']; variable
80 if ($action == "deletePad") // If teh request is to delete an existing pad
92 if ($action == "makePublic") // If teh request is to delete an existing pad
102 if ($action == "makePrivate") // If teh request is to delete an existing pad
/plugin/actionlink/
H A Dsyntax.php47 return array('action'=>hsc($matches[0]),'title'=>hsc($matches[1]));
53 if(!empty($data['action'])) $action=$data['action'];
189 $renderer->doc .= '<a href="'.$this_link_prefix.$action.'">'.$title.'</a>';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DDeprecatedEvent.php64 public function setAction(FormAction $action) argument
66 $this->action = $action;
73 return $this->action;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowV2beta1Intent.php26 public $action; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1Intent
101 public function setAction($action) argument
103 $this->action = $action;
110 return $this->action;
/plugin/html2pdf/html2pdf/html2ps/
H A Doutput.pdflib.1.6.class.php67 $action = pdf_create_action($this->pdf,
76 $action,
84 $action = pdf_create_action($this->pdf,
90 $this->_fqn(sprintf("___ResetButton%d",$action)),
93 $action,
101 $action = pdf_create_action($this->pdf,
110 $action,
/plugin/gdpr/
H A Dcli.php48 $action = plugin_load('action', 'gdpr_oldips');
51 $action->cleanChangelog($changelogFN);
61 $action->cleanChangelog($changelogFN);
/plugin/noiewarning/
H A DChangeLog15 * action.php: added sequence number for the WIKITEXT_PREPROCESS event
26 * action.php: added debug handler (disabled by default)
27 * action.php: reorganized by display mode
28 * action.php: now can read a file DOKU_CONF/recommended-browser.txt
/plugin/accscounter/lang/en/
H A Dmngintro.txt3 After selecting the action from the following menu, for each page, you'll see:
14 * [[?do=admin&page=accscounter&action=mng&mode=existing|Show the log of existing pages]]
16 * [[?do=admin&page=accscounter&action=mng&mode=deleted|Show the log of non-existing pages]]
18 …* [[?do=admin&page=accscounter&action=mng&mode=all|Show the log of all pages (including non-existi…
/plugin/combo/ComboStrap/
H A DSlotManagerMenuItem.php141 $action = self::EDIT_ACTION;
144 $action = self::CREATE_ACTION;
151 $html .= "<tr><td class='pe-2'>$action</td><td><a href=\"{$url->toHtmlString()}\" class=\"$class\"$style>{$secondaryPath->toAbsoluteId()}</a></td></tr>";
153 if ($action === self::EDIT_ACTION) {
/plugin/yuriigantt/src/
H A DJsonRequest.php81 switch ($this->payload->action) {
128 …if (empty($this->payload->action) || !in_array($this->payload->action, [self::ACTION_UPDATE, self:…
133 …if (empty($this->payload->action) || !in_array($this->payload->action, [self::ACTION_UPDATE, self:…
/plugin/cleanoldips/
H A Dcli.php48 $action = plugin_load('action', 'cleanoldips');
51 $action->cleanChangelog($pageid, metaFN($pageid, '.changes'));
63 $action->cleanChangelog($mediaid, mediaMetaFN($mediaid, '.changes'));
/plugin/linkback/
H A Dadmin.php18 /** @var action_plugin_linkback_display $action */
19 $action = plugin_load('action', 'linkback_display');
20 if (!$action) return; // couldn't load action plugin component
24 $action->_deleteLinkbacks($lid);
28 $action->_changeLinkbackVisibilities($lid, true);
32 $action->_changeLinkbackVisibilities($lid, false);
36 $action->_markLinkbacks($lid, false);
40 $action
[all...]
/plugin/diffpreview/
H A Daction.php63 $action =& $event->data;
66 $action == 'changes' // Greebo
68 || is_array($action) && array_key_exists('changes', $action)
/plugin/lms/
H A Daction.php65 $action = $INPUT->str('lms');
66 if (!$action) return;
72 switch ($action) {
/plugin/darcs/
H A Dadmin.php109 $my_page.='| <html><form action="'.wl($ID).'" method="get">'.
126 $my_page.='<html><form action="'.wl($ID).'" method="post">'.
173 $my_page.='| **darcs get** <html><form action="'.wl($ID).'" method="post">'.
233 '<html><form action="'.wl($ID).'" method="get">'.
269 $retval='<html><form action="'.wl($ID).'" method="get">'.
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckw3crange.js210 _ExecContentsAction : function( action, docFrag ) argument
327 if ( action == 2 ) // 2 = Clone
335 if ( action == 1 ) // 1 = Extract
356 if ( action > 0 && levelStartNode != endNode ) // action = 0 = Delete
375 if ( action == 2 ) // 2 = Clone
383 if ( action == 1 ) // 1 = Extract
395 if ( action == 2 ) // 2 = Clone.
/plugin/menuext/
H A Daction.php71 $action = ucfirst(strtolower($data['action']));
73 $class = "\\dokuwiki\\Menu\\Item\\$action";
75 msg('No menu item for action ' . hsc($action), -1, '', '', MSG_ADMINS_ONLY);
/plugin/components/lib/
H A Daction.php19 abstract public function action(); function in Doku_Action_Renderer
54 abstract public function action(); function in Doku_Action
/plugin/bpmnio/
H A Ddeleted.files1 action.php
5 action/viewer.php
/plugin/tiledblog/
H A Dscript.js12 function tiledblogAjax (action, ns) { argument
18 data: "tiledblog[action]="+action+"&tiledblog[ns]="+ns,
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/Action/
H A DDeleteDocument.php17 protected function _getMetadata(AbstractUpdateAction $action): array argument
19 return $action->getOptions([
/plugin/components/commands/
H A Dexample.php10 public function action() { return 'example'; } function in Components_Action_Example
36 public function action() { return 'example'; } function in Components_Action_Renderer_Example
/plugin/ipban/_test/
H A Dcheck.test.php49 $action = new action_plugin_ipban();
53 (bool) $this->callInaccessibleMethod($action,'isBanned', [$ip, $this->banconfig])
/plugin/tagging/script/
H A Dadmin.js13 * Trigger a backend action via AJAX and refresh page on success
54 if (actionData.action === 'delete') {
56 } else if (actionData.action === 'rename') {
110 * Injects dialog contents that match the triggered action
117 if (actionData.action === 'delete') {
120 } else if (actionData.action === 'rename') {
/plugin/database/
H A Daction.php89 if (isset($_REQUEST['action']) || isset($_REQUEST['fn']) // already in db code
98 // 1. Using an icon with name='fn[action][param(s)]' and params separated by |

12345678910>>...32