ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Tree.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\UI\Component\Tree;
22 
24 
28 interface Tree extends Component
29 {
34  public function withEnvironment($environment): Tree;
35 
39  public function getLabel(): string;
40 
44  public function withData($data): Tree;
45 
49  public function getEnvironment();
50 
54  public function getData();
55 
59  public function getRecursion(): TreeRecursion;
60 
64  public function withHighlightOnNodeClick(bool $highlight): Tree;
65 
69  public function getHighlightOnNodeClick(): bool;
70 
74  public function isSubTree(): bool;
75 
79  public function withIsSubTree(bool $is_sub): Tree;
80 }
getEnvironment()
Get the environment.
withData($data)
Apply data to the Tree.
getRecursion()
Get the mapping-class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isSubTree()
Is this only a part of a tree? Needed if parts are loaded async.
withHighlightOnNodeClick(bool $highlight)
Should a clicked node be highlighted?
getLabel()
Get the (aria-)label.
withIsSubTree(bool $is_sub)
Set this tree to be a part of a tree.
getHighlightOnNodeClick()
Is the tree configured to highlight a clicked node?
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Expandable.php:21
This describes a Tree Control.
Definition: Tree.php:28
withEnvironment($environment)
Configure the Tree with additional information that will be relayed to TreeRecursion.
Interface for mapping data-structures to the Tree.