2 declare(strict_types=1);
52 $this->label = $label;
69 $this->subnodes[] = $node;
78 return $this->subnodes;
87 $clone->expanded = $expanded;
96 return $this->expanded;
104 $clone = clone $this;
105 $clone->highlighted = $highlighted;
114 return $this->highlighted;
withExpanded(bool $expanded)
Set $expanded to true to have this node expanded on loading.
withOnClick(Signal $signal)
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
This describes a Tree Node.
trait ComponentHelper
Provides common functionality for component implementations.
withHighlighted(bool $highlighted)
getLink()
Get the URI object that is added as link in the UI.
withAdditionalSubnode(INode $node)
appendTriggeredSignal(Component\Signal $signal, $event)
Append a triggered signal to other signals of the same event.
The scope of this class is split ilias-conform URI's into components.
appendOnClick(Signal $signal)
isExpanded()
Should this Node be expanded on loading?
getSubnodes()
Get all Nodes under this one.Node[]
getLabel()
Get the label of this Node.
__construct(string $label, URI $link=null)
withTriggeredSignal(Component\Signal $signal, $event)
Add a triggered signal, replacing any other signals registered on the same event. ...