19 declare(strict_types=1);
76 $tag = $this->dictionary->tagForElement(
77 is_array($record) ? $record[0] : $record
79 if ($tag?->isLastInTree()) {
82 if (!is_array($record)) {
96 if ($sub->isScaffold()) {
99 $tag = $this->dictionary->tagForElement($sub);
100 if ($tag?->isCollected()) {
101 $res[$sub->getDefinition()->name()][] = $sub;
109 public function build(
117 $elements = is_array($record) ? $record : [$record];
118 $tag = $this->dictionary->tagForElement($elements[0]);
119 $is_collection = is_array($record);
120 $is_last_in_tree = (bool) $tag?->isLastInTree();
121 $is_root_or_directly_under = $elements[0]->getSuperElement()?->isRoot() ??
true;
123 $with_extended_info = !$is_root_or_directly_under || !$is_collection;
134 $is_linked = !$is_collection || $is_last_in_tree;
137 ->withExpanded($this->
isExpanded(...$elements))
138 ->withHighlighted($this->
isHighlighted($is_linked, ...$elements));
141 $node = $node->withLink(
142 $this->
getLink(is_array($record), ...$elements)
151 $current_and_parents = [$curr = $this->current_elements[0]];
152 while (!$curr->isRoot()) {
153 $curr = $curr->getSuperElement();
154 $current_and_parents[] = $curr;
156 foreach ($elements as $el) {
157 if (in_array($el, $current_and_parents,
true)) {
165 bool $can_be_highlighted,
168 return $can_be_highlighted && in_array($this->current_elements[0], $elements,
true);
172 bool $with_representation,
176 if (!$with_representation) {
177 $name = $this->presenter->elements()->name(
182 $name = $this->presenter->elements()->nameWithRepresentation(
187 return $this->presenter->utilities()->shortenString(
197 if (!$with_preview) {
200 return $this->presenter->utilities()->shortenString(
201 $this->presenter->elements()->preview(...$elements),
207 bool $record_is_array,
210 $builder = $this->path_factory->custom();
212 $skip_last_id = $record_is_array;
214 while (!$el->isRoot()) {
215 $builder = $builder->withNextStep(
216 $el->getDefinition()->name(),
219 if (!$skip_last_id) {
220 $builder = $builder->withAdditionalFilterAtCurrentStep(
222 (
string) $el->getMDID()
227 throw new \ilMDEditorException(
'Invalid md set when building tree');
229 $skip_last_id =
false;
231 $path_string = $builder->get()->toString();
232 return $this->link_factory->custom(Command::SHOW_FULL)
233 ->withParameter(Parameter::BASE_PATH, $path_string)
build(Node\Factory $factory, $record, $environment=null)
Build and return a Node.
This describes a Tree Node.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
keyValue(string $label, string $value, ?Icon $icon=null)
description: purpose: > The Key Value node is an entry containing a value paired to its label...
getChildren( $record, $environment=null)
Get a list of records (that list can also be empty).
Interface for mapping data-structures to the Tree.