Lines Matching refs:node
149 foreach ($this->top->getDescendants() as $node) {
150 $this->nodes[$node->getId()] = $node;
213 foreach ($top->getChildren() as $node) {
214 $R->listitem_open(1, $node->hasChildren());
216 if ($node instanceof ExternalLink) {
217 $R->externallink($node->getId(), $node->getTitle());
219 $R->internallink($node->getId(), $node->getTitle());
222 if ($node->hasChildren()) {
223 $this->render($R, $node, $level + 1);
231 * @param AbstractNode $node
234 protected function applyNodeProcessor(AbstractNode $node): ?AbstractNode argument
236 if ($this->nodeProcessor === null) return $node;
237 $result = call_user_func($this->nodeProcessor, $node);
243 * @param AbstractNode $node
246 protected function applyRecursionDecision(AbstractNode $node, int $depth): bool argument
249 return (bool)call_user_func($this->recursionDecision, $node, $depth);