19 declare(strict_types=1);
64 $this->map =
new Map($factory);
72 yield
from $this->providers;
78 $this->type_information_collection->append($provider->provideTypeInformation());
79 $this->map->addMultiple(...$provider->getStaticTopItems());
80 $this->map->addMultiple(...$provider->getStaticSubItems());
87 $this->map->filter(
function (
isItem $item) use ($async_only):
bool {
97 foreach ($item->getChildren() as $child) {
98 if ($child->isAlwaysAvailable()) {
115 if ($this->default_topics) {
150 $parent = $this->map->getSingleItemFromFilter($this->information->getParent($item));
152 $parent->appendChild($item);
153 $item->overrideParent($parent->getProviderIdentification());
166 foreach ($item->getChildren() as $child) {
167 if (!$this->map->existsInFilter($child->getProviderIdentification())) {
168 $item->removeChild($child);
175 $this->map->walk(
static function (
isItem &$i):
void {
176 if ($i instanceof
isParent && $i->getChildren() === []) {
177 $i = $i->
withAvailableCallable(
static fn():
bool =>
false)->withVisibilityCallable(
static fn():
bool =>
false);
182 $this->map->filter(
static function (
isItem $i):
bool {
184 return $i->getChildren() !== [];
204 foreach ($this->map->getAllFromFilter() as $item) {
205 if ($item->isTop()) {
216 yield
from $this->map->getAllFromFilter();
224 yield
from $this->map->getAllFromRaw();
230 return $this->map->has();
239 return $item instanceof
isItem;
251 return $this->map->getSingleItemFromFilter($identification);
261 return $this->map->getSingleItemFromRaw($identification);
271 if ($type_information ===
null) {
275 return $type_information->getTypeHandler();
283 return $this->information;
Class MainMenuMainCollector This Collector will collect and then provide all available slates from th...
getTypeInformationForItem(isItem $item)
sortItemsForUIRepresentation()
This is just a class that marks a string as a help topic.
getTypeInformationCollection()
getItemsForUIRepresentation()
This will return all available isTopItem (and moved isInterchangeableItem), stacked based on the conf...
getSingleItemFromRaw(IdentificationInterface $identification)
Interface IdentificationInterface.
readonly TypeInformationCollection $type_information_collection
Class AbstractBaseCollector.
filterItemsByVisibilty(bool $async_only=false)
getTypeHandlerForItem(isItem $item)
cleanupItemsForUIRepresentation()
prepareItemsForUIRepresentation()
setTypeInformation(TypeInformation $information)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class MainMenuItemFactory This factory provides you all available types for MainMenu GlobalScreen Ite...
Class TypeInformationCollection.
getSingleItemFromFilter(IdentificationInterface $identification)
withAvailableCallable(callable $is_available)
Pass a callable which can decide whether your element is available in general, e.g.
Interface supportsAsynchronousLoading Types, which implement this interface, can load their content a...
__construct(protected array $providers, MainMenuItemFactory $factory, private readonly ?ItemInformation $information=null)
getProviderIdentification()