19 declare(strict_types=1);
57 $this->cache = $DIC->globalCache()->get($this);
58 $this->db = $DIC->database();
59 $this->main_collector = $DIC->globalScreen()->collector()->mainmenu();
60 $this->main_collector->collectOnce();
61 $this->services = $DIC->globalScreen();
63 foreach ($this->main_collector->getRawUnfilteredItems() as $top_item) {
81 $this->cache->flush();
90 return $this->main_collector->getSingleItemFromRaw($identification);
95 return $this->main_collector->getSingleItemFromFilter($identification);
100 return $this->services->identification()->fromSerializedIdentification($identification_string);
117 return ilMMItemStorage::where(
" parent_identification = '' OR parent_identification IS NULL ")->orderBy(
'position')->getArray();
125 $r = $this->db->query(
126 "SELECT sub_items.*, top_items.position AS parent_position 127 FROM il_mm_items AS sub_items 128 LEFT JOIN il_mm_items AS top_items ON top_items.identification = sub_items.parent_identification 129 WHERE sub_items.parent_identification != '' ORDER BY top_items.position, parent_identification, sub_items.position ASC" 132 while (
$data = $this->db->fetchAssoc(
$r)) {
142 $item_facade = $this->
getItemFacade($this->services->identification()->fromSerializedIdentification($item[
'identification']));
143 if (Lost::class === $item_facade->getType()) {
144 $item_facade->delete();
149 $item_facade = $this->
getItemFacade($this->services->identification()->fromSerializedIdentification($item[
'identification']));
150 if (Lost::class === $item_facade->getType()) {
151 $item_facade->delete();
159 $item_facade = $this->
getItemFacade($this->services->identification()->fromSerializedIdentification($item[
'identification']));
160 if (Lost::class === $item_facade->getType()) {
166 $item_facade = $this->
getItemFacade($this->services->identification()->fromSerializedIdentification($item[
'identification']));
167 if (Lost::class === $item_facade->getType()) {
184 if ($identification->getClassName() === CustomMainBarProvider::class) {
188 return new ilMMItemFacade($identification, $this->main_collector);
198 $id = $this->services->identification()->fromSerializedIdentification($identification);
206 if ($parents ===
null) {
208 foreach (array_keys($this->
getTopItems()) as $top_item_identification) {
209 $identification = $this->services->identification()->fromSerializedIdentification($top_item_identification);
212 $parents[$top_item_identification] = $this->
getItemFacade($identification)
227 foreach ($this->main_collector->getTypeInformationCollection()->getAll() as $information) {
228 if ($information->isCreationPrevented()) {
231 if ($information->isChild()) {
232 if ($information->getType() === TopLinkItem::class) {
235 $types[$information->getType()] = $information;
248 foreach ($this->main_collector->getTypeInformationCollection()->getAll() as $information) {
249 if (!$new || $information->isTop()) {
250 $types[$information->getType()] = $information;
266 return $this->main_collector->getTypeHandlerForItem($item);
resolveIdentificationFromString(string $identification_string)
getItemFacadeForIdentificationString(string $identification)
Class MainMenuMainCollector This Collector will collect and then provide all available slates from th...
getPossibleTopItemTypesWithInformation(bool $new)
deleteItem(ilMMItemFacadeInterface $item_facade)
Class ilMMNullItemFacade.
Interface IdentificationInterface.
getPossibleParentsForFormAndTable()
Class NullIdentification.
getTypeHandlerForType(string $type)
static where($where, $operator=null)
Class ilMMItemRepository.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
updateItem(ilMMItemFacadeInterface $item_facade)
static register(isItem $item)
getPossibleSubItemTypesWithInformation()
__construct()
ilMMItemRepository constructor.
getSingleItemFromFilter(IdentificationInterface $identification)
Class ilMMCustomItemFacade.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createItem(ilMMItemFacadeInterface $item_facade)
getItemFacade(?IdentificationInterface $identification=null)
Class NullPluginIdentification.
Interface ilMMItemFacadeInterface.
MainMenuMainCollector $main_collector
getSingleItem(IdentificationInterface $identification)