ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMSubItemTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  use Hasher;
31 
32  public const IDENTIFIER = 'identifier';
33  public const F_TABLE_SHOW_INACTIVE = 'table_show_inactive';
34  public const F_TABLE_ENTRY_STATUS = 'entry_status';
35  public const F_TABLE_ALL_VALUE = 1;
36  public const F_TABLE_ONLY_ACTIVE_VALUE = 2;
37  public const F_TABLE_ONLY_INACTIVE_VALUE = 3;
38 
39  private array $filter;
40 
46  public function __construct(
47  ilMMSubItemGUI $a_parent_obj,
48  private ilMMItemRepository $item_repository,
49  private ilObjMainMenuAccess $access
50  ) {
51  $this->setId(self::class);
52  $this->setExternalSorting(true);
53  $this->setExternalSegmentation(true);
54  parent::__construct($a_parent_obj);
55  $this->lng = $this->parent_obj->lng;
56  $this->addFilterItems();
57  $this->setData($this->resolveData());
58  $this->setFormAction($this->ctrl->getFormAction($this->parent_obj));
59  if ($this->access->hasUserPermissionTo('write')) {
60  $this->addCommandButton(ilMMSubItemGUI::CMD_SAVE_TABLE, $this->lng->txt('button_save'));
61  }
62  $this->initColumns();
63  $this->setRowTemplate('tpl.sub_items.html', 'components/ILIAS/MainMenu');
64  }
65 
66  protected function addFilterItems(): void
67  {
68  $table_entry_status = new ilSelectInputGUI(
69  $this->lng->txt(self::F_TABLE_ENTRY_STATUS),
70  self::F_TABLE_ENTRY_STATUS
71  );
72  $table_entry_status->setOptions(
73  [
74  self::F_TABLE_ALL_VALUE => $this->lng->txt("all"),
75  self::F_TABLE_ONLY_ACTIVE_VALUE => $this->lng->txt("only_active"),
76  self::F_TABLE_ONLY_INACTIVE_VALUE => $this->lng->txt("only_inactive"),
77  ]
78  );
79  $this->addAndReadFilterItem($table_entry_status);
80  }
81 
82  protected function addAndReadFilterItem(ilFormPropertyGUI $field): void
83  {
84  if (!$field instanceof ilTableFilterItem) {
85  return;
86  }
87  $this->addFilterItem($field);
88  $field->readFromSession();
89  $this->filter[$field->getPostVar()] = $field instanceof ilCheckboxInputGUI ? $field->getChecked() : $field->getValue();
90  }
91 
92  private function initColumns(): void
93  {
94  $this->addColumn($this->lng->txt('sub_parent'));
95  $this->addColumn($this->lng->txt('sub_position'));
96  $this->addColumn($this->lng->txt('sub_title'));
97  $this->addColumn($this->lng->txt('sub_type'));
98  $this->addColumn($this->lng->txt('sub_active'));
99  $this->addColumn($this->lng->txt('sub_status'));
100  $this->addColumn($this->lng->txt('sub_provider'));
101  $this->addColumn($this->lng->txt('sub_actions'));
102  }
103 
107  #[\Override]
108  protected function fillRow(array $a_set): void
109  {
110  static $position;
111  static $parent_identification_string;
112  $position++;
113  global $DIC;
114 
115  $renderer = $DIC->ui()->renderer();
116  $factory = $DIC->ui()->factory();
120  $item_facade = $a_set['facade'];
121 
122  if ($item_facade->isChild() && (!$parent_identification_string || $parent_identification_string !== $item_facade->getParentIdentificationString())) {
123  $parent_identification_string = $item_facade->getParentIdentificationString();
124  $current_parent_identification = $this->item_repository->resolveIdentificationFromString(
125  $parent_identification_string
126  );
127  $current_parent_item = $this->item_repository->getSingleItem($current_parent_identification);
128  $this->tpl->setVariable(
129  "PARENT_TITLE",
130  $current_parent_item instanceof hasTitle ? $current_parent_item->getTitle() : "-"
131  );
132  $this->tpl->setVariable(
133  "NATIVE_PARENT_ID",
134  $current_parent_item->getProviderIdentification()->serialize()
135  );
136  $this->tpl->setVariable(
137  "PARENT_ID",
138  $this->hash($current_parent_item->getProviderIdentification()->serialize())
139  );
140  $position = 1;
141  }
142  $this->tpl->setVariable('IDENTIFIER', self::IDENTIFIER);
143  $this->tpl->setVariable('ID', $this->hash($item_facade->getId()));
144  $this->tpl->setVariable('NATIVE_ID', $item_facade->getId());
145  $this->tpl->setVariable('TITLE', $item_facade->getDefaultTitle());
146  $this->tpl->setVariable('PARENT', $this->getSelect($item_facade)->render());
147  $this->tpl->setVariable('STATUS', $item_facade->getStatus());
148  if ($item_facade->isActivated()) {
149  $this->tpl->touchBlock('is_active');
150  }
151  if ($item_facade->getRawItem()->isAlwaysAvailable() || !$item_facade->getRawItem()->isAvailable()) {
152  $this->tpl->touchBlock('is_active_blocked');
153  }
154 
155  $this->tpl->setVariable('POSITION', $position * 10);
156  $this->tpl->setVariable('NATIVE_POSITION', $item_facade->getRawItem()->getPosition());
157  $this->tpl->setVariable('SAVED_POSITION', $item_facade->getFilteredItem()->getPosition());
158  $this->tpl->setVariable('TYPE', $item_facade->getTypeForPresentation());
159  $this->tpl->setVariable('PROVIDER', $item_facade->getProviderNameForPresentation());
160 
161  $this->ctrl->setParameterByClass(
162  ilMMSubItemGUI::class,
164  $this->hash($a_set['identification'])
165  );
166  $this->ctrl->setParameterByClass(
167  ilMMItemTranslationGUI::class,
169  $this->hash($a_set['identification'])
170  );
171 
172  if ($this->access->hasUserPermissionTo('write')) {
173  $items[] = $factory->button()->shy(
174  $this->lng->txt(ilMMSubItemGUI::CMD_EDIT),
175  $this->ctrl->getLinkTargetByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_EDIT)
176  );
177  $items[] = $factory->button()->shy(
178  $this->lng->txt(ilMMTopItemGUI::CMD_TRANSLATE),
179  $this->ctrl->getLinkTargetByClass(ilMMItemTranslationGUI::class, ilMMItemTranslationGUI::CMD_DEFAULT)
180  );
181 
182  $ditem = $factory->modal()->interruptiveItem()->standard(
183  $this->hash($a_set['identification']),
184  $item_facade->getDefaultTitle()
185  );
186 
187  $delete_modal = "";
188  if ($item_facade->isDeletable()) {
189  $action = $this->ctrl->getFormActionByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_DELETE);
190  $m = $factory->modal()
191  ->interruptive(
192  $this->lng->txt(ilMMSubItemGUI::CMD_DELETE),
194  $action
195  )
196  ->withAffectedItems([$ditem]);
197 
198  $items[] = $factory->button()->shy(
199  $this->lng->txt(ilMMSubItemGUI::CMD_DELETE),
200  ""
201  )->withOnClick($m->getShowSignal());
202  $delete_modal = $renderer->render([$m]);
203  }
204 
205  $move_modal = "";
206  if ($item_facade->isInterchangeable()) {
207  $action = $this->ctrl->getFormActionByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_MOVE);
208  $m = $factory->modal()
209  ->interruptive(
210  $this->lng->txt(ilMMSubItemGUI::CMD_MOVE),
212  $action
213  )
214  ->withActionButtonLabel($this->lng->txt(ilMMSubItemGUI::CMD_MOVE))
215  ->withAffectedItems([$ditem]);
216  $items[] = $factory->button()->shy(
217  $this->lng->txt(ilMMSubItemGUI::CMD_MOVE . '_to_top_item'),
218  ""
219  )->withOnClick($m->getShowSignal());
220  $move_modal = $renderer->render([$m]);
221  }
222 
223  $this->tpl->setVariable(
224  'ACTIONS',
225  $move_modal . $delete_modal . $renderer->render([$factory->dropdown()->standard($items)->withLabel($this->lng->txt('sub_actions'))])
226  );
227  }
228  }
229 
235  {
236  $s = new ilSelectInputGUI('', self::IDENTIFIER . "[{$this->hash($child->getId())}][parent]");
237  $s->setOptions($this->getPossibleParentsForFormAndTable());
238  $s->setValue($this->hash($child->getParentIdentificationString()));
239 
240  return $s;
241  }
242 
246  public function getPossibleParentsForFormAndTable(): array
247  {
248  $parents = [];
249  foreach ($this->item_repository->getPossibleParentsForFormAndTable() as $identification => $name) {
250  $parents[$this->hash($identification)] = $name;
251  }
252 
253  return $parents;
254  }
255 
256  private function resolveData(): array
257  {
258  global $DIC;
259  $sub_items_for_table = $this->item_repository->getSubItemsForTable();
260 
261  // populate with facade
262  array_walk($sub_items_for_table, function (array &$item) use ($DIC): void {
263  $item_ident = $DIC->globalScreen()->identification()->fromSerializedIdentification($item['identification']);
264  $item_facade = $this->item_repository->repository()->getItemFacade($item_ident);
265  $item['facade'] = $item_facade;
266  });
267 
268  // filter active/inactive
269  $sub_items_for_table = array_filter($sub_items_for_table, function (array $item_facade): bool {
273  $item_facade = $item_facade['facade'];
274  if (!isset($this->filter[self::F_TABLE_ENTRY_STATUS])) {
275  return true;
276  }
277  if (((int) $this->filter[self::F_TABLE_ENTRY_STATUS]) === self::F_TABLE_ALL_VALUE) {
278  return true;
279  }
280  if (((int) $this->filter[self::F_TABLE_ENTRY_STATUS]) === self::F_TABLE_ONLY_ACTIVE_VALUE && (!$item_facade->isActivated() && !$item_facade->isAlwaysAvailable())) {
281  return false;
282  }
283  return !((int) $this->filter[self::F_TABLE_ENTRY_STATUS] === self::F_TABLE_ONLY_INACTIVE_VALUE && $item_facade->isActivated());
284  });
285 
286  return $sub_items_for_table;
287  }
288 }
getSelect(ilMMItemFacadeInterface $child)
setData(array $a_data)
$renderer
This class represents a selection list property in a property form.
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setOptions(array $a_options)
Class ilMMSubItemTableGUI.
Class ilMMItemRepository.
setId(string $a_val)
setExternalSorting(bool $a_val)
addAndReadFilterItem(ilFormPropertyGUI $field)
fillRow(array $a_set)
Standard Version of Fill Row.
__construct(ilMMSubItemGUI $a_parent_obj, private ilMMItemRepository $item_repository, private ilObjMainMenuAccess $access)
ilMMSubItemTableGUI constructor.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
Class ilMMTopItemGUI ilMMSubItemGUI: ilObjMainMenuGUI ilMMSubItemGUI: 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)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
Interface ilMMItemFacadeInterface.
setExternalSegmentation(bool $a_val)