19 declare(strict_types=1);
90 $this->ui_factory = $this->dic->ui()->factory();
91 $this->
ctrl = $this->dic->ctrl();
92 $this->request = $this->dic->http()->request();
94 $this->dic->database(),
99 protected function index(): void
103 if ($this->ui_handling->hasPermission(
'write')) {
108 $this->dic->globalScreen()->collector()->footer()
118 $this->ui_handling->out(
120 $this->ui_handling->getHereAsURI(self::CMD_SAVE_ORDER),
121 $this->ui_handling->buildURI(
122 $this->
ctrl->getLinkTargetByClass(
123 ilFooterTranslationGUI::class,
134 foreach ($this->request->getParsedBody() as $hashed_id => $position) {
135 $this->
repository->updatePositionById($this->unhash($hashed_id), (
int) $position);
137 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
140 protected function add(): void
148 $target = $this->
ctrl->getFormAction($this, self::CMD_CREATE);
149 $this->ui_handling->outAsyncAsModal(
150 $this->translator->translate(
'add',
'entries'),
158 $modal = $this->ui_factory->modal()->roundtrip(
159 $this->translator->translate(
'add',
'entries'),
161 )->withAsyncRenderUrl(
162 $this->
ctrl->getLinkTarget($this, self::CMD_ADD)
165 $this->dic->toolbar()->addComponent(
169 $this->translator->translate(
'add',
'entries'),
172 ->withOnClick($modal->getShowSignal())
180 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
181 $this->ui_handling->saveIdentificationsToRequest(
198 $this->ctrl->getFormAction($this, self::CMD_CREATE)
200 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
202 $this->ui_handling->out(
204 $this->ctrl->getFormAction($this, self::CMD_CREATE)
209 protected function edit(): void
221 $target = $this->
ctrl->getFormAction($this, self::CMD_UPDATE);
222 $this->ui_handling->outAsyncAsModal(
223 $this->translator->translate(
'edit',
'entries'),
231 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
240 $target = $this->
ctrl->getFormAction($this, self::CMD_CREATE);
245 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
247 $this->ui_handling->out(
254 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
256 $this->
repository->store($entry->withActive(!$entry->isActive()));
259 $this->ui_handling->sendMessageAndRedirect(
261 $this->translator->translate(
'group_activation_toggled'),
262 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
269 $this->dic->globalScreen()->collector()->footer()
271 $this->ui_handling->sendMessageAndRedirect(
273 $this->translator->translate(
'reset_success'),
274 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
282 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
284 if ($entry ===
null) {
287 if ($entry->isCore()) {
288 $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
291 $this->translator->translate(
'info_not_deletable_core') .
292 $this->ui_handling->render($this->nok($this->ui_factory))
296 $items[] = $this->ui_factory->modal()->interruptiveItem()->keyValue(
299 $this->ui_handling->render($this->ok($this->ui_factory))
303 $this->ui_handling->outAsyncAsModal(
304 $this->translator->translate(
'entry_delete'),
305 $this->
ctrl->getFormAction($this,
'delete'),
310 private function delete():
void 312 foreach ($this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID) as
$id) {
317 $this->ui_handling->sendMessageAndRedirect(
319 $this->translator->translate(
'entry_deleted'),
320 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
329 $this->ui_handling->outAsyncAsModal(
330 $this->translator->translate(
'select_parent',
'entries'),
331 $this->
ctrl->getFormAction($this,
'move'),
340 foreach ($this->groups_repository->all() as $group) {
341 $parents[$group->getId()] = $group->getTitle();
344 $factory = $this->ui_factory->input();
349 $this->
ctrl->getFormAction($this,
'move'),
354 $this->translator->translate(
'parent',
'entries'),
358 ->withValue($this->group->getId())
363 protected function move(): void
365 $new_parent = $this->
getMoveForm()->withRequest($this->request)->getData()[
'parent'] ??
null;
366 $id = $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0];
368 $entry = $entry->withParent($new_parent);
370 $this->ui_handling->sendMessageAndRedirect(
372 $this->translator->translate(
'entry_moved'),
373 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
381 $this->ui_handling->requireReadable();
383 $next_class = $this->
ctrl->getNextClass($this) ??
'';
384 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
386 switch (strtolower($next_class)) {
387 case strtolower(ilFooterTranslationGUI::class):
389 $this->ui_handling->getIdentificationsFromRequest(self::GSFO_ID)[0]
392 if ($this->request->getQueryParams()[
'async'] ??
false) {
393 $back_target = $this->ui_handling->buildURI($this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT));
403 $this->
ctrl->forwardCommand($translation);
409 case self::CMD_CREATE:
411 case self::CMD_UPDATE:
413 $this->ui_handling->backToMainTab();
414 $this->ui_handling->requireWritable();
button(string $caption, string $cmd)
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