19 declare(strict_types=1);
49 $this->main_tpl = $DIC->ui()->mainTemplate();
50 $this->lom_services = $DIC->learningObjectMetadata();
51 $this->
lng()->loadLanguageModule(
"mme");
56 $this->
ctrl()->saveParameter($this, self::IDENTIFIER);
57 $cmd = $this->
ctrl()->getCmd(self::CMD_DEFAULT);
61 protected function index(): void
66 $this->tpl()->setContent($table->getHTML());
72 $this->
lng()->txt(
"add_languages"),
74 ->getLinkTarget($this, self::CMD_ADD_LANGUAGE)
78 protected function saveTranslations():
void 80 $to_translate = (array) $this->
http()->request()->getParsedBody()[self::P_TRANSLATIONS];
81 foreach ($to_translate as
$id =>
$data) {
85 $translation = ilMMItemTranslationStorage::find(
$id);
86 $translation->setTranslation(
$data[
'translation']);
87 $translation->update();
90 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
'msg_translations_saved'),
true);
96 $to_delete = (array) ($this->
http()->request()->getParsedBody()[self::P_DELETE] ?? []);
97 foreach ($to_delete as
$id) {
98 ilMMItemTranslationStorage::find($id)->delete();
100 $this->
repository->updateItem($this->item_facade);
101 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
'msg_translations_deleted'),
true);
109 $this->tpl()->setContent($form->getHTML());
115 if ($form->checkInput()) {
116 $ad = $form->getInput(
"additional_langs");
118 foreach ($ad as $language_key) {
122 $this->
repository->updateItem($this->item_facade);
123 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
"msg_languages_added"),
true);
127 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng()->txt(
'err_check_input'));
128 $form->setValuesByPost();
129 $this->tpl()->setContent($form->getHTML());
138 $form->setFormAction($this->
ctrl()->getFormAction($this));
142 foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
143 $options[$language->value()] = $language->presentableLabel();
145 $options = [
"" => $this->
lng()->txt(
"please_select")] + $options;
147 $si->setOptions($options);
151 $form->setTitle($this->
lng()->txt(
"add_languages"));
152 $form->addCommandButton(self::CMD_SAVE_LANGUAGES, $this->
lng()->txt(
"save"));
153 $form->addCommandButton(self::CMD_DEFAULT, $this->
lng()->txt(
"cancel"));
160 $this->
ctrl()->redirect($this, self::CMD_DEFAULT);
LOMServices $lom_services
const CMD_DELETE_TRANSLATIONS
repository()
description: > Example for rendering a repository card
ilGlobalTemplateInterface $main_tpl
Class ilMMItemRepository.
static http()
Fetches the global http state from ILIAS.
const CMD_SAVE_TRANSLATIONS
Class ilMMItemTranslationGUI.
Class ilMMItemTranslationTableGUI.
__construct(private ilMMItemFacadeInterface $item_facade, private ilMMItemRepository $repository)
ilMMItemTranslationGUI constructor.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static storeTranslation(IdentificationInterface $identification, string $language_key, string $translation)
Interface ilMMItemFacadeInterface.