Lines Matching refs:before
33 …* @param int|string $before only show results with mtime before this date, accepts timestap or str…
37 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null) argument
47 'before' => $before
259 …* @param int|string $before only show results with mtime before this date, accepts timestap or s…
263 function ft_pageLookup($id, $in_ns = false, $in_title = false, $after = null, $before = null) argument
270 'before' => $before
357 …* @param int|string $before only returns results with mtime after this date, accepts timestap or …
361 function _ft_filterResultsByTime(array $results, $after, $before) argument
363 if ($after || $before) {
365 $before = is_int($before) ? $before : strtotime($before);
373 if ($before && $before < $mTime) {