| /template/strap/ComboStrap/ |
| H A D | WikiFileSystem.php | 42 return FileSystems::exists($path->toLocalPath()); 52 return FileSystems::getContent($localPath); 61 return FileSystems::getModifiedTime($path->toLocalPath()); 71 return FileSystems::getCreationTime($path->toLocalPath()); 79 FileSystems::delete($path->toLocalPath()); 87 return FileSystems::getSize($path->toLocalPath()); 97 return FileSystems::createDirectory($dirPath->toLocalPath()); 140 return FileSystems::closest($path->toLocalPath(), $lastFullName); 149 FileSystems::createRegularFile($path->toLocalPath()); 159 FileSystems::setContent($path->toLocalPath(), $content);
|
| H A D | LocalFileSystem.php | 44 $mime = FileSystems::getMime($path); 154 case FileSystems::CONTAINER: 155 if (FileSystems::isDirectory($childPath)) { 159 case FileSystems::LEAF: 160 if (!FileSystems::isDirectory($childPath)) { 165 …e type of file ($type) is unknown. It should be `" . FileSystems::CONTAINER . "` or `" . FileSyste… 188 if (FileSystems::isDirectory($path)) { 190 if (FileSystems::exists($closest)) { 202 if (FileSystems::exists($closest)) {
|
| H A D | MarkupFileSystem.php | 30 return FileSystems::exists($path->getPathObject()); 39 return FileSystems::getContent($path->getPathObject()); 48 return FileSystems::getModifiedTime($path->getPathObject()); 69 $childrenPath = FileSystems::getChildren($parent, $type); 82 FileSystems::setContent($path->toLocalPath(), $content); 92 FileSystems::delete($path->toLocalPath());
|
| H A D | TemplateEngine.php | 82 FileSystems::createDirectoryIfNotExists($themePagesTemplateDirectory); 83 FileSystems::createDirectoryIfNotExists($themePagesPartialsDirectory); 89 if (FileSystems::exists($themePagesTemplateDirectory)) { 94 if (FileSystems::exists($themePagesPartialsDirectory)) { 99 if (FileSystems::exists($themeComponentsCssDirectory)) { 102 if (FileSystems::exists($themeComponentsHtmlDirectory)) { 245 $directories = FileSystems::getChildrenContainer(self::getThemeHomeAsWikiPath()); 324 FileSystems::setContent($templateFile, $templateContent); 335 if (FileSystems::exists($file)) { 348 if (FileSystems::exists($file)) {
|
| H A D | FileSystems.php | 9 class FileSystems class 82 if (FileSystems::exists($path)) { 83 FileSystems::delete($path); 177 return self::getChildren($namespacePath, FileSystems::CONTAINER); 187 return self::getChildren($namespacePath, FileSystems::LEAF); 201 $time = FileSystems::getModifiedTime($path); 280 if (FileSystems::exists($path)) {
|
| H A D | ThirdMediaLink.php | 41 $extension = FileSystems::getMime($path); 47 if (!FileSystems::exists($path)) { 68 $mime = FileSystems::getMime($path);
|
| H A D | Dictionary.php | 16 if (!FileSystems::exists($path)) { 19 $jsonContent = FileSystems::getContent($path);
|
| H A D | IFetcherLocalImage.php | 24 $mime = FileSystems::getMime($path); 64 return FileSystems::getCacheBuster($this->getSourcePath());
|
| H A D | CacheExpirationDate.php | 55 if (!FileSystems::exists($path)) { 69 $expirationTime = FileSystems::getCreationTime($path);
|
| H A D | Router.php | 55 if (FileSystems::exists($requestedMarkupPath)) { 81 if (FileSystems::exists($targetPath)) { 309 if (FileSystems::exists($startPath)) { 316 if (FileSystems::exists($startPath)) { 479 if (FileSystems::exists($markupPath)) { 575 if (FileSystems::exists($pageNameSpace)) {
|
| H A D | SvgImageLink.php | 207 if (!FileSystems::exists($imagePath)) { 214 $imageSize = FileSystems::getSize($imagePath); 251 $imgHTML = FileSystems::getContent($fetchPath);
|
| H A D | ModificationDate.php | 34 $modificationTime = FileSystems::getModifiedTime($this->getResource()->getPathObject()); 102 return FileSystems::getModifiedTime($this->getResource()->getPathObject());
|
| H A D | PathTreeNode.php | 39 $childrenPath = FileSystems::getChildren($parentPath); 47 if (FileSystems::isDirectory($childPath)) {
|
| H A D | IconDownloader.php | 234 if (FileSystems::exists($this->path)) { 235 if (FileSystems::getSize($this->path) === 0) { 236 FileSystems::delete($this->path); 458 if (!FileSystems::exists($iconDir)) { 460 FileSystems::createDirectory($iconDir); 558 $jsonContent = FileSystems::getContent($path);
|
| H A D | TemplateForWebPage.php | 243 if (!FileSystems::exists($jsPath)) { 272 if (!FileSystems::exists($path)) { 382 $icoWikiPath = FileSystems::getFirstExistingPath($iconPaths); 416 $iconPath = FileSystems::getFirstExistingPath($iconPaths); 449 $iconPath = FileSystems::getFirstExistingPath($iconPaths); 744 if (FileSystems::isDirectory($wikiPath)) { 958 $content = FileSystems::getContent($cssPath); 1103 if (!FileSystems::exists($file)) {
|
| /template/strap/action/ |
| H A D | slottemplate.php | 9 use ComboStrap\FileSystems; alias 54 if (!FileSystems::exists($pageHeaderPath)) { 58 $event->data["tpl"] = FileSystems::getContent($pageHeaderPath);
|
| H A D | lang.php | 8 use ComboStrap\FileSystems; alias 79 if (!FileSystems::exists($page->getPathObject())) { 96 if (!FileSystems::exists($page->getPathObject())) {
|
| H A D | metafacebook.php | 10 use ComboStrap\FileSystems; alias 144 if (FileSystems::exists($dokuPath)) { 167 if (!FileSystems::exists($path)) { 172 $mime = FileSystems::getMime($path);
|
| H A D | staticresource.php | 7 use ComboStrap\FileSystems; alias 195 if (!FileSystems::exists($mediaToSend)) { 312 $mime = FileSystems::getMime($mediaToSend); 350 http_rangeRequest($filePointer, FileSystems::getSize($mediaToSend), $mime->toString()); 390 $etagString = FileSystems::getModifiedTime($mediaFile)->format('r');
|
| H A D | metatwitter.php | 16 use ComboStrap\FileSystems; alias 110 if (!FileSystems::exists($page)) { 167 if (!FileSystems::exists($twitterImagePath)) {
|
| H A D | pagesystemmutation.php | 9 use ComboStrap\FileSystems; alias 95 if (!FileSystems::exists($file) && $rev === false) {
|
| H A D | indexer.php | 21 use ComboStrap\FileSystems; alias 128 if (!FileSystems::exists($page)) {
|
| H A D | linkwizard.php | 6 use ComboStrap\FileSystems; alias 135 if (!FileSystems::exists($page->getPathObject())) {
|
| /template/strap/ComboStrap/Meta/Field/ |
| H A D | PageImagePath.php | 8 use ComboStrap\FileSystems; alias 70 if (!FileSystems::exists($path)) {
|
| H A D | FeaturedRasterImage.php | 6 use ComboStrap\FileSystems; alias 63 $mime = FileSystems::getMime($wikiPath);
|