19 declare(strict_types=1);
30 protected \ILIAS\DI\UIServices
$ui;
33 protected array
$nr = [];
39 $this->
ui = $DIC->ui();
45 string $a_parent =
"0" 47 $this->nodes[$a_id] = $component;
48 $this->childs[$a_parent][] = $a_id;
54 $this->auto_numbers = $auto;
62 if (isset($this->childs[0]) && count($this->childs[0]) > 0) {
64 foreach ($this->childs[0] as $child) {
65 $items[] = $this->
renderNode($child, $depth, $nr);
67 $listing = $this->
ui->factory()->listing()->unordered($items);
68 return $this->
ui->renderer()->render($listing);
83 if (!isset($nr[$depth])) {
90 if ($this->auto_numbers) {
91 for ($i = 1; $i <= $depth; $i++) {
92 $nr_str .= $sep . $nr[$i];
96 $html = $nr_str .
" " . $this->
ui->renderer()->render($this->nodes[$a_id]);
97 $this->nr[$a_id] = $nr_str;
99 if (isset($this->childs[$a_id]) && count($this->childs[$a_id]) > 0) {
101 foreach ($this->childs[$a_id] as $child) {
102 $childs[] = $this->
renderNode($child, $depth + 1, $nr);
104 $html .= $this->
ui->renderer()->render(
105 $this->
ui->factory()->listing()->unordered($childs)
108 unset($nr[$depth + 1]);
Interface Observer Contains several chained tasks and infos about them.
node(\ILIAS\UI\Component\Component $component, string $a_id, string $a_parent="0")
renderNode(string $a_id, int $depth, array &$nr)