19 declare(strict_types=1);
39 $this->
setId(self::class);
43 $this->
lng = $this->parent_obj->lng;
46 if ($this->
access->hasUserPermissionTo(
'write')) {
50 $this->
setRowTemplate(
'tpl.top_items.html',
'components/ILIAS/MainMenu');
55 $this->
addColumn($this->
lng->txt(
'topitem_position'),
'',
'30px');
69 protected function fillRow(array $a_set): void
75 $factory = $DIC->ui()->factory();
77 $item_facade = $this->item_repository->repository()->getItemFacade($DIC->globalScreen()->identification()->fromSerializedIdentification($a_set[
'identification']));
80 $this->tpl->setVariable(
'ID', $this->
hash($item_facade->getId()));
81 $this->tpl->setVariable(
'NATIVE_ID', $item_facade->getId());
82 $this->tpl->setVariable(
'TITLE', $item_facade->getDefaultTitle());
83 $this->tpl->setVariable(
'SUBENTRIES', $item_facade->getAmountOfChildren());
84 $this->tpl->setVariable(
'TYPE', $item_facade->getTypeForPresentation());
85 $this->tpl->setVariable(
'CSS_ID',
"mm_" . $item_facade->identification()->getInternalIdentifier());
86 $this->tpl->setVariable(
'POSITION', $position * 10);
87 $this->tpl->setVariable(
'NATIVE_POSITION', $item_facade->getRawItem()->getPosition());
88 $this->tpl->setVariable(
'SAVED_POSITION', $item_facade->getFilteredItem()->getPosition());
89 if ($item_facade->isActivated()) {
90 $this->tpl->touchBlock(
'is_active');
92 if ($item_facade->isAlwaysAvailable() || !$item_facade->isAvailable()) {
93 $this->tpl->touchBlock(
'is_active_blocked');
95 $this->tpl->setVariable(
'PROVIDER', $item_facade->getProviderNameForPresentation());
100 if ($this->
access->hasUserPermissionTo(
'write')) {
102 if ($item_facade->isEditable()) {
104 $items[] = $factory->button()
108 $rendered_modal =
"";
109 if ($item_facade->isDeletable()) {
110 $ditem = $factory->modal()->interruptiveItem()->standard($this->
hash($a_set[
'identification']), $item_facade->getDefaultTitle());
112 $m = $factory->modal()
114 ->withAffectedItems([$ditem]);
118 $rendered_modal =
$renderer->render([$m]);
120 if ($item_facade->isInterchangeable()) {
123 $this->tpl->setVariable(
'ACTIONS', $rendered_modal .
$renderer->render([$factory->dropdown()->standard($items)->withLabel($this->
lng->txt(
'sub_actions'))]));
132 return $this->item_repository->getTopItems();
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
Class ilMMItemRepository.
__construct(ilMMTopItemGUI $a_parent_obj, private ilMMItemRepository $item_repository, private ilObjMainMenuAccess $access)
ilMMTopItemTableGUI constructor.
setExternalSorting(bool $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Class ilMMTopItemGUI ilMMTopItemGUI: ilObjMainMenuGUI ilMMTopItemGUI: ilMMItemTranslationGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
Class ilMMTopItemTableGUI.
setExternalSegmentation(bool $a_val)