Home
last modified time | relevance | path

Searched full:before (Results 1 – 25 of 173) sorted by relevance

1234567

/dokuwiki/inc/Search/
H A DMetadataSearch.php37 * @param int|string|null $before only show results with mtime before this date,
50 int|string|null $before = null
57 'before' => $before
110 $pages = static::filterPages($pages, false, $data['after'], $data['before']);
227 * @param int|string|null $before only keep pages modified before this date
234 int|string|null $before = null
237 if ($before) $before = is_int($before) ? $before : strtotime($before);
239 … return array_filter($pages, static function ($value, $id) use ($ignorePerms, $after, $before) {
248 if ($after || $before) {
251 if ($before && $before < $mTime) return false;
H A DFulltextSearch.php53 * @param int|string|null $before only show results with mtime before this date,
63 int|string|null $before = null
72 'before' => $before
112 $docs = MetadataSearch::filterPages($docs, false, $data['after'], $data['before']);
/dokuwiki/inc/Ui/
H A DSearchState.php27 if (!isset($parsedQuery['before'])) {
28 $this->parsedQuery['before'] = $INPUT->str('max');
75 * @param $before
79 public function withTimeLimitations($after, $before) argument
83 $parsedQuery['before'] = $before;
133 if ($parsedQuery['before']) {
134 $hrefAttributes['max'] = $parsedQuery['before'];
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_diff.css109 .dokuwiki .diffnav a:before {
118 .dokuwiki .diffnav a.diffprevrev:before {
121 .dokuwiki .diffnav a.diffnextrev:before,
122 .dokuwiki .diffnav a.difflastrev:before {
125 .dokuwiki .diffnav a.diffbothprevrev:before {
128 .dokuwiki .diffnav a.diffbothnextrev:before {
/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.php54 * advise all registered BEFORE handlers of this event
75 $EVENT_HANDLER->process_event($this, 'BEFORE');
78 … ->log($this->name . ':BEFORE event triggered before event system was initialized');
100 log($this->name . ':AFTER event triggered before event system was initialized');
/dokuwiki/lib/plugins/logviewer/
H A Dscript.js22 $dl.before($filter);
24 $filter.before(LANG.plugins.logviewer.filter + ' ');
/dokuwiki/_test/tests/inc/
H A Devents_nested.test.php16 $EVENT_HANDLER->register_hook('NESTED_EVENT', 'BEFORE', null,
26 $EVENT_HANDLER->register_hook('NESTED_EVENT', 'BEFORE', null,
H A DPageUtilsIsHiddenPage.test.php39 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'BEFORE', $this, 'alwaysHide');
51 $EVENT_HANDLER->register_hook('PAGEUTILS_ID_HIDEPAGE', 'BEFORE', $this, 'showBefore');
/dokuwiki/lib/plugins/testing/lang/en/
H A Dsettings.php5 $lang['schnibble'] = 'Turns on the schnibble before the frobble is used';
/dokuwiki/lib/plugins/extension/lang/en/
H A Dintro_plugins.txt1 … Plugin updates are shown here as well, be sure to read the plugin's documentation before updating.
/dokuwiki/_test/tests/lib/exe/
H A Dajax_requests.test.php78 $EVENT_HANDLER->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', null,
87 echo "captured event BEFORE\n";
107 // BEFORE
120 $this->assertEquals("captured event BEFORE\ncaptured event AFTER", $response->getContent());
/dokuwiki/.github/workflows/
H A DautoFix.yml52 …e changes before merging. Please note that unit tests are not run for automated pull requests - so…
/dokuwiki/bin/
H A Drender.php16 * set up before rendering, but should work for most or even all standard
36 'set up before rendering, but should work for most or even all standard ' .
/dokuwiki/inc/Action/
H A DCheck.php10 * Adds some debugging info before aborting to show
H A DSearch.php73 $before = $INPUT->str('max');
79 $before
87 $before
/dokuwiki/_test/tests/Search/
H A DMetadataSearchTest.php115 // after: page mtime is before the threshold → filtered
123 // before: page mtime is after the threshold → filtered
127 // before: page mtime is before the threshold → kept
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DTwistedEdwards.php107 throw new \RuntimeException('setModulo needs to be called before this method');
125 throw new \RuntimeException('setModulo needs to be called before this method');
161 throw new \RuntimeException('setModulo needs to be called before this method');
165 throw new \RuntimeException('setBasePoint needs to be called before this method');
H A DMontgomery.php112 throw new \RuntimeException('setModulo needs to be called before this method');
136 throw new \RuntimeException('setModulo needs to be called before this method');
152 throw new \RuntimeException('setModulo needs to be called before this method');
156 throw new \RuntimeException('setBasePoint needs to be called before this method');
172 throw new \RuntimeException('setModulo needs to be called before this method');
/dokuwiki/lib/plugins/config/lang/en/
H A Dintro.txt7 Remember to press the **Save** button before leaving this page otherwise your changes will be lost.
/dokuwiki/lib/plugins/authad/
H A Daction.php24 $controller->register_hook('AUTH_LOGIN_CHECK', 'BEFORE', $this, 'handleAuthLoginCheck');
25 $controller->register_hook('FORM_LOGIN_OUTPUT', 'BEFORE', $this, 'handleFormLoginOutput');
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DREADME.md11 - Opened up methods for checking the "local part" (the bit before the `@`) and the "domain part" (a…
54 // "test" is technically a valid string to have before the "@" in an email address
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A DUniversalFeedCreator.php148 * before anything else, especially before you do the time consuming task to build the feed
156 …* @param int $timeout optional the timeout in seconds before a cached version is refreshed (de…
/dokuwiki/lib/plugins/revert/lang/en/
H A Dlang.php17 script times out before finishing, you need to revert in smaller
/dokuwiki/inc/
H A Ddeprecated.php336 * @param int|string|null $before only show results before this date
341 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null) argument
345 …urn (new dokuwiki\Search\FulltextSearch())->pageSearch($query, $highlight, $sort, $after, $before);
385 * @param int|string|null $before
390 function ft_pageLookup($id, $in_ns = false, $in_title = false, $after = null, $before = null) argument
393 …return (new dokuwiki\Search\MetadataSearch())->pageLookup($id, $in_ns, $in_title, $after, $before);

1234567