Home
last modified time | relevance | path

Searched refs:startPath (Results 1 – 5 of 5) sorted by relevance

/template/strap/ComboStrap/
DFsWikiUtility.php172 public static function getPages($startPath, int $depth = 0): array argument
175 if ($startPath === null || $startPath === "") {
188 if (page_exists($startPath)) {
190 'id' => $startPath,
191 'ns' => getNS($startPath),
192 'title' => p_get_first_heading($startPath, false),
193 'size' => filesize(wikiFN($startPath)),
194 'mtime' => filemtime(wikiFN($startPath)),
202 $startPath = str_replace(':', '/', $startPath);
220 $startPath
DOutlineSection.php364 …* @param MarkupPath|null $startPath - the path from where the page bundle is started to see if the…
369 public function updatePageLinkToInternal(?MarkupPath $startPath): OutlineSection argument
392 $parentPath = $startPath->toWikiPath()->getParent()->toAbsoluteId();
410 $updateLink = function (OutlineSection $parentSection) use ($startPath) {
412 $child->updatePageLinkToInternal($startPath);
DRouter.php308 $startPath = MarkupPath::createMarkupFromId($startPage);
309 if (FileSystems::exists($startPath)) {
310 return $redirectBuilder->setTargetMarkupPath($startPath)->build();
315 $startPath = MarkupPath::createMarkupFromId($startPage);
316 if (FileSystems::exists($startPath)) {
317 return $redirectBuilder->setTargetMarkupPath($startPath)->build();
DFetcherPageBundler.php142 $startPath = $this->getStartPath();
144 $this->buildOutlineRecursive($startPath, $actualLevel);
/template/strap/
Dcli.php217 $startPath = $this->getStartPath($args);
231 $this->index($startPath, $force, $depth);
234 $startPath = $this->getStartPath($args);
235 $this->frontmatter($startPath, $depth);
241 $startPath = $this->getStartPath($args);
244 $this->analytics($startPath, $output, $depth);
579 $startPath = $args[0];
580 if (!in_array($startPath, [":", "/"])) {
582 $startPath = cleanID($startPath);
589 return $startPath;