ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
TreeRecursion.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\UI\Component\Tree;
22 
38 interface TreeRecursion
39 {
45  public function getChildren(
46  $record,
47  $environment = null
48  ): array;
49 
56  public function build(
57  Node\Factory $factory,
58  $record,
59  $environment = null
60  ): Node\Node;
61 }
build(Node\Factory $factory, $record, $environment=null)
Build and return a Node.
This describes a Tree Node.
Definition: Node.php:30
getChildren( $record, $environment=null)
Get a list of records (that list can also be empty).
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Expandable.php:21
Interface for mapping data-structures to the Tree.
$factory
Definition: metadata.php:75