19 declare(strict_types=1);
91 $this->ui_factory = $this->dic->ui()->factory();
92 $this->
ctrl = $this->dic->ctrl();
93 $this->request = $this->dic->http()->request();
95 $this->dic->database(),
102 $modal = $this->ui_factory->modal()->roundtrip(
103 $this->translator->translate(
'group_add'),
105 )->withAsyncRenderUrl(
106 $this->
ctrl->getLinkTarget($this, self::CMD_ADD)
109 $confirm_reset = $this->ui_factory->prompt()->standard(
110 $this->ui_handling->getHereAsURI(self::CMD_CONFIRM_RESET),
113 $this->dic->toolbar()->addComponent(
117 $this->translator->translate(
'group_add'),
120 ->withOnClick($modal->getShowSignal())
123 $this->dic->toolbar()->addComponent(
127 $this->translator->translate(
'reset_footer'),
130 ->withOnClick($confirm_reset->getShowSignal())
134 return [$modal, $confirm_reset];
139 $this->ui_handling->outAsync(
140 $this->ui_factory->prompt()->state()->show(
141 $this->ui_factory->messageBox()->confirmation(
142 $this->translator->translate(
'confirm_reset')
145 $this->ui_factory->button()->standard(
146 $this->translator->translate(
'reset'),
147 $this->
ctrl->getLinkTarget($this, self::CMD_RESET)
159 if ($this->ui_handling->hasPermission(
'write')) {
164 $this->dic->globalScreen()->collector()->footer()
174 $this->ui_handling->out(
176 $this->ui_handling->getHereAsURI(self::CMD_SAVE_ORDER),
177 $this->ui_handling->buildURI(
178 $this->
ctrl->getLinkTargetByClass(
179 ilFooterTranslationGUI::class,
192 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
194 if ($group ===
null) {
197 if ($group->isCore()) {
198 $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
201 $this->translator->translate(
'info_not_deletable_core') .
202 $this->ui_handling->render($this->nok($this->ui_factory))
206 if ($group->getItems() > 0) {
207 $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
210 $this->translator->translate(
'info_not_deletable_not_empty') .
211 $this->ui_handling->render($this->nok($this->ui_factory))
215 $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
218 $this->ui_handling->render($this->ok($this->ui_factory))
222 $this->ui_handling->outAsyncAsModal(
223 $this->translator->translate(
'group_delete'),
224 $this->
ctrl->getFormAction($this,
'delete'),
229 private function delete():
void 231 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
236 $this->ui_handling->sendMessageAndRedirect(
238 $this->translator->translate(
'group_deleted'),
239 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
245 foreach ($this->request->getParsedBody() as $hashed_id => $position) {
246 $this->
repository->updatePositionById($this->unhash($hashed_id), (
int) $position);
248 $this->ui_handling->sendMessageAndRedirect(
250 $this->translator->translate(
'order_saved'),
251 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
255 protected function add(): void
262 $action = $this->
ctrl->getFormAction($this, self::CMD_CREATE);
264 $this->ui_handling->outAsyncAsModal(
265 $this->translator->translate(
'group_add'),
279 $this->ctrl->getFormAction($this, self::CMD_CREATE)
281 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
283 $this->ui_handling->out(
285 $this->ctrl->getFormAction($this, self::CMD_CREATE)
290 protected function edit(): void
292 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
293 $this->ui_handling->saveIdentificationsToRequest(
306 $target = $this->
ctrl->getFormAction($this, self::CMD_UPDATE);
307 $this->ui_handling->outAsyncAsModal(
308 $this->translator->translate(
'group_edit'),
316 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
326 $this->ctrl->getFormAction($this, self::CMD_CREATE)
328 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
330 $this->ui_handling->out(
332 $this->ctrl->getFormAction($this, self::CMD_CREATE)
339 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
341 $this->
repository->store($group->withActive(!$group->isActive()));
344 $this->ui_handling->sendMessageAndRedirect(
346 $this->translator->translate(
'group_activation_toggled'),
347 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
354 $this->dic->globalScreen()->collector()->footer()
357 $entries_repo->
reset($this->dic->globalScreen()->collector()->footer());
360 $translations->
reset();
362 $this->ui_handling->sendMessageAndRedirect(
364 $this->translator->translate(
'reset_success'),
365 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
371 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
372 $this->ui_handling->saveIdentificationsToRequest(
373 ilFooterEntriesGUI::class,
377 $this->
ctrl->redirectByClass(ilFooterEntriesGUI::class);
385 $this->ui_handling->requireReadable();
387 $next_class = $this->
ctrl->getNextClass($this) ??
'';
388 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
390 switch (strtolower($next_class)) {
391 case strtolower(ilFooterTranslationGUI::class):
393 $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0]
396 if ($this->request->getQueryParams()[
'async'] ??
false) {
397 $back_target = $this->ui_handling->buildURI($this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT));
407 $this->
ctrl->forwardCommand($translation);
410 case strtolower(ilFooterEntriesGUI::class):
411 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
412 $this->ui_handling->saveIdentificationsToRequest(
413 ilFooterEntriesGUI::class,
419 $this->
ctrl->forwardCommand(
431 case self::CMD_DEFAULT:
432 $this->ui_handling->requireWritable();
436 case self::CMD_CREATE:
438 case self::CMD_UPDATE:
440 $this->ui_handling->backToMainTab();
441 $this->ui_handling->requireWritable();
button(string $caption, string $cmd)
standard()
description: > This is an example, of how the Notification Slate is generated by assigning Notificat...
repository()
description: > Example for rendering a repository card
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins