Searched refs:pathInfo (Results 1 – 9 of 9) sorted by relevance
/plugin/filelist/ |
D | file.php | 21 $pathInfo = $pathUtil->getPathInfo($path, false); variable 22 if ($pathUtil::isWikiControlled($pathInfo['path'])) { 26 if (!is_readable($pathInfo['path'])) { 29 echo 'Path not readable: ' . $pathInfo['path']; 32 [$ext, $mime, $download] = mimetype($pathInfo['path'], false); 33 $basename = basename($pathInfo['path']); 38 http_sendfile($pathInfo['path']); 39 readfile($pathInfo['path']);
|
D | Path.php | 98 $pathInfo = $paths[$match]; 99 $pathInfo['local'] = substr($path, strlen($match)); 100 $pathInfo['path'] = $pathInfo['root'] . $pathInfo['local']; 103 return $pathInfo;
|
D | syntax.php | 103 $pathInfo = $pathHelper->getPathInfo($base); 114 $pathInfo['root'], 115 $pathInfo['local'], 127 $output = new Output($renderer, $pathInfo['root'], $pathInfo['web'], $result);
|
/plugin/diagramsnet/lib/js/diagramly/ |
D | GitHubClient.js | 856 var pathInfo = document.createElement('div'); 857 pathInfo.style.marginBottom = '8px'; 859 pathInfo.appendChild(createLink(org + '/' + repo, mxUtils.bind(this, function() 867 mxUtils.write(pathInfo, ' / '); 868 pathInfo.appendChild(createLink(decodeURIComponent(ref), mxUtils.bind(this, function() 883 mxUtils.write(pathInfo, ' / '); 884 pathInfo.appendChild(createLink(tokens[index], mxUtils.bind(this, function() 893 div.appendChild(pathInfo);
|
D | GitLabClient.js | 842 var pathInfo = document.createElement('div'); 843 pathInfo.style.marginBottom = '8px'; 845 pathInfo.appendChild(createLink(org + '/' + repo, mxUtils.bind(this, function() 853 mxUtils.write(pathInfo, ' / '); 854 pathInfo.appendChild(createLink(decodeURIComponent(ref), mxUtils.bind(this, function() 869 mxUtils.write(pathInfo, ' / '); 870 pathInfo.appendChild(createLink(tokens[index], mxUtils.bind(this, function() 879 div.appendChild(pathInfo);
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/ |
D | Server.php | 364 $pathInfo = $this->httpRequest->getRawServerValue('PATH_INFO'); 368 if (!empty($pathInfo)) { 382 if (substr($decodedUri, strlen($decodedUri) - strlen($pathInfo)) === $pathInfo) { 383 $baseUri = substr($decodedUri, 0, strlen($decodedUri) - strlen($pathInfo)); 387 …EST_URI (' . $uri . ') did not end with the contents of PATH_INFO (' . $pathInfo . '). This server…
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/ |
D | Server.php | 358 $pathInfo = $this->httpRequest->getRawServerValue('PATH_INFO'); 362 if (!empty($pathInfo)) { 376 if (substr($decodedUri, strlen($decodedUri) - strlen($pathInfo)) === $pathInfo) { 377 $baseUri = substr($decodedUri, 0, strlen($decodedUri) - strlen($pathInfo)); 381 …EST_URI (' . $uri . ') did not end with the contents of PATH_INFO (' . $pathInfo . '). This server…
|
/plugin/webcode/syntax/ |
D | basis.php | 438 $pathInfo = pathinfo($externalResource); 439 $fileExtension = $pathInfo['extension'];
|
/plugin/combo/ComboStrap/Tag/ |
D | WebCodeTag.php | 345 $pathInfo = pathinfo($externalResource); 346 $fileExtension = $pathInfo['extension'];
|