Searched refs:sep (Results 1 – 8 of 8) sorted by relevance
/dokuwiki/inc/Utf8/ |
D | Asian.php | 74 * @param string $sep the separator to use 77 public static function separateAsianWords($text, $sep = ' ') argument 80 $asia = @preg_replace('/(' . self::REGEXP . ')/u', $sep . '\1' . $sep, $text);
|
/dokuwiki/inc/Parsing/ParserMode/ |
D | Wordblock.php | 32 $sep = ''; 34 $this->pattern .= $sep . '(?<=\b)(?i)' . Lexer::escape($badword) . '(?-i)(?=\b)'; 35 $sep = '|';
|
D | Smiley.php | 26 $sep = ''; 28 $this->pattern .= $sep . '(?<=\W|^)' . Lexer::escape($smiley) . '(?=\W|$)'; 29 $sep = '|';
|
D | Entity.php | 27 $sep = ''; 29 $this->pattern .= $sep . Lexer::escape($entity); 30 $sep = '|';
|
/dokuwiki/lib/plugins/extension/ |
D | Gui.php | 42 * @param string $sep seperator to build the URL 46 public function tabURL($tab = '', $params = [], $sep = '&', $absolute = false) argument 59 return wl($ID, array_merge($defaults, $params), $absolute, $sep);
|
/dokuwiki/inc/ |
D | common.php | 352 * @param string $sep series of pairs are separated by this character 356 function buildURLparams($params, $sep = '&') argument 358 return http_build_query($params, '', $sep, PHP_QUERY_RFC3986); 548 * @param string $sep parameter separator 552 function exportlink($id = '', $format = 'raw', $urlParameters = '', $abs = false, $sep = '&') argument 556 $urlParameters = buildURLparams($urlParameters, $sep); 558 $urlParameters = str_replace(',', $sep, $urlParameters); 571 if ($urlParameters) $xlink .= $sep . $urlParameters; 576 $xlink .= DOKU_SCRIPT . '?do=export_' . $format . $sep . 'id=' . $id; 577 if ($urlParameters) $xlink .= $sep . $urlParameters; [all …]
|
D | template.php | 789 * @param string $sep Separator between entries 795 function tpl_breadcrumbs($sep = null, $return = false) argument 804 if (is_null($sep)) $sep = '•'; 810 $crumbs_sep = ' <span class="bcsep">' . $sep . '</span> '; 834 * @param string $sep Separator between entries 844 function tpl_youarehere($sep = null, $return = false) argument 854 if (is_null($sep)) $sep = ' » '; 874 $out .= $sep . tpl_pagelink($page, null, true); 892 $out .= $sep;
|
/dokuwiki/_test/core/ |
D | phpQuery-onefile.php | 5075 $sep = strpos($options['url'], '?') 5077 $options['url'] .= "$sep$jsonpCallbackParam=?";
|