Home
last modified time | relevance | path

Searched refs:applyRecursionDecision (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/inc/TreeBuilder/
DPageTreeBuilder.php82 if ($parent instanceof Top || $this->applyRecursionDecision($parent, 0)) {
135 if ($depth !== 0 && $this->applyRecursionDecision($node, $this->maxdepth - $depth)) {
240 protected function applyRecursionDecision(AbstractNode $node, int $depth): bool function in dokuwiki\\TreeBuilder\\PageTreeBuilder
246 return parent::applyRecursionDecision($node, $depth);
DAbstractBuilder.php246 protected function applyRecursionDecision(AbstractNode $node, int $depth): bool function in dokuwiki\\TreeBuilder\\AbstractBuilder