/plugin/combo/ComboStrap/ |
H A D | Locale.php | 15 private string $separator = "_"; variable in ComboStrap\\Locale 17 public static function createForPage(MarkupPath $page, string $separator = "_"): Locale argument 20 ->setSeparator($separator) 53 return $lang . $this->separator . strtoupper($country); 83 return Site::getLocale($this->separator); 99 public function setSeparator(string $separator): Locale argument 101 $this->separator = $separator;
|
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/ |
H A D | Text.php | 38 …truncate_filter(Twig_Environment $env, $value, $length = 30, $preserve = false, $separator = '...') argument 50 return rtrim(mb_substr($value, 0, $length, $env->getCharset())).$separator; 56 …function twig_wordwrap_filter(Twig_Environment $env, $value, $length = 80, $separator = "\n", $pre… argument 63 $pieces = mb_split($separator, $value); 75 return implode($separator, $sentences); 78 …truncate_filter(Twig_Environment $env, $value, $length = 30, $preserve = false, $separator = '...') argument 87 return rtrim(substr($value, 0, $length)).$separator; 93 …function twig_wordwrap_filter(Twig_Environment $env, $value, $length = 80, $separator = "\n", $pre… argument 95 return wordwrap($value, $length, $separator, !$preserve);
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
H A D | SeparatorFilter.php | 27 private $separator; variable in Assetic\\Filter\\SeparatorFilter 32 * @param string $separator Separator to use between assets 34 public function __construct($separator = ';') argument 36 $this->separator = $separator; 45 $asset->setContent($asset->getContent() . $this->separator);
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Naming/ |
H A D | CamelCaseNamingStrategy.php | 19 private $separator; variable in JMS\\Serializer\\Naming\\CamelCaseNamingStrategy 26 public function __construct(string $separator = '_', bool $lowerCase = true) argument 28 $this->separator = $separator; 37 $name = preg_replace('/[A-Z]+/', $this->separator . '\\0', $property->name);
|
/plugin/authfacebook/lib/Helpers/ |
H A D | FacebookRedirectLoginHelper.php | 119 * @param string $separator The separator to use in http_build_query(). 123 private function makeUrl($redirectUrl, array $scope, array $params = [], $separator = '&') argument 128 …return $this->oAuth2Client->getAuthorizationUrl($redirectUrl, $state, $scope, $params, $separator); 136 * @param string $separator The separator to use in http_build_query(). 140 public function getLoginUrl($redirectUrl, array $scope = [], $separator = '&') argument 142 return $this->makeUrl($redirectUrl, $scope, [], $separator); 150 * @param string $separator The separator to use in http_build_query(). 156 public function getLogoutUrl($accessToken, $next, $separator = '&') argument
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/ |
H A D | JoinProcessor.php | 17 public function __construct(string $field, string $separator) argument 20 $this->setSeparator($separator); 24 * Set the separator. 28 public function setSeparator(string $separator): self argument 30 return $this->setParam('separator', $separator);
|
H A D | SplitProcessor.php | 20 public function __construct(string $field, string $separator) argument 23 $this->setSeparator($separator); 27 * Set the separator. 31 public function setSeparator(string $separator): self argument 33 return $this->setParam('separator', $separator);
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/ |
H A D | CacheBustingWorker.php | 25 private $separator; variable in Assetic\\Factory\\Worker\\CacheBustingWorker 27 public function __construct($separator = '-') argument 29 $this->separator = $separator; 44 $replace = $this->separator.$this->getHash($asset, $factory).'.'.$search;
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/ |
H A D | TableCellRenderer.php | 33 $separator = $node->getType() === TableCell::TYPE_HEADER ? '^' : '|'; 48 $result = $separator . $lmargin . $DWRenderer->renderNodes($node->children()) . $rmargin;
|
/plugin/lastpages/ |
H A D | syntax.php | 82 $separator = $this->getConf('listsep'); 83 if (empty($separator)) 84 $separator = '•'; 87 $docdata = $this->_formatLatestPages($type_of_list, $separator); // format list of pages 132 function _formatLatestPages($type_of_list, $separator) { argument 143 $sep = ' '.$separator.' ';
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | join.rst | 15 The separator between elements is an empty string per default, but you can 23 A second parameter can also be provided that will be the separator used between 34 * ``glue``: The separator 35 * ``and``: The separator for the last pair of input items
|
/plugin/gtime/gtlib/util/ |
H A D | GTBaseX.php | 120 …* @param string $separator if separator is not null it's inserted into the encoded string at freq… 124 …public function encode($bytes, $offset = null, $length = null, $separator = null, $frequency = nul… argument 153 if ($separator == null) { 158 for ($i = 0; $i < strlen($separator); $i++) { 159 $c = $separator{$i}; 179 $result .= $separator; 203 $result .= $separator;
|
/plugin/fedauth/ |
H A D | common.php | 26 * @param string $separator separator between pairs 32 function array_implode($array, $glue='=', $separator='&', $b1='',$b2='') { argument 37 $val = array_implode($val, $glue, $separator.$b1.$key.$b2, '[', ']'); 42 return implode($separator, $string);
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/ |
H A D | TableRowRenderer.php | 39 $separator = $childRenderer->getInnerSeparator(); 41 return new HtmlElement('tr', $attrs, $separator . $childRenderer->renderNodes($node->children()) . $separator);
|
H A D | TableRenderer.php | 39 $separator = $childRenderer->getInnerSeparator(); 43 return new HtmlElement('table', $attrs, $separator . \trim($children) . $separator);
|
H A D | TableSectionRenderer.php | 43 $separator = $childRenderer->getInnerSeparator(); 47 return new HtmlElement($tag, $attrs, $separator . $childRenderer->renderNodes($node->children()) . $separator);
|
/plugin/scrollticker/ |
H A D | script.js | 28 var separator = JSINFO['plugin_scrollticker']['separator']; 29 separator = separator.replace(/\s/g, '\xa0'); //make spaces safe 34 jQuery(this).html(liTxt + separator); // add separator between items
|
/plugin/findologicxmlexport/vendor/twig/extensions/doc/ |
H A D | text.rst | 34 The default separator is "\\n", but you can easily change that by providing one: 57 The example would output ``Hello...``, as ``...`` is the default separator. 60 parameter to ``true``. If the last Word is on the the separator, truncate 69 If you want to change the separator, just set the third parameter to 70 your desired separator.
|
/plugin/revealjs/plugin/markdown/ |
H A D | markdown.js | 92 options.separator = options.separator || DEFAULT_SLIDE_SEPARATOR; 129 …var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.v… 130 horizontalSeparatorRegex = new RegExp( options.separator ); 213 separator: section.getAttribute( 'data-separator' ), 235 separator: section.getAttribute( 'data-separator' ), 307 function addAttributeInElement( node, elementTarget, separator ) { argument 309 var mardownClassesInElementsRegex = new RegExp( separator, 'mg' );
|
/plugin/sqlite/ |
H A D | Functions.php | 43 * @param string $separator separator added between values 45 public static function groupConcatStep(&$context, $rownumber, $string, $separator = ',') 49 'sep' => $separator, 46 GroupConcatStep(& $context, $rownumber, $string, $separator = ',') global() argument
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
H A D | AdjacencyMatrix.php | 22 public function setSeparator(string $separator = '&'): self argument 24 return $this->setParam('separator', $separator);
|
/plugin/bookmarkfile/ |
H A D | style.css | 1 .dokuwiki .bookmarkfile li.separator { 5 .dokuwiki .bookmarkfile .separator hr {
|
/plugin/refnotes/conf/ |
H A D | namespaces.dat | 1 a:11:{s:1:":";a:0:{}s:8:":biblio:";a:11:{s:10:"refnote-id";s:4:"name";s:14:"reference-base";s:4:"text";s:16:"reference-format";s:2:"[]";s:12:"multi-ref-id";s:4:"note";s:12:"note-preview";s:7:"tooltip";s:12:"note-id-base";s:4:"text";s:19:"note-id-font-weight";s:6:"normal";s:18:"note-id-font-style";s:6:"normal";s:14:"note-id-format";s:4:"none";s:14:"back-ref-caret";s:6:"prefix";s:15:"back-ref-format";s:1:"a";}s:6:":cite:";a:5:{s:16:"reference-format";s:2:"[]";s:12:"multi-ref-id";s:4:"note";s:12:"note-id-base";s:4:"text";s:14:"note-id-format";s:1:".";s:15:"back-ref-format";s:1:"a";}s:4:":dw:";a:24:{s:10:"refnote-id";s:1:"1";s:14:"reference-base";s:3:"sup";s:21:"reference-font-weight";s:6:"normal";s:20:"reference-font-style";s:6:"normal";s:16:"reference-format";s:1:")";s:15:"reference-group";s:4:"none";s:16:"reference-render";s:5:"basic";s:12:"multi-ref-id";s:3:"ref";s:12:"note-preview";s:5:"popup";s:15:"notes-separator";s:4:"100%";s:15:"note-text-align";s:7:"justify";s:14:"note-font-size";s:6:"normal";s:11:"note-render";s:5:"basic";s:12:"note-id-base";s:3:"sup";s:19:"note-id-font-weight";s:6:"normal";s:18:"note-id-font-style";s:6:"normal";s:14:"note-id-format";s:1:")";s:14:"back-ref-caret";s:4:"none";s:13:"back-ref-base";s:3:"sup";s:20:"back-ref-font-weight";s:4:"bold";s:19:"back-ref-font-style";s:6:"normal";s:15:"back-ref-format";s:4:"note";s:18:"back-ref-separator";s:1:",";s:7:"scoping";s:5:"reset";}s:4:":fn:";a:0:{}s:9:":harvard:";a:11:{s:14:"reference-base";s:4:"text";s:16:"reference-format";s:2:"()";s:16:"reference-render";s:7:"harvard";s:12:"multi-ref-id";s:4:"note";s:15:"notes-separator";s:4:"none";s:11:"note-render";s:7:"harvard";s:12:"note-id-base";s:4:"text";s:14:"note-id-format";s:1:".";s:14:"back-ref-caret";s:5:"merge";s:15:"back-ref-format";s:1:"a";s:18:"back-ref-separator";s:4:"none";}s:4:":mw:";a:24:{s:10:"refnote-id";s:1:"1";s:14:"reference-base";s:3:"sup";s:21:"reference-font-weight";s:6:"normal";s:20:"reference-font-style";s:6:"normal";s:16:"reference-format";s:2:"[]";s:15:"reference-group";s:4:"none";s:16:"reference-render";s:5:"basic";s:12:"multi-ref-id";s:4:"note";s:12:"note-preview";s:4:"none";s:15:"notes-separator";s:4:"none";s:15:"note-text-align";s:4:"left";s:14:"note-font-size";s:7:"reduced";s:11:"note-render";s:5:"basic";s:12:"note-id-base";s:4:"text";s:19:"note-id-font-weight";s:6:"normal";s:18:"note-id-font-style";s:6:"normal";s:14:"note-id-format";s:1:".";s:14:"back-ref-caret";s:5:"merge";s:13:"back-ref-base";s:3:"sup";s:20:"back-ref-font-weight";s:4:"bold";s:19:"back-ref-font-style";s:6:"italic";s:15:"back-ref-format";s:1:"a";s:18:"back-ref-separator";s:4:"none";s:7:"scoping";s:5:"reset";}s:7:":stars:";a:5:{s:10:"refnote-id";s:1:"*";s:16:"reference-format";s:4:"none";s:12:"multi-ref-id";s:4:"note";s:12:"note-preview";s:7:"tooltip";s:15:"back-ref-format";s:1:"a";}s:7:":table:";a:4:{s:12:"multi-ref-id";s:4:"note";s:12:"note-preview";s:7:"tooltip";s:15:"notes-separator";s:4:"none";s:15:"back-ref-format";s:4:"none";}s:13:":table:alpha:";a:1:{s:10:"refnote-id";s:1:"a" (…)
|
/plugin/sequencediagram/bower_components/eve-raphael/ |
H A D | eve.js | 23 separator = /[\.\/]/, variable 144 var names = isArray(name) ? name : name.split(separator), 184 eve.separator = function (sep) { function 188 separator = new RegExp(sep); 190 separator = /[\.\/]/; 225 var names = isArray(name) ? name : Str(name).split(separator), 308 return isArray(current_event) ? current_event : current_event.split(separator); 340 names = isArray(name) ? name : Str(name).split(separator);
|
/plugin/addressbook/ |
H A D | syntax.php | 736 function buildIndex($list=false,$separator=false,$target=false){ argument 745 if (!$separator) usort($list,'contact_custom_double_sort'); 754 if ($separator !== false){ 755 if ($sep != $r[$separator]) { 756 $sep = $r[$separator]; 757 $out .= '<h3>'.$r[$separator].'</h3>'; 803 if (!in_array($separator,$allowed_separators)) $separator = false; 810 …$list =$this->getList(false,($separator == false? '': "$separator,").'surname,firstname,cfunction'… 815 if (!$separator) usort($list,'contact_custom_double_sort'); 822 if ($separator == 'department'){ [all …]
|