Home
last modified time | relevance | path

Searched refs:explode (Results 126 – 150 of 1634) sorted by last modified time

12345678910>>...66

/plugin/bibtex4dw/syntax/
H A Dcite.php61 $bibkeys = explode(',', $match);
/plugin/bibtex4dw/lib/
H A Dbibtexparser.php488 $m = explode('=', $matches[1], 2);
602 $m = explode('=',$matches[1],2);
685 $arr = explode('{', $entry);
1015 $authorarray = explode(' and ', $entry);
1026 $tmparray = explode(' ', $author);
1080 $tmparray = explode(',', $author);
1083 $vonlastarray = explode(' ', $tmparray[0]);
H A Dbibtexrender.php93 $this->_conf['file'] = explode(';',$this->plugin->getConf('file'));
94 $this->_conf['pdfdir'] = explode(';',$this->plugin->getConf('pdfdir'));
153 $bibkeys = explode(',',$optval);
/plugin/tag/
H A Daction.php77 $flags = explode(',', str_replace(" ", "", $this->getConf('pagelist_flags')));
H A Dhelper.php441 $tags = explode(' ', $tags);
/plugin/tag/syntax/
H A Dcount.php48 [$tags, $nsstring] = array_pad(explode('&', $match,2),2,''); // split to tags and allowed namespaces
49 $allowedNamespaces = explode(' ', $nsstring); // split given namespaces into an array
H A Dsearchtags.php50 return array_filter(explode('&', $flags));
78 $configflags = explode(',', str_replace(" ", "", $this->getConf('pagelist_flags')));
H A Dtagpage.php54 $match = array_pad(explode('|', $match, 2), 2, ''); // split to tags, link name and options
56 [$tag, $flag] = array_pad(explode('&', $match[0], 2), 2, '');
H A Dtopic.php50 list($match, $flags) = array_pad(explode('&', $match, 2), 2, '');
51 $flags = explode('&', $flags);
52 list($ns, $tag) = array_pad(explode('?', $match), 2, '');
119 $configflags = explode(',', str_replace(" ", "", $this->getConf('pagelist_flags')));
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php641 $node_id = explode(' ', trim($node->attr['id']))[0];
651 $node_classes = explode(' ', $node->attr['class']);
835 return in_array($pattern, explode(' ', trim($value)), true);
921 $m[3] = explode('.', $m[3]);
1237 $class = explode(' ', $class);
1262 return in_array($class, explode(' ', $this->class), true);
1284 $class = explode(' ', $class);
1288 $class = array_diff(explode(' ', $this->class), $class);
H A Dmap.php131 $a_coords = explode(",", trim(strval($coordinates)));
/plugin/recommend/helper/
H A Dmail.php48 $recipients = explode(',', $recipients);
/plugin/translation/_test/
H A DBasicTest.php130 list(, $actual) = explode('doku.php?id=', $actual);
/plugin/translation/
H A Dhelper.php36 $this->opts = explode(',', $this->opts);
64 $this->translations = array_unique(array_filter(explode(' ', $this->translations)));
/plugin/todo/syntax/
H A Dtodo.php197 $options = explode(' ', $todoargs);
207 @list($completeduser, $completeddate) = explode(':', $option, 2);
214 @list($key, $value) = explode(':', $option, 2);
H A Dlist.php58 $options = explode(' ', $options);
72 @list($key, $value) = explode(':', $option, 2);
110 $data['assigned'] = explode(',', $value);
118 $data['completeduserlist'] = explode(',', $value);
/plugin/bureaucracy/helper/
H A Dfieldmultiselect.php20 $this->opt['args'] = array_map('trim', explode('|',array_shift($args)));
23 $this->opt['value'] = array_map('trim', explode(',', $this->opt['value']));
H A Dfieldradio.php22 $this->opt['args'] = array_filter(array_map('trim', explode('|',array_shift($args))));
H A Dactionmail.php197 list($syntax,) = explode(' ', trim($codeoptions), 2);
H A Dfieldselect.php22 $this->opt['args'] = array_map('trim', explode('|',array_shift($args)));
H A Dfieldusers.php55 $users = array_map('trim', explode(',', $value));
/plugin/bureaucracy/
H A Dsyntax.php79 $lines = explode("\n", $match);
151 list($plugin, $component) = explode('_', $action['actionname']);
264 list($k, $v) = explode('=', $item, 2);
/plugin/addnewpage/
H A Dsyntax.php69 $options = explode('#', $options, 3);
72 $templates = explode(',', $options[1] ?? '');
212 $nsparts = explode(':', $ns);
253 $excludes = @explode(';', strtolower($excludes));
313 @list($template, $name) = explode('|', $nstemplate, 2);
/plugin/gitbacked/action/
H A Deditcommit.php63 $paths = explode(',',$ignorePaths);
/plugin/gitbacked/lib/
H A DGit.php586 $branchArray = explode("\n", $this->run("branch"));
608 $branchArray = explode("\n", $this->run("branch -r"));
705 $tagArray = explode("\n", $this->run("tag -l $pattern"));

12345678910>>...66