Searched refs:dokuPath (Results 1 – 12 of 12) sorted by relevance
/plugin/combo/ComboStrap/ |
H A D | MediaLink.php | 535 $dokuPath = $media->getPath(); 536 if ($dokuPath !== null) { 537 return $dokuPath->getDokuwikiId(); 594 $dokuPath = $media->getPath(); 595 if (!($dokuPath instanceof DokuPath)) { 606 $dokuPath->getDokuwikiId(), 610 'rev' => $dokuPath->getRevision() 625 $dokuPath->getDokuwikiId(), 629 'rev' => $dokuPath->getRevision() 649 $dokuPath->getDokuwikiId(), [all …]
|
H A D | PageImage.php | 42 $dokuPath = DokuPath::createMediaPathFromId($image); 43 $image = Image::createImageFromPath($dokuPath);
|
H A D | CacheReportHtmlDataBlockArray.php | 51 $dokuPath = $result->getPath()->toDokuPath(); 52 $cacheFile = $dokuPath->getDokuwikiId();
|
H A D | FsWikiUtility.php | 60 $dokuPath = DokuPath::createPagePathFromPath($path); 61 $relativeFileSystemPath = str_replace(":", "/", $dokuPath->getDokuwikiId());
|
H A D | Page.php | 166 private $dokuPath; variable in ComboStrap\\Page 200 $this->dokuPath = DokuPath::createPagePathFromPath($absolutePath); 216 $id = page_findnearest($this->dokuPath->getLastNameWithoutExtension(), $useAcl); 217 if ($id !== false && $id !== $this->dokuPath->getDokuwikiId()) { 219 $this->dokuPath = DokuPath::createPagePathFromPath($absolutePath); 856 $namespace = $this->dokuPath->getParent(); 996 return $this->dokuPath->getParent()->toString(); 1109 return $this->dokuPath->toUriString(); 1927 return $this->dokuPath;
|
H A D | Site.php | 46 $dokuPath = DokuPath::createMediaPathFromId($logoPath); 47 if (FileSystems::exists($dokuPath)) { 49 $logos[] = Image::createImageFromPath($dokuPath);
|
H A D | Image.php | 75 $dokuPath = DokuPath::createMediaPathFromId($imageId, $rev); 76 return self::createImageFromPath($dokuPath, $attributes);
|
H A D | DokuPath.php | 370 public static function toFileSystemSeparator($dokuPath) argument 372 return str_replace(":", self::DIRECTORY_SEPARATOR, $dokuPath);
|
/plugin/combo/action/ |
H A D | metapageimage.php | 47 $dokuPath = $pageImage->getImage()->getPath(); 48 …Store::CURRENT_METADATA]['relation']['media'][$dokuPath->getDokuwikiId()] = FileSystems::exists($d…
|
H A D | pageprotection.php | 136 $dokuPath = DokuPath::createFromUnknownRoot($id); 137 if ($dokuPath->isPage()) { 173 $dokuPath = DokuPath::createFromUrl($url); 174 $page = Page::createPageFromId($dokuPath->getDokuwikiId());
|
H A D | svg.php | 116 $dokuPath = DokuPath::createMediaPathFromId($id,$rev); 119 $svgImage = new ImageSvg($dokuPath, $tagAttributes);
|
H A D | staticresource.php | 133 $dokuPath = $mediaToSend->toDokuPath(); 139 if (!$dokuPath->isPublic()) {
|