19 declare(strict_types=1);
75 private ?
URI $back_target =
null 77 $this->ui_factory = $this->dic->ui()->factory();
78 $this->
ctrl = $this->dic->ctrl();
79 $this->request = $this->dic->http()->request();
82 $this->dic->database()
86 $this->dic->learningObjectMetadata(),
89 $this->translatable_item,
96 $translations = $this->
repository->get($this->translatable_item);
97 if ($translations->get() === []) {
98 $content = $this->ui_factory->messageBox()->info(
99 $this->translator->translate(
'no_translations')
103 foreach ($translations->get() as $t) {
104 $items[$this->translator->translate(
'meta_l_' . $t->getLanguageCode())] = $t->getTranslation();
106 $content = $this->ui_factory->listing()->descriptive(
109 $content = $this->back_target ===
null ? $this->ui_factory->panel()->secondary()->legacy(
110 $this->translator->translate(
'translations'),
111 $this->ui_factory->legacy()->content(
112 $this->ui_handling->render($content)
117 $prompt = $this->ui_factory->prompt()->standard(
118 $this->ui_handling->getHereAsURI(self::CMD_LANGUAGE_SELECTION)
122 $edit_button = $this->ui_factory
125 $this->translator->translate(
'edit_translations'),
128 ->withOnClick($prompt->getShowSignal());
130 $this->dic->toolbar()->addComponent(
134 if ($this->back_target ===
null) {
135 $this->ui_handling->out(
142 $this->ui_handling->outAsyncAsModal(
144 (
string) $this->back_target,
146 $this->ui_factory->divider()->horizontal(),
154 $this->ui_handling->outAsync(
155 $this->workflow->asTranslationWorkflow(
156 $this->ui_handling->getHereAsURI(),
157 $this->back_target ?? $this->ui_handling->getHereAsURI(self::CMD_DEFAULT)
164 $this->ui_handling->outAsync(
165 $this->workflow->asTranslationModal(
166 $this->ui_handling->getHereAsURI(self::CMD_SAVE_TRANSLATIONS)
173 $form = $this->workflow->asTranslationModal(
174 $this->ui_handling->getHereAsURI(self::CMD_SAVE_TRANSLATIONS)
176 $form = $form->withRequest($this->request);
177 if ((
$data = $form->getData()) ===
null) {
178 $this->ui_handling->outAsync($form);
181 $this->
ctrl->redirectToURL(
182 (
string) ($this->back_target ?? $this->ui_handling->getHereAsURI(self::CMD_DEFAULT))
190 $this->ui_handling->requireReadable();
192 $next_class = $this->
ctrl->getNextClass($this) ??
'';
193 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
196 case self::CMD_DEFAULT:
197 case self::CMD_LANGUAGE_SELECTION:
198 case self::CMD_SAVE_LANGUAGE_SELECTION:
199 case self::CMD_TRANSLATE_IN_MODAL:
200 case self::CMD_SAVE_TRANSLATIONS:
202 $this->ui_handling->backToMainTab();
203 $this->ui_handling->requireWritable();
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...