Home
last modified time | relevance | path

Searched full:after (Results 1 – 25 of 160) sorted by relevance

1234567

/dokuwiki/inc/Ui/
H A DSearchState.php22 if (!isset($parsedQuery['after'])) {
23 $this->parsedQuery['after'] = $INPUT->str('min');
72 * @param $after
77 public function withTimeLimitations($after, $before) argument
80 $parsedQuery['after'] = $after;
128 if ($parsedQuery['after']) {
129 $hrefAttributes['min'] = $parsedQuery['after'];
/dokuwiki/inc/Extension/
H A DEventHandler.php44 * @param string $advise BEFORE|AFTER
62 * process the before/after event
65 * @param string $advise BEFORE or AFTER
92 * When $advise is empty, both BEFORE and AFTER events will be considered,
96 * @param string $advise BEFORE, AFTER or empty
H A DEvent.php21 * to provide the after event handlers with event results
85 * advise all registered AFTER handlers of this event
97 $EVENT_HANDLER->process_event($this, 'AFTER');
100 log($this->name . ':AFTER event triggered before event system was initialized');
193 …* @return mixed the event results value after all event processing is compl…
/dokuwiki/_test/tests/lib/exe/
H A Dajax_requests.test.php91 $EVENT_HANDLER->register_hook('AJAX_CALL_UNKNOWN', 'AFTER', null,
100 echo "captured event AFTER";
101 }, 'some passed data AFTER'
113 // AFTER
115 $this->assertEquals('some passed data AFTER', $dataTriggered_AFTER);
120 $this->assertEquals("captured event BEFORE\ncaptured event AFTER", $response->getContent());
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dprint.css64 /* display href after link */
65 a.urlextern:after,
66 a.interwiki:after,
67 a.mail:after {
H A D_tabs.css13 .dokuwiki .tabs > ul:after,
14 .dokuwiki ul.tabs:after {
/dokuwiki/_test/tests/inc/
H A DPageUtilsIsHiddenPage.test.php65 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'alwaysHide');
73 …$EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'hideBeforeWithoutPrevent');
85 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'AFTER', $this, 'showAfter');
H A Dsort_without_collator.test.php48 * an accent (diacritic) used in the language is WRONGLY sorted after Z.
61 // fallback sort WRONGLY puts ĉ/ĝ/ĥ/ĵ/ŝ/ŭ after z
70 // fallback sort WRONGLY puts ä/ö/ü/ß after z
79 // fallback sort WRONGLY puts accented letters after z
92 // fallback sort WRONGLY puts accented letters after z
H A Dindexer_pid.test.php13 …($syntaxPID), 'getPageFromPID(getPID(\'wiki:syntax\')) != \'wiki:syntax\' after getting the PID fo…
/dokuwiki/_test/tests/test/
H A Dglobals.test.php18 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
39 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
H A Dplugins_defaults.test.php14 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
H A Dhooks.test.php14 $EVENT_HANDLER->register_hook('TPL_CONTENT_DISPLAY', 'AFTER', null,
H A Dplugins.test.php22 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
H A Dreset.test.php16 $EVENT_HANDLER->register_hook('DOKUWIKI_STARTED', 'AFTER', null,
/dokuwiki/lib/styles/
H A Dall.css22 .group:after {
26 .group:after {
/dokuwiki/inc/
H A Dfulltext.php32 …* @param int|string $after only show results with mtime after this date, accepts timestap or strt…
37 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null) argument
46 'after' => $after,
164 $docs = _ft_filterResultsByTime($docs, $data['after'], $data['before']);
258 …* @param int|string $after only show results with mtime after this date, accepts timestap or st…
263 function ft_pageLookup($id, $in_ns = false, $in_title = false, $after = null, $before = null) argument
269 'after' => $after,
347 $pages = _ft_filterResultsByTime($pages, $data['after'], $data['before']);
356 …* @param int|string $after only returns results with mtime after this date, accepts timestap or …
357 …* @param int|string $before only returns results with mtime after this date, accepts timestap or …
[all …]
H A Dpreload.php.dist12 // include this after DOKU_FARMDIR if you want to use farms
/dokuwiki/inc/lang/en/
H A Dmailtext.txt12 There may be newer changes after this revision. If this
/dokuwiki/inc/Action/
H A DAbstractAction.php39 * the current user and page after checkPermissions() ran through. If it fails,
61 * Throw an Exception if a different action should be run after this step.
H A DSearch.php69 $after = $INPUT->str('min');
71 … $this->pageLookupResults = ft_pageLookup($QUERY, true, useHeading('navigation'), $after, $before);
72 … $this->fullTextResults = ft_pageSearch($QUERY, $highlight, $INPUT->str('srt'), $after, $before);
/dokuwiki/lib/plugins/testing/_test/
H A Ddummy_plugin_integration_test.test.php22 $EVENT_HANDLER->register_hook('TESTING_PLUGIN_INSTALLED', 'AFTER', null,
/dokuwiki/lib/plugins/testing/
H A Daction.php19 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'dokuwikiStarted');
/dokuwiki/inc/Parsing/ParserMode/
H A DModeInterface.php33 * Called after all calls to connectTo
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php28 * items which need a space if the sign before and after whitespace is equal.
206 // Only consider deleting whitespace if the signs before and after
225 // else after all of this convert the "whitespace" to
249 $after = substr($this->source, $this->idx, 15);
251 $msg = "$msg on line {$this->line}: '{$before}◎{$after}'";
/dokuwiki/.github/workflows/
H A Drelease-preparation.yml97 After merging, the release workflow will be triggered automatically.
99 After this is done, you need to do the following things manually:

1234567