Home
last modified time | relevance | path

Searched refs:FileSystems (Results 1 – 25 of 82) sorted by relevance

1234

/plugin/combo/ComboStrap/
H A DWikiFileSystem.php42 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());
107 // and not FileSystems::isDirectory($path->toLocalPath());
140 return FileSystems::closest($path->toLocalPath(), $lastFullName);
149 FileSystems
[all...]
H A DLocalFileSystem.php44 $mime = FileSystems::getMime($path);
154 case FileSystems::CONTAINER:
155 if (FileSystems::isDirectory($childPath)) {
159 case FileSystems::LEAF:
160 if (!FileSystems::isDirectory($childPath)) {
165 LogUtility::internalError("The type of file ($type) is unknown. It should be `" . FileSystems::CONTAINER . "` or `" . FileSystems::LEAF . "`");
188 if (FileSystems::isDirectory($path)) {
190 if (FileSystems::exists($closest)) {
202 if (FileSystems
[all...]
H A DMarkupFileSystem.php30 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 DTemplateEngine.php82 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
[all...]
H A DThirdMediaLink.php41 $extension = FileSystems::getMime($path);
47 if (!FileSystems::exists($path)) {
68 $mime = FileSystems::getMime($path);
H A DFileSystems.php9 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 DDictionary.php16 if (!FileSystems::exists($path)) {
19 $jsonContent = FileSystems::getContent($path);
H A DIFetcherLocalImage.php24 $mime = FileSystems::getMime($path);
64 return FileSystems::getCacheBuster($this->getSourcePath());
H A DCacheExpirationDate.php55 if (!FileSystems::exists($path)) {
69 $expirationTime = FileSystems::getCreationTime($path);
H A DSvgImageLink.php207 if (!FileSystems::exists($imagePath)) {
214 $imageSize = FileSystems::getSize($imagePath);
251 $imgHTML = FileSystems::getContent($fetchPath);
H A DModificationDate.php34 $modificationTime = FileSystems::getModifiedTime($this->getResource()->getPathObject());
102 return FileSystems::getModifiedTime($this->getResource()->getPathObject());
H A DPathTreeNode.php19 * Build the tree from the file systems with the {@link FileSystems::getChildren()}
30 * Build the tree from the file systems with the {@link FileSystems::getChildren()}
39 $childrenPath = FileSystems::getChildren($parentPath);
47 if (FileSystems::isDirectory($childPath)) {
H A DIconDownloader.php234 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 DCacheLog.php37 if (!FileSystems::exists($contentCachePath)) {
41 FileSystems::delete($contentCachePath);
/plugin/combo/action/
H A Dslottemplate.php9 use ComboStrap\FileSystems; alias
54 if (!FileSystems::exists($pageHeaderPath)) {
58 $event->data["tpl"] = FileSystems::getContent($pageHeaderPath);
H A Dlang.php8 use ComboStrap\FileSystems; alias
79 if (!FileSystems::exists($page->getPathObject())) {
96 if (!FileSystems::exists($page->getPathObject())) {
H A Dstaticresource.php7 use ComboStrap\FileSystems; alias
166 if (!FileSystems::exists($mediaToSend)) {
283 $mime = FileSystems::getMime($mediaToSend);
321 http_rangeRequest($filePointer, FileSystems::getSize($mediaToSend), $mime->toString());
361 $etagString = FileSystems::getModifiedTime($mediaFile)->format('r');
H A Dmetafacebook.php10 use ComboStrap\FileSystems; alias
144 if (FileSystems::exists($dokuPath)) {
167 if (!FileSystems::exists($path)) {
172 $mime = FileSystems::getMime($path);
H A Dmetatwitter.php16 use ComboStrap\FileSystems; alias
110 if (!FileSystems::exists($page)) {
167 if (!FileSystems::exists($twitterImagePath)) {
H A Dindexer.php21 use ComboStrap\FileSystems;
111 if (!FileSystems::exists($page)) {
20 use ComboStrap\FileSystems; global() alias
H A Dpagesystemmutation.php9 use ComboStrap\FileSystems; alias
95 if (!FileSystems::exists($file) && $rev === false) {
H A Dlinkmove.php9 use ComboStrap\FileSystems; alias
49 if (!FileSystems::exists($lockFile)) {
52 $lockFileDateTimeModified = FileSystems::getModifiedTime($lockFile);
H A Dlinkwizard.php6 use ComboStrap\FileSystems; alias
135 if (!FileSystems::exists($page->getPathObject())) {
/plugin/combo/ComboStrap/Meta/Field/
H A DPageImagePath.php8 use ComboStrap\FileSystems; alias
70 if (!FileSystems::exists($path)) {
H A DFeaturedRasterImage.php6 use ComboStrap\FileSystems; alias
63 $mime = FileSystems::getMime($wikiPath);

1234