ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMSubItemGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 {
31  use Hasher;
32 
33  public const CMD_VIEW_SUB_ITEMS = 'subtab_subitems';
34  public const CMD_ADD = 'subitem_add';
35  public const CMD_CREATE = 'subitem_create';
36  public const CMD_CONFIRM_MOVE = 'confirm_move';
37  public const CMD_MOVE = 'move';
38  public const CMD_DELETE = 'delete';
39  public const CMD_CONFIRM_DELETE = 'subitem_confirm_delete';
40  public const CMD_EDIT = 'subitem_edit';
41  public const CMD_TRANSLATE = 'subitem_translate';
42  public const CMD_UPDATE = 'subitem_update';
43  public const CMD_SAVE_TABLE = 'save_table';
44  public const CMD_APPLY_FILTER = 'applyFilter';
45  public const CMD_RESET_FILTER = 'resetFilter';
46  public const CMD_RENDER_INTERRUPTIVE = 'render_interruptive_modal';
47  public const CMD_CANCEL = 'cancel';
48 
49  private function dispatchCommand(string $cmd): string
50  {
51  global $DIC;
52  switch ($cmd) {
53  case self::CMD_ADD:
54  $this->access->checkAccessAndThrowException('write');
55  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, ilMMSubItemGUI::CMD_VIEW_SUB_ITEMS, true, self::class);
56 
57  return $this->add($DIC);
58  case self::CMD_CREATE:
59  $this->access->checkAccessAndThrowException('write');
60  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, ilMMSubItemGUI::CMD_VIEW_SUB_ITEMS, true, self::class);
61 
62  return $this->create($DIC);
63  case self::CMD_EDIT:
64  $this->access->checkAccessAndThrowException('write');
65  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, ilMMSubItemGUI::CMD_VIEW_SUB_ITEMS, true, self::class);
66 
67  return $this->edit($DIC);
68  case self::CMD_UPDATE:
69  $this->access->checkAccessAndThrowException('write');
70  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, ilMMSubItemGUI::CMD_VIEW_SUB_ITEMS, true, self::class);
71 
72  return $this->update($DIC);
73  case self::CMD_APPLY_FILTER:
74  $this->access->checkAccessAndThrowException('visible,read');
75  $this->applyFilter();
76  break;
77  case self::CMD_RESET_FILTER:
78  $this->access->checkAccessAndThrowException('visible,read');
79  $this->resetFilter();
80  break;
81  case self::CMD_VIEW_SUB_ITEMS:
82  $this->access->checkAccessAndThrowException('visible,read');
83  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, $cmd);
84 
85  return $this->index();
86  case self::CMD_SAVE_TABLE:
87  $this->access->checkAccessAndThrowException('write');
88  $this->saveTable();
89  break;
90  case self::CMD_MOVE:
91  $this->access->checkAccessAndThrowException('write');
92  $this->move();
93  break;
94  case self::CMD_DELETE:
95  $this->access->checkAccessAndThrowException('write');
96  $this->delete();
97  break;
98  case self::CMD_CANCEL:
99  $this->cancel();
100  break;
101  case self::CMD_FLUSH:
102  $this->access->checkAccessAndThrowException('write');
103  $this->flush();
104  break;
105  }
106 
107  return "";
108  }
109 
110  private function saveTable(): void
111  {
112  global $DIC;
113  $r = $DIC->http()->request()->getParsedBody();
114  foreach ($r[self::IDENTIFIER] as $identification_string => $data) {
115  $item = $this->repository->getItemFacadeForIdentificationString($this->unhash($identification_string));
116  $position = (int) $data['position'];
117  $item->setPosition($position);
118  $item->setActiveStatus(isset($data['active']) && $data['active']);
119  $item->setParent($this->unhash((string) $data['parent']));
120  $this->repository->updateItem($item);
121  }
122  $this->cancel();
123  }
124 
125  public function executeCommand(): void
126  {
127  $next_class = $this->ctrl->getNextClass();
128 
129  if ('' === $next_class) {
130  $cmd = $this->determineCommand(self::CMD_VIEW_SUB_ITEMS, self::CMD_DELETE);
131  $this->tpl->setContent($this->dispatchCommand($cmd));
132 
133  return;
134  }
135 
136  switch ($next_class) {
137  case strtolower(ilMMItemTranslationGUI::class):
138  $this->tab_handling->initTabs(ilObjMainMenuGUI::TAB_MAIN, self::CMD_VIEW_SUB_ITEMS, true, $this->ctrl->getCallHistory()[2][ilCtrlInterface::PARAM_CMD_CLASS] ?? '');
139  $g = new ilMMItemTranslationGUI($this->getMMItemFromRequest(), $this->repository);
140  $this->ctrl->forwardCommand($g);
141  break;
142  default:
143  break;
144  }
145  }
146 
152  private function add($DIC): string
153  {
154  $f = new ilMMSubitemFormGUI($DIC->ctrl(), $DIC->ui()->factory(), $DIC->ui()->renderer(), $this->lng, $this->repository->getItemFacade(), $this->repository);
155 
156  return $f->getHTML();
157  }
158 
164  private function create($DIC): string
165  {
166  $f = new ilMMSubitemFormGUI($DIC->ctrl(), $DIC->ui()->factory(), $DIC->ui()->renderer(), $this->lng, $this->repository->getItemFacade(), $this->repository);
167  if ($f->save()) {
168  $this->cancel();
169  }
170 
171  return $f->getHTML();
172  }
173 
179  private function edit($DIC): string
180  {
181  $f = new ilMMSubitemFormGUI($DIC->ctrl(), $DIC->ui()->factory(), $DIC->ui()->renderer(), $this->lng, $this->getMMItemFromRequest(), $this->repository);
182 
183  return $f->getHTML();
184  }
185 
191  private function update($DIC): string
192  {
193  $f = new ilMMSubitemFormGUI($DIC->ctrl(), $DIC->ui()->factory(), $DIC->ui()->renderer(), $this->lng, $this->getMMItemFromRequest(), $this->repository);
194  if ($f->save()) {
195  $this->cancel();
196  }
197 
198  return $f->getHTML();
199  }
200 
201  private function applyFilter(): void
202  {
203  $table = new ilMMSubItemTableGUI($this, $this->repository, $this->access);
204  $table->writeFilterToSession();
205 
206  $this->cancel();
207  }
208 
209  private function resetFilter(): void
210  {
211  $table = new ilMMSubItemTableGUI($this, $this->repository, $this->access);
212  $table->resetFilter();
213  $table->resetOffset();
214 
215  $this->cancel();
216  }
217 
221  private function index(): string
222  {
223  // ADD NEW
224  if ($this->access->hasUserPermissionTo('write')) {
225  $btn_add = $this->ui->factory()->button()->standard(
226  $this->lng->txt(self::CMD_ADD),
227  $this->ctrl->getLinkTarget($this, self::CMD_ADD)
228  );
229  $this->toolbar->addComponent($btn_add);
230 
231  // REMOVE LOST ITEMS
232  if ($this->repository->hasLostItems()) {
233  $btn_flush = $this->ui->factory()->button()->standard(
234  $this->lng->txt(self::CMD_FLUSH),
235  $this->ctrl->getLinkTarget($this, self::CMD_FLUSH)
236  );
237  $this->toolbar->addComponent($btn_flush);
238  }
239  }
240 
241  // TABLE
242  $table = new ilMMSubItemTableGUI($this, $this->repository, $this->access);
243  $table->setShowRowsSelector(false);
244 
245  return $table->getHTML();
246  }
247 
248  private function delete(): void
249  {
250  $item = $this->getMMItemFromRequest();
251  if ($item->isDeletable()) {
252  $this->repository->deleteItem($item);
253  }
254 
255  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_subitem_deleted"), true);
256  $this->cancel();
257  }
258 
259  protected function cancel(): void
260  {
261  $this->ctrl->redirectByClass(self::class, self::CMD_VIEW_SUB_ITEMS);
262  }
263 
264  private function move(): void
265  {
266  $item = $this->getMMItemFromRequest();
267  if ($item->isInterchangeable()) {
268  $item->setParent('');
269  $this->repository->updateItem($item);
270  }
271 
272  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_moved"), true);
273  $this->cancel();
274  }
275 }
Class ilMMAbstractItemGUI.
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
Class ilMMSubItemTableGUI.
global $DIC
Definition: shib_login.php:22
Class ilMMTopItemGUI ilMMSubItemGUI: ilObjMainMenuGUI ilMMSubItemGUI: ilMMItemTranslationGUI.
Class ilMMSubitemFormGUI.
Class ilMMItemTranslationGUI.
ilMMItemRepository $repository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
dispatchCommand(string $cmd)
$r
determineCommand(string $standard, string $delete)