ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFooterEntriesGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
35 
41 final class ilFooterEntriesGUI
42 {
43  use Hasher;
44  use UIHelper;
45 
49  public const CMD_DEFAULT = 'index';
53  public const CMD_ADD = 'add';
57  public const CMD_CREATE = 'create';
61  public const CMD_EDIT = 'edit';
65  public const CMD_UPDATE = 'update';
69  public const CMD_RESET = 'reset';
73  public const CMD_SAVE_ORDER = 'saveOrder';
77  public const GSFO_ID = 'gsfo_entry_id';
82 
83  public function __construct(
84  private Container $dic,
85  private Translator $translator,
86  private ilObjFooterUIHandling $ui_handling,
87  private Group $group,
88  private GroupsRepository $groups_repository
89  ) {
90  $this->ui_factory = $this->dic->ui()->factory();
91  $this->ctrl = $this->dic->ctrl();
92  $this->request = $this->dic->http()->request();
93  $this->repository = new EntriesRepositoryDB(
94  $this->dic->database(),
96  );
97  }
98 
99  protected function index(): void
100  {
101  // Add new
102  $components = [];
103  if ($this->ui_handling->hasPermission('write')) {
104  $components = $this->addButtons();
105  }
106  // Sync
107  $this->repository->syncWithGlobalScreen(
108  $this->dic->globalScreen()->collector()->footer()
109  );
110  // Table
111  $table = new EntriesTable(
112  $this->group,
113  $this->repository,
114  new TranslationsRepositoryDB($this->dic->database()),
115  $this->translator
116  );
117 
118  $this->ui_handling->out(
119  $table->get(
120  $this->ui_handling->getHereAsURI(self::CMD_SAVE_ORDER),
121  $this->ui_handling->buildURI(
122  $this->ctrl->getLinkTargetByClass(
123  ilFooterTranslationGUI::class,
125  )
126  )
127  ),
128  ...$components
129  );
130  }
131 
132  private function saveOrder(): void
133  {
134  foreach ($this->request->getParsedBody() as $hashed_id => $position) {
135  $this->repository->updatePositionById($this->unhash($hashed_id), (int) $position);
136  }
137  $this->ctrl->redirect($this, self::CMD_DEFAULT);
138  }
139 
140  protected function add(): void
141  {
142  $form = new EntryForm(
143  $this->repository,
144  $this->translator,
145  $this->group
146  );
147 
148  $target = $this->ctrl->getFormAction($this, self::CMD_CREATE);
149  $this->ui_handling->outAsyncAsModal(
150  $this->translator->translate('add', 'entries'),
151  $target,
152  $form->get($target)
153  );
154  }
155 
156  protected function addButtons(): array
157  {
158  $modal = $this->ui_factory->modal()->roundtrip(
159  $this->translator->translate('add', 'entries'),
160  null
161  )->withAsyncRenderUrl(
162  $this->ctrl->getLinkTarget($this, self::CMD_ADD)
163  );
164 
165  $this->dic->toolbar()->addComponent(
166  $this->ui_factory
167  ->button()
168  ->primary(
169  $this->translator->translate('add', 'entries'),
170  '#'
171  )
172  ->withOnClick($modal->getShowSignal())
173  );
174 
175  return [$modal];
176  }
177 
178  protected function saveCurrentEntry(): mixed
179  {
180  $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
181  $this->ui_handling->saveIdentificationsToRequest(
182  $this,
183  self::GSFO_ID,
184  $id
185  );
186  return $id;
187  }
188 
189  public function create(): void
190  {
191  $form = new EntryForm(
192  $this->repository,
193  $this->translator,
194  $this->group
195  );
196  if ($form->store(
197  $this->request,
198  $this->ctrl->getFormAction($this, self::CMD_CREATE)
199  )) {
200  $this->ctrl->redirect($this, self::CMD_DEFAULT);
201  }
202  $this->ui_handling->out(
203  $form->get(
204  $this->ctrl->getFormAction($this, self::CMD_CREATE)
205  )
206  );
207  }
208 
209  protected function edit(): void
210  {
211  $id = $this->saveCurrentEntry();
212  $entry = $this->repository->get($id);
213 
214  $form = new EntryForm(
215  $this->repository,
216  $this->translator,
217  $this->group,
218  $entry
219  );
220 
221  $target = $this->ctrl->getFormAction($this, self::CMD_UPDATE);
222  $this->ui_handling->outAsyncAsModal(
223  $this->translator->translate('edit', 'entries'),
224  $target,
225  $form->get($target)
226  );
227  }
228 
229  public function update(): void
230  {
231  $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
232  $entry = $this->repository->get($id);
233 
234  $form = new EntryForm(
235  $this->repository,
236  $this->translator,
237  $this->group,
238  $entry
239  );
240  $target = $this->ctrl->getFormAction($this, self::CMD_CREATE);
241  if ($form->store(
242  $this->request,
243  $target
244  )) {
245  $this->ctrl->redirect($this, self::CMD_DEFAULT);
246  }
247  $this->ui_handling->out(
248  $form->get($target)
249  );
250  }
251 
252  protected function toggleActivation(): void
253  {
254  foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as $id) {
255  $entry = $this->repository->get($id);
256  $this->repository->store($entry->withActive(!$entry->isActive()));
257  }
258 
259  $this->ui_handling->sendMessageAndRedirect(
260  'success',
261  $this->translator->translate('group_activation_toggled'),
262  $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
263  );
264  }
265 
266  protected function reset(): void
267  {
268  $this->repository->reset(
269  $this->dic->globalScreen()->collector()->footer()
270  );
271  $this->ui_handling->sendMessageAndRedirect(
272  'success',
273  $this->translator->translate('reset_success'),
274  $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
275  );
276  }
277 
278  protected function confirmDelete(): void
279  {
280  $items = [];
281 
282  foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as $id) {
283  $entry = $this->repository->get($id);
284  if ($entry === null) {
285  continue;
286  }
287  if ($entry->isCore()) {
288  $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
289  $id,
290  $entry->getTitle(),
291  $this->translator->translate('info_not_deletable_core') .
292  $this->ui_handling->render($this->nok($this->ui_factory))
293  );
294  continue;
295  }
296  $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
297  $id,
298  $entry->getTitle(),
299  $this->ui_handling->render($this->ok($this->ui_factory))
300  );
301  }
302 
303  $this->ui_handling->outAsyncAsModal(
304  $this->translator->translate('entry_delete'),
305  $this->ctrl->getFormAction($this, 'delete'),
306  ...$items
307  );
308  }
309 
310  private function delete(): void
311  {
312  foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as $id) {
313  $item = $this->repository->get($id);
314  $this->repository->delete($item);
315  }
316 
317  $this->ui_handling->sendMessageAndRedirect(
318  'success',
319  $this->translator->translate('entry_deleted'),
320  $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
321  );
322  }
323 
324  protected function selectMove(): void
325  {
326  $id = $this->saveCurrentEntry();
327  $form = $this->getMoveForm();
328 
329  $this->ui_handling->outAsyncAsModal(
330  $this->translator->translate('select_parent', 'entries'),
331  $this->ctrl->getFormAction($this, 'move'),
332  $form
333  );
334  }
335 
336  protected function getMoveForm(): Standard
337  {
338  $parents = [];
339 
340  foreach ($this->groups_repository->all() as $group) {
341  $parents[$group->getId()] = $group->getTitle();
342  }
343 
344  $factory = $this->ui_factory->input();
345  return $factory
346  ->container()
347  ->form()
348  ->standard(
349  $this->ctrl->getFormAction($this, 'move'),
350  [
351  'parent' => $factory
352  ->field()
353  ->select(
354  $this->translator->translate('parent', 'entries'),
355  $parents
356  )
357  ->withRequired(true)
358  ->withValue($this->group->getId())
359  ]
360  );
361  }
362 
363  protected function move(): void
364  {
365  $new_parent = $this->getMoveForm()->withRequest($this->request)->getData()['parent'] ?? null;
366  $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
367  $entry = $this->repository->get($id);
368  $entry = $entry->withParent($new_parent);
369  $this->repository->store($entry);
370  $this->ui_handling->sendMessageAndRedirect(
371  'success',
372  $this->translator->translate('entry_moved'),
373  $this->ctrl->getLinkTarget($this, self::CMD_DEFAULT)
374  );
375  }
376 
377  // HELPERS AND NEEDED IMPLEMENATIONS
378 
379  public function executeCommand(): void
380  {
381  $this->ui_handling->requireReadable();
382 
383  $next_class = $this->ctrl->getNextClass($this) ?? '';
384  $cmd = $this->ctrl->getCmd(self::CMD_DEFAULT);
385 
386  switch (strtolower($next_class)) {
387  case strtolower(ilFooterTranslationGUI::class):
388  $item = $this->repository->get(
389  $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0]
390  );
391  $back_target = null;
392  if ($this->request->getQueryParams()['async'] ?? false) {
393  $back_target = $this->ui_handling->buildURI($this->ctrl->getLinkTarget($this, self::CMD_DEFAULT));
394  }
395  $translation = new ilFooterTranslationGUI(
396  $this->dic,
397  $this->translator,
398  $this->ui_handling,
399  $item,
400  $back_target
401  );
402 
403  $this->ctrl->forwardCommand($translation);
404 
405  return;
406  default:
407  switch ($cmd) {
408  case self::CMD_ADD:
409  case self::CMD_CREATE:
410  case self::CMD_EDIT:
411  case self::CMD_UPDATE:
412  default:
413  $this->ui_handling->backToMainTab();
414  $this->ui_handling->requireWritable();
415  $this->$cmd();
416  }
417  }
418  }
419 
420 }
button(string $caption, string $cmd)
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private Container $dic, private Translator $translator, private ilObjFooterUIHandling $ui_handling, private Group $group, private GroupsRepository $groups_repository)
EntriesRepository $repository
This is how the factory for UI elements looks.
Definition: Factory.php:37
This describes a standard form.
Definition: Standard.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$dic
Definition: result.php:31
ServerRequestInterface $request