2 declare(strict_types=1);
23 $tpl_name =
"tpl.tree.html";
26 $tpl->setVariable(
"ARIA_LABEL", $component->getLabel());
29 $environment = $component->getEnvironment();
32 foreach ($component->getData() as $record) {
34 $component->getRecursion(),
36 $component->getEnvironment()
40 $nodes_html = $default_renderer->render($nodes);
41 $tpl->setVariable(
'NODES', $nodes_html);
43 $highlight_node_on_click = $component->getHighlightOnNodeClick();
44 $component = $component->withAdditionalOnLoadCode(
45 function ($id) use ($highlight_node_on_click) {
46 return "il.UI.tree.init('$id', $highlight_node_on_click)";
51 $tpl->setVariable(
"ID", $id);
70 $node = $recursion->build(
76 foreach ($recursion->getChildren($record, $environment) as $sub_record) {
77 $node = $node->withAdditionalSubnode(
78 $this->
buildNode($recursion, $sub_record, $environment)
90 parent::registerResources($registry);
91 $registry->register(
'./src/UI/templates/js/Tree/tree.js');
100 Tree\Expandable::class
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
checkComponent(Component $component)
Check if a given component fits this renderer and throw if that is not the case. ...
Class ChatMainBarProvider .
getComponentInterfaceName()
registerResources(\ILIAS\UI\Implementation\Render\ResourceRegistry $registry)
render(Component\Component $component, RendererInterface $default_renderer)
This describes a Tree Control.
Interface for mapping data-structures to the Tree.
getUIFactory()
Get a UI factory.
buildNode(Tree\TreeRecursion $recursion, $record, $environment)
Trigger TreeRecursion::build and recurse into hierarchy by checking for further children of the recor...
getTemplate($name, $purge_unfilled_vars, $purge_unused_blocks)
Get template of component this renderer is made for.
Base class for all component renderers.
bindJavaScript(JavaScriptBindable $component)
Bind the component to JavaScript.