ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
TreeRecursion.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types=1);
3 
4 /* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
5 
7 
23 interface TreeRecursion
24 {
32  public function getChildren(
33  $record,
34  $environment = null
35  ) : array;
36 
45  public function build(
46  Node\Factory $factory,
47  $record,
48  $environment = null
49  ) : Node\Node;
50 }
build(Node\Factory $factory, $record, $environment=null)
Build and return a Node.
This describes a Tree Node.
Definition: Node.php:15
getChildren( $record, $environment=null)
Get a list of records (that list can also be empty).
Interface for mapping data-structures to the Tree.
$factory
Definition: metadata.php:58