Lines Matching refs:string

35      * @param string $query => original query
36 * @param string $error
38 final public function renderAsEmpty($query, $error = ''): string
52 final public function renderAsHtml(string $layout, $sorted_results, $opt, $count)
62 * @param string $query user page query
65 final public function parseNamespaceQuery(string $query): array
232 // create a string date used for sorting only
241 /* provide custom display formatting via string templating {...} */
367 private function first(string $text, $count): string
391 * @param string $key
393 private function dateFormat(string $key): string
412 * @param string $dformat
414 private function dateFormatWords(string $dformat): string
440 * @param string $query
441 * @return int[]|string[]
443 final public function pageSearch(string $query): array
478 * allow for beginning of string "^" regex on normal page search
501 * @param string $exclude true = exclude
503 private function filterNamespaces(array $pages, array $ns_qry, string $exclude): array
648 $key_cmp = strcmp((string)$left[$key], (string)$right[$key]);
652 $key_cmp = strcasecmp((string)$left[$key], (string)$right[$key]);
656 $key_cmp = strnatcmp((string)$left[$key], (string)$right[$key]);
660 $key_cmp = strnatcasecmp((string)$left[$key], (string)$right[$key]);
694 * $group_opts['dformat'][<order>] = date formatting string
790 * @return string => HTML rendered list
792 protected function renderAsHtmltable($sorted_results, $opt, $count): string
949 * @param string $id page id
951 private function proper(string $id): string
961 * @param string $id
962 * @param string $display
963 * @param string $abstract
969 string $id,
970 string $display,
971 string $abstract,
975 ): string {
1017 * @param string $link
1018 * @param string $tooltip title
1019 * @return string complete href link
1021 private function addTooltip(string $link, string $tooltip): string
1031 * @param string $text
1032 * @param string $extent c? = ? chars, w? = ? words, l? = ? lines, ~? = search up to text/char/symbol
1033 * @param string $more symbol to show if more text
1035 private function shorten(string $text, string $extent, string $more = '... '): string
1062 $result = strstr($text, (string) $cnt, true);
1077 * @return string HTML rendered list
1079 protected function renderAsHtmlcolumn(array $sorted_results, array $opt, int $count): string