3 declare(strict_types=1);
56 if (
count($this) == 0) {
59 $this->id_to_entry_map[$entry->
getId()] = $entry;
67 foreach ($entries as $entry) {
77 foreach ($entries as $entry_array) {
102 if (array_key_exists(
$id, $this->id_to_entry_map)) {
103 return $this->id_to_entry_map[
$id];
119 array_push($parents, $parent_id);
136 $titles[$parent_id] = $this->
getEntryById($parent_id)->getTitle();
147 foreach ($this->
getEntryById($id)->getChildren() as $child) {
161 foreach ($this->
getEntryById($id)->getChildren() as $child_id) {
174 $titles[$parent_id] = $this->
getEntryById($parent_id)->getTitle();
181 return get_object_vars($this);
189 return current($this->id_to_entry_map) !==
false;
197 return key($this->id_to_entry_map);
205 return current($this->id_to_entry_map);
210 next($this->id_to_entry_map);
215 reset($this->id_to_entry_map);
223 return count($this->id_to_entry_map);
232 foreach ($this->id_to_entry_map as
$id => $item) {
233 $serialized[
$id] = $item->jsonSerialize();
getParentsOfEntryTitles(string $id)
Abstract Entry Part to share some common entry functionality.
addEntriesFromArray(array $entries)
Container storing a list of UI Component Entries, can act as Iterator, countable and is serializable...
getDescendantsOfEntryTitles(string $id)
getChildrenOfEntry(string $id)
valid()
Iterator implementations.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRootEntryId(string $root_entry_id)
jsonSerialize()
jsonSerialize implementation
Stores Information of UI Components parsed from YAML, examples and less files.
getParentsOfEntry(string $id)
count()
Countable implementations.
isParentOfEntry(string $parent_id, string $entry_id)
getEntryById(string $id="")
addEntry(ComponentEntry $entry)
Add and entry, first is always root.
addEntries(ComponentEntries $entries)
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDescendantsOfEntry(string $id)