Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/inc/Utf8/
DAsian.php74 * @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/
DWordblock.php32 $sep = '';
34 $this->pattern .= $sep . '(?<=\b)(?i)' . Lexer::escape($badword) . '(?-i)(?=\b)';
35 $sep = '|';
DSmiley.php26 $sep = '';
28 $this->pattern .= $sep . '(?<=\W|^)' . Lexer::escape($smiley) . '(?=\W|$)';
29 $sep = '|';
DEntity.php27 $sep = '';
29 $this->pattern .= $sep . Lexer::escape($entity);
30 $sep = '|';
/dokuwiki/lib/plugins/extension/
DGui.php42 * @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/
Dcommon.php352 * @param string $sep series of pairs are separated by this character
356 function buildURLparams($params, $sep = '&amp;') 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 = '&amp;') 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 …]
Dtemplate.php789 * @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/
DphpQuery-onefile.php5075 $sep = strpos($options['url'], '?')
5077 $options['url'] .= "$sep$jsonpCallbackParam=?";