ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Tree.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
29 abstract class Tree implements ITree\Tree
30 {
31  use ComponentHelper;
32 
36  protected $environment;
37 
41  protected $data;
42 
43  protected string $label;
44  protected ITree\TreeRecursion $recursion;
45  protected bool $highlight_nodes_on_click = false;
46  protected bool $is_sub = false;
47 
48 
49  public function __construct(string $label, ITree\TreeRecursion $recursion)
50  {
51  $this->label = $label;
52  $this->recursion = $recursion;
53  }
54 
58  public function getLabel(): string
59  {
60  return $this->label;
61  }
62 
67  {
68  $clone = clone $this;
69  $clone->environment = $environment;
70  return $clone;
71  }
72 
76  public function withData($data): ITree\Tree
77  {
78  $clone = clone $this;
79  $clone->data = $data;
80  return $clone;
81  }
82 
86  public function getEnvironment()
87  {
88  return $this->environment;
89  }
90 
94  public function getData()
95  {
96  return $this->data;
97  }
98 
102  public function getRecursion(): ITree\TreeRecursion
103  {
104  return $this->recursion;
105  }
106 
110  public function withHighlightOnNodeClick(bool $highlight_nodes_on_click): ITree\Tree
111  {
112  $clone = clone $this;
113  $clone->highlight_nodes_on_click = $highlight_nodes_on_click;
114  return $clone;
115  }
116 
120  public function getHighlightOnNodeClick(): bool
121  {
123  }
124 
128  public function isSubTree(): bool
129  {
130  return $this->is_sub;
131  }
132 
136  public function withIsSubTree(bool $is_sub): ITree\Tree
137  {
138  $clone = clone $this;
139  $clone->is_sub = $is_sub;
140  return $clone;
141  }
142 }
withEnvironment($environment)
Configure the Tree with additional information that will be relayed to TreeRecursion.
Definition: Tree.php:66
isSubTree()
Is this only a part of a tree? Needed if parts are loaded async.
Definition: Tree.php:128
withData($data)
Apply data to the Tree.
Definition: Tree.php:76
withHighlightOnNodeClick(bool $highlight_nodes_on_click)
Should a clicked node be highlighted?
Definition: Tree.php:110
getRecursion()
Get the mapping-class.
Definition: Tree.php:102
getHighlightOnNodeClick()
Is the tree configured to highlight a clicked node?
Definition: Tree.php:120
withIsSubTree(bool $is_sub)
Set this tree to be a part of a tree.Needed if parts are loaded async.
Definition: Tree.php:136
This describes a Tree Control.
Definition: Tree.php:28
Interface for mapping data-structures to the Tree.
__construct(string $label, ITree\TreeRecursion $recursion)
Definition: Tree.php:49
getEnvironment()
Get the environment.
Definition: Tree.php:86