Home
last modified time | relevance | path

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

/dokuwiki/inc/Utf8/
H A 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/lib/plugins/extension/
H A 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/Parsing/ParserMode/
H A DWordblock.php39 $sep = '';
41 $this->pattern .= $sep . '(?<=\b)(?i)' . Lexer::escape($badword) . '(?-i)(?=\b)';
42 $sep = '|';
H A DSmiley.php33 $sep = '';
35 $this->pattern .= $sep . '(?<=\W|^)' . Lexer::escape($smiley) . '(?=\W|$)';
36 $sep = '|';
H A DEntity.php33 $sep = '';
35 $this->pattern .= $sep . Lexer::escape($entity);
36 $sep = '|';
/dokuwiki/inc/
H A Dcommon.php355 * @param string $sep series of pairs are separated by this character
359 function buildURLparams($params, $sep = '&amp;') argument
361 return http_build_query($params, '', $sep, PHP_QUERY_RFC3986);
551 * @param string $sep parameter separator
555 function exportlink($id = '', $format = 'raw', $urlParameters = '', $abs = false, $sep = '&amp;') argument
559 $urlParameters = buildURLparams($urlParameters, $sep);
561 $urlParameters = str_replace(',', $sep, $urlParameters);
574 if ($urlParameters) $xlink .= $sep . $urlParameters;
579 $xlink .= DOKU_SCRIPT . '?do=export_' . $format . $sep . 'id=' . $id;
580 if ($urlParameters) $xlink .= $sep . $urlParameters;
[all …]
H A Dtemplate.php784 * @param string $sep Separator between entries
790 function tpl_breadcrumbs($sep = null, $return = false) argument
799 if (is_null($sep)) $sep = '•';
805 $crumbs_sep = ' <span class="bcsep">' . $sep . '</span> ';
829 * @param string $sep Separator between entries
839 function tpl_youarehere($sep = null, $return = false) argument
849 if (is_null($sep)) $sep = ' » ';
869 $out .= $sep . tpl_pagelink($page, null, true);
887 $out .= $sep;
/dokuwiki/_test/core/
H A DphpQuery-onefile.php5075 $sep = strpos($options['url'], '?')
5077 $options['url'] .= "$sep$jsonpCallbackParam=?";