Home
last modified time | relevance | path

Searched refs:parts (Results 176 – 200 of 925) sorted by relevance

12345678910>>...37

/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDuration.php80 $parts = $this->getParts();
81 $value = $parts[0];
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDuration.php80 $parts = $this->getParts();
81 $value = $parts[0];
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDuration.php80 $parts = $this->getParts();
81 $value = $parts[0];
/plugin/gdpr/action/
H A Ddelusers.php170 $parts = explode("\t", $line);
171 if ($parts[4] !== $nameToBeCleaned) {
175 $parts[4] = '_deletedUser' . $count . '_';
176 $cleanChangelogLines[] = implode("\t", $parts);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php42 $parts = explode('\\', $classname);
43 $classname = array_pop($parts);
44 $namespace = implode('\\', $parts);
/plugin/fblogin/lib/
H A Dfacebook.php154 $parts = array('fb', $this->getAppId(), $key);
156 array_unshift($parts, $this->sharedSessionID);
158 return implode('_', $parts);
/plugin/ipban/ip-lib/src/Address/
H A DIPv6.php113 $parts = explode('::', $address);
114 if (count($parts) === 2) {
115 $before = ($parts[0] === '') ? array() : explode(':', $parts[0]);
116 $after = ($parts[1] === '') ? array() : explode(':', $parts[1]);
/plugin/combo/ComboStrap/
H A DLocalPath.php362 $parts = null;
388 $parts[] = substr($workingPath, strlen($parent) + $lastSep);
408 if ($parts !== null) {
412 $parts = array_reverse($parts);
413 $realPath .= implode($this->getDirectorySeparator(), $parts);
H A DWikiPath.php157 $parts = preg_split('/' . WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT . '/', $path);
158 switch ($parts[0]) {
161 $parts = array_splice($parts, 1);
173 $parts = array_splice($parts, 1);
195 $countParts = sizeof($parts);
196 if ($countParts > 0 && $parts[$countParts - 1] === "") {
198 $parts = array_splice($parts,
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php133 $parts = explode(':', $line, 2);
134 $headers[trim($parts[0])][] = isset($parts[1])
135 ? trim($parts[1])
/plugin/odt/ODT/
H A DODTSpan.php167 $parts = explode(' ', trim($tagged, '<> '), 2);
168 $entry ['tag-open'] = $parts [0];
169 if ( isset($parts [1]) ) {
170 $entry ['attributes'] = $parts [1];
/plugin/structpublish/action/
H A Dbanner.php187 $parts = explode('.', $version);
188 $last = array_pop($parts);
193 $parts[] = $last;
195 return join('.', $parts);
/plugin/autotweet/
H A DOAuth.php358 $parts = array(
364 $parts = OAuthUtil::urlencode_rfc3986($parts);
366 return implode('&', $parts);
381 $parts = parse_url($this->http_url);
383 $port = @$parts['port'];
384 $scheme = $parts['scheme'];
385 $host = $parts['host'];
386 $path = @$parts['path'];
/plugin/fedauth/Auth/OpenID/
H A DMessage.php458 $parts = explode('.', $key, 2);
460 if (count($parts) == 2) {
461 list($prefix, $rest) = $parts;
512 $parts = explode('.', $rest, 2);
514 if (count($parts) == 2) {
515 list($ns_alias, $ns_key) = $parts;
895 $parts = explode('.', $aliased_key, 2);
897 if (count($parts) != 2) {
900 list($alias, $key) = $parts;
/plugin/infomail/
H A Dhelper.php80 $parts = explode("###template_begin###", $mailtext);
81 $mailtext = $parts[1];
/plugin/mredirect/
H A Daction.php27 $parts = explode('|', $inner);
28 $url = html_wikilink ($parts[0], $name=null, $search='');
/plugin/facebookalbum/
H A Dfacebook.php889 $parts = parse_url($currentUrl);
893 if (!empty($parts['query'])) {
895 parse_str($parts['query'], $params);
906 isset($parts['port']) &&
909 ? ':' . $parts['port'] : '';
912 return $protocol . $parts['host'] . $port . $parts['path'] . $query;
/plugin/freechat/phpfreechat/lib/json/
H A DJSON.php668 $parts = array();
670 … if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
672 $key = $this->decode($parts[1]);
673 $val = $this->decode($parts[2]);
680 … } elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
682 $key = $parts[1];
683 $val = $this->decode($parts[2]);
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DLinkTrait.php65 …if (!in_array('parseLink', array_slice($this->context, 1)) && ($parts = $this->parseLinkOrImage($m…
66 list($text, $url, $title, $offset, $key) = $parts;
96 if (($parts = $this->parseLinkOrImage(substr($markdown, 1))) !== false) {
97 list($text, $url, $title, $offset, $key) = $parts;
/plugin/farmer/
H A DDokuWikiFarmCore.php207 $parts = explode('.', implode('.', explode(':', rtrim($host, '.'))));
208 for ($j = count($parts); $j > 0; $j--) {
210 $animals[] = implode('.', array_slice($parts, 0, $j));
212 $animals[] = implode('.', array_slice($parts, 1, $j));
/plugin/markdownextra/
H A Dmarkdown.php1216 $text_stack[0] .= $parts[0];
1217 $token =& $parts[1];
1218 $text =& $parts[2];
1587 if ($parts[0] != "") {
1588 $output .= $parts[0];
1592 if (isset($parts[1])) {
1593 $output .= $this->handleSpanToken($parts[1], $parts[2]);
1594 $str = $parts[2];
2059 $parts[0] = $void . str_replace("\n", $newline, $parts[0]) . $void;
2065 if (count($parts) < 3) {
[all …]
/plugin/siteexport/exe/
H A Dsiteexportmanager.php26 $parts = array_filter(explode(DIRECTORY_SEPARATOR, $path), 'strlen'); variable
28 foreach ($parts as $part) {
/plugin/openid/Auth/OpenID/
H A DMessage.php521 $parts = explode('.', $key, 2);
524 if (count($parts) == 2) {
525 list($prefix, $rest) = $parts;
576 $parts = explode('.', $rest, 2);
578 if (count($parts) == 2) {
579 list($ns_alias, $ns_key) = $parts;
975 $parts = explode('.', $aliased_key, 2);
978 if (count($parts) != 2) {
981 list($alias, $key) = $parts;
/plugin/recaptcha2/lib/ReCaptcha/RequestMethod/
H A DSocketPost.php111 $parts = preg_split("#\n\s*\n#Uis", $response);
112 return $parts[1];
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php1297 $parts = parse_url($url);
1300 $parts['scheme'] = (isset($parts['scheme']) ? $parts['scheme'] : '');
1301 $parts['host'] = (isset($parts['host']) ? $parts['host'] : '');
1302 $parts['user'] = (isset($parts['user']) ? $parts['user'] : '');
1303 $parts['pass'] = (isset($parts['pass']) ? $parts['pass'] : '');
1304 $parts['path'] = (isset($parts['path']) ? $parts['path'] : '');
1305 $parts['query'] = (isset($parts['query']) ? $parts['query'] : '');
1306 return $parts;
1322 if ($parts = safe_parse_url($url)) {
1323 …if (($parts['scheme'] != 'http') && ($parts['scheme'] != 'https') && ($parts['scheme'] != 'ftp') &…
[all …]

12345678910>>...37