Home
last modified time | relevance | path

Searched refs:explode (Results 251 – 275 of 1634) sorted by relevance

1...<<11121314151617181920>>...66

/plugin/facebook/
H A Dsyntax.php54 $params = explode(' ',substr(strtolower($match),4,-2));
55 list($type,$profile) = explode('>',array_shift($params));
/plugin/topbarsyntax/
H A Dsyntax.php51 … $params = explode(',',$match); // if you will have more parameters and choose ',' to delim them
69 $path = explode(':', $ID);
/plugin/flattr/
H A Dsyntax.php49 $lines = explode("\n", substr($match, 8, -9));
57 list($name, $value) = explode('=', $line, 2);
/plugin/combo/ComboStrap/
H A DPageKeywords.php63 $keyWords = explode(" ", $resource->getNameOrDefault());
72 $parentKeyWords = explode(" ", $parentPage->getNameOrDefault());
/plugin/oauthazure/
H A Daction.php38 str_replace('-', '+', explode('.', $idToken)[1]))));
49 $data['user'] = explode('@', $data['user'], 2)[0];
/plugin/progrecss/
H A Dsyntax.php81 $match= explode(' ', $match, 2);
89 list($key,$value)= explode('=', $pair, 2);
116 $plist= explode('/', $p, 2);
/plugin/projects/plugins/file/
H A Dplot_dependency.php69 $lines = explode("\n", $content);
71 $fields = explode('=>', $line);
90 $range = explode('-', $name);
/plugin/authgoogle/google/io/
H A DGoogle_CurlIO.php174 list($responseHeaders, $responseBody) = explode("\r\n\r\n", $respData, 2);
184 $responseHeaderLines = explode("\r\n", $rawHeaders);
187 list($header, $value) = explode(': ', $headerLine, 2);
/plugin/podcast/action/
H A Dfeed.php37 $opt['podcast_extensions'] = explode( ',', $this->getConf( 'podcast_extensions' ));
46 'blog' => explode(',', $opt['blog']),
47 'tags' => ($opt['tags'] ? explode(',', $opt['tags']) : null),
/plugin/gcalendar/inc/
H A Dgcal_read.php27 list($page_name,$page_list) = explode("(",$page,2);
31 $page_list = explode("|",$page_list);
43 list($wikipage,$section)=explode('#',$wikipage,2);
170 $cat_classes = 'gCal_cat_'.implode(' gCal_cat_',explode(' ',$cat))." ";
351 list($link,$name)=explode("|",substr($wl,2,strlen($wl)-4),2);
/plugin/tabinclude/
H A Dhelper.php47 list($class, $match) = explode('>', $match); // extract class
49 $pages = explode($page_delim,$match); // extract page names
69 $items = explode('|',$page);
97 list($page, $title) = explode('|', $page, 2);
98 list($page ,$section) = explode('#', $page, 2);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.tag.apetag.php158 $thisfile_ape_items_current['data'] = explode("\x00", $thisfile_ape_items_current['data']);
212 …list($mp3gain_undo_left, $mp3gain_undo_right, $mp3gain_undo_wrap) = explode(',', $thisfile_ape_ite…
223 …list($mp3gain_globalgain_min, $mp3gain_globalgain_max) = explode(',', $thisfile_ape_items_current[…
233 …list($mp3gain_globalgain_album_min, $mp3gain_globalgain_album_max) = explode(',', $thisfile_ape_it…
275 …list($thisfile_ape_items_current['filename'], $thisfile_ape_items_current['data']) = explode("\x00…
/plugin/publish/
H A Dhelper.php32 $id = explode(':', $id);
36 $namespace = explode(':', $namespace);
68 $dir = explode(':', $dir);
72 $valid_namespace = explode(':', $valid_namespace);
318 $allowedGroups = array_filter(explode(' ', trim($this->getConf('author groups'))));
/plugin/nftr/
H A Daction.php124 $hidePages = explode(' ', $this->getConf('pages'));
125 $hideSpaces = explode(' ', $this->getConf('spaces'));
/plugin/svgpureinsert/
H A Dsyntax.php64 list($id, $title) = explode('|', $match, 2);
77 list($id, $params) = explode('?', $id, 2);
/plugin/authorlist/
H A Dsyntax.php77 $options = explode('&',$match);
80 $tmp = explode("=",$option);
/plugin/iframe/
H A Dsyntax.php25 list($url, $alt) = array_pad(explode('|',$match,2), 2, null);
26 list($url, $param) = explode(' ',$url,2);
/plugin/confsearch/
H A Dsyntax.php46 list($pluginname,$parameters,$button)=explode('>',$params,3);
62 list($pluginname,$parameters,$button)=explode('>',$params,3);
/plugin/rating/
H A Dsyntax.php45 $match = explode(",", $match);
47 list($key, $val) = explode('=', $option);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DQuery.php42 foreach (explode('&', $str) as $kvp) {
43 $parts = explode('=', $kvp, 2);
/plugin/evesso/classes/
H A DEveOnlineAdapter.php38 …$jwt_payload = json_decode(base64_decode(str_replace('_', '/', str_replace('-','+',explode('.', $a…
42 $character_id=explode(":",$jwt_payload->sub)[2]; //Charater ID (remove the extra stuff)
/plugin/oauthgeneric/
H A Daction.php50 $grps = explode(',', $grps);
59 list($user) = explode('@', $mail);
/plugin/htmlmetatags/syntax/
H A Dsyntax.php76 return explode ( "metatag-", $match );
104 $mt = explode ( "=", $data [$i] );
/plugin/filelist/
H A Dsyntax.php51 [$path, $flags] = explode('&', $match, 2);
55 $flags = explode('&', $flags);
77 $parts = explode('/', $path);
/plugin/tagadd/
H A Daction.php42 $JSINFO['tagadd_keyCode'] = array_map('trim',explode(',',$this->getConf('keyCode')));
129 $ns=explode(':',$ID);
253 $found=explode("{{tag>",$data);
274 $oldtags_r=explode(" ",$oldstr);

1...<<11121314151617181920>>...66