19 declare(strict_types=1);
36 $f = $DIC->ui()->factory();
40 [
'label' =>
'root',
'children' => [
41 [
'label' =>
'1',
'children' => [
42 [
'label' =>
'1.1',
'children' => [
43 [
'label' =>
'1.1.1',
'children' => []],
44 [
'label' =>
'1.1.2',
'children' => []]
46 [
'label' =>
'1.2',
'children' => []],
47 [
'label' =>
'1.3',
'children' => []]
49 [
'label' =>
'2',
'children' => [
50 [
'label' =>
'2.1',
'children' => []],
52 [
'label' =>
'3',
'children' => [
53 [
'label' =>
'3.1',
'children' => [
54 [
'label' =>
'3.1.1',
'children' => [
55 [
'label' =>
'3.1.1.1',
'children' => []],
64 public function getChildren($record, $environment =
null): array
66 return $record[
'children'];
69 public function build(
73 ): \ILIAS\UI\Component\Tree\Node\Node {
74 $label = $record[
'label'];
75 $node = $factory->simple($label);
77 if (count($record[
'children']) === 0) {
78 $node = $node->withOnClick($environment[
'modal']->getShowSignal());
81 if ($label ===
"root" || $label ===
"2") {
82 $node = $node->withExpanded(
true);
85 $node = $node->withHighlighted(
true);
92 $image =
$f->image()->responsive(
"assets/ui-examples/images/Image/mountains.jpg",
"Image source: https://stocksnap.io, Creative Commons CC0 license");
93 $page =
$f->modal()->lightboxImagePage($image,
'Mountains');
94 $modal =
$f->modal()->lightbox($page);
99 $tree =
$f->tree()->expandable(
"Label", $recursion)
100 ->withEnvironment($environment)
102 ->withHighlightOnNodeClick(
true);
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
expandable()
description: > Example for rendering an expandable tree.