ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMTopItemTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  use Hasher;
30 
37  public function __construct(ilMMTopItemGUI $a_parent_obj, private ilMMItemRepository $item_repository, private ilObjMainMenuAccess $access)
38  {
39  $this->setId(self::class);
40  $this->setExternalSorting(true);
41  $this->setExternalSegmentation(true);
42  parent::__construct($a_parent_obj);
43  $this->lng = $this->parent_obj->lng;
44  $this->setData($this->resolveData());
45  $this->setFormAction($this->ctrl->getFormAction($this->parent_obj));
46  if ($this->access->hasUserPermissionTo('write')) {
47  $this->addCommandButton(ilMMTopItemGUI::CMD_SAVE_TABLE, $this->lng->txt('button_save'));
48  }
49  $this->initColumns();
50  $this->setRowTemplate('tpl.top_items.html', 'components/ILIAS/MainMenu');
51  }
52 
53  private function initColumns(): void
54  {
55  $this->addColumn($this->lng->txt('topitem_position'), '', '30px');
56  $this->addColumn($this->lng->txt('topitem_title'));
57  $this->addColumn($this->lng->txt('topitem_active'));
58  $this->addColumn($this->lng->txt('topitem_subentries'));
59  $this->addColumn($this->lng->txt('topitem_css_id'));
60  $this->addColumn($this->lng->txt('topitem_type'));
61  $this->addColumn($this->lng->txt('topitem_provider'));
62  $this->addColumn($this->lng->txt('topitem_actions'));
63  }
64 
68  #[\Override]
69  protected function fillRow(array $a_set): void
70  {
71  static $position;
72  $position++;
73  global $DIC;
74  $renderer = $DIC->ui()->renderer();
75  $factory = $DIC->ui()->factory();
76 
77  $item_facade = $this->item_repository->repository()->getItemFacade($DIC->globalScreen()->identification()->fromSerializedIdentification($a_set['identification']));
78 
79  $this->tpl->setVariable('IDENTIFIER', ilMMAbstractItemGUI::IDENTIFIER);
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');
91  }
92  if ($item_facade->isAlwaysAvailable() || !$item_facade->isAvailable()) {
93  $this->tpl->touchBlock('is_active_blocked');
94  }
95  $this->tpl->setVariable('PROVIDER', $item_facade->getProviderNameForPresentation());
96 
97  $this->ctrl->setParameterByClass(ilMMTopItemGUI::class, ilMMAbstractItemGUI::IDENTIFIER, $this->hash($a_set['identification']));
98  $this->ctrl->setParameterByClass(ilMMItemTranslationGUI::class, ilMMItemTranslationGUI::IDENTIFIER, $this->hash($a_set['identification']));
99 
100  if ($this->access->hasUserPermissionTo('write')) {
101  $items = [];
102  if ($item_facade->isEditable()) {
103  $items[] = $factory->button()->shy($this->lng->txt(ilMMTopItemGUI::CMD_EDIT), $this->ctrl->getLinkTargetByClass(ilMMTopItemGUI::class, ilMMTopItemGUI::CMD_EDIT));
104  $items[] = $factory->button()
105  ->shy($this->lng->txt(ilMMTopItemGUI::CMD_TRANSLATE), $this->ctrl->getLinkTargetByClass(ilMMItemTranslationGUI::class, ilMMItemTranslationGUI::CMD_DEFAULT));
106  }
107 
108  $rendered_modal = "";
109  if ($item_facade->isDeletable()) {
110  $ditem = $factory->modal()->interruptiveItem()->standard($this->hash($a_set['identification']), $item_facade->getDefaultTitle());
111  $action = $this->ctrl->getFormActionByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_DELETE);
112  $m = $factory->modal()
113  ->interruptive($this->lng->txt(ilMMTopItemGUI::CMD_DELETE), $this->lng->txt(ilMMTopItemGUI::CMD_CONFIRM_DELETE), $action)
114  ->withAffectedItems([$ditem]);
115 
116  $items[] = $shy = $factory->button()->shy($this->lng->txt(ilMMTopItemGUI::CMD_DELETE), "")->withOnClick($m->getShowSignal());
117  // $items[] = $factory->button()->shy($this->lng->txt(ilMMSubItemGUI::CMD_DELETE), $this->ctrl->getLinkTargetByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_CONFIRM_DELETE));
118  $rendered_modal = $renderer->render([$m]);
119  }
120  if ($item_facade->isInterchangeable()) {
121  $items[] = $factory->button()->shy($this->lng->txt(ilMMTopItemGUI::CMD_MOVE . '_to_item'), $this->ctrl->getLinkTargetByClass(ilMMTopItemGUI::class, ilMMTopItemGUI::CMD_SELECT_PARENT));
122  }
123  $this->tpl->setVariable('ACTIONS', $rendered_modal . $renderer->render([$factory->dropdown()->standard($items)->withLabel($this->lng->txt('sub_actions'))]));
124  }
125  }
126 
130  private function resolveData(): array
131  {
132  return $this->item_repository->getTopItems();
133  }
134 }
setData(array $a_data)
$renderer
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.
setId(string $a_val)
__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.
global $DIC
Definition: shib_login.php:22
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)