37 protected \ilBiblAdminFactoryFacadeInterface
$facade;
38 protected \ilBiblFieldInterface
$field;
48 $DIC->language()->loadLanguageModule(
'obj');
49 $this->main_tpl = $DIC->ui()->mainTemplate();
58 switch ($this->
ctrl()->getNextClass()) {
60 $cmd = $this->
ctrl()->getCmd(self::CMD_DEFAULT);
66 protected function index(): void
71 $this->tpl()->setContent($table->getHTML());
77 $this->
toolbar()->addButton($this->
lng()->txt(
"obj_add_languages"), $this->
ctrl()
78 ->getLinkTarget($this, self::CMD_ADD_LANGUAGE));
84 $to_translate = (array) $this->
http()->request()->getParsedBody()[self::P_TRANSLATIONS];
85 foreach ($to_translate as
$id =>
$data) {
86 $translation = $this->facade->translationFactory()->findById(
$id);
87 $translation->setTranslation(
$data[
'translation']);
88 $translation->setDescription(
$data[
'description']);
89 $translation->store();
91 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
'bibl_msg_translations_saved'),
true);
98 $to_delete = (array) $this->
http()->request()->getParsedBody()[self::P_DELETE];
99 foreach ($to_delete as
$id) {
100 $this->facade->translationFactory()->deleteById($id);
102 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
'bibl_msg_translations_deleted'),
true);
111 $this->tpl()->setContent($form->getHTML());
118 if ($form->checkInput()) {
119 $ad = $form->getInput(
"additional_langs");
121 foreach ($ad as $language_key) {
122 $this->facade->translationFactory()
123 ->findArCreateInstanceForFieldAndlanguage($this->field, $language_key);
126 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng()->txt(
"msg_obj_modified"),
true);
130 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng()->txt(
'err_check_input'));
131 $form->setValuesByPost();
132 $this->tpl()->setContent($form->getHTML());
139 $form->setFormAction($this->
ctrl()->getFormAction($this));
150 $options = array(
"" => $this->
lng()->txt(
"please_select")) + $options;
152 $si->setOptions($options);
156 $form->setTitle($this->
lng()->txt(
"obj_add_languages"));
157 $form->addCommandButton(self::CMD_SAVE_LANGUAGES, $this->
lng()->txt(
"save"));
158 $form->addCommandButton(self::CMD_DEFAULT, $this->
lng()->txt(
"cancel"));
166 $this->
ctrl()->redirect($this, self::CMD_DEFAULT);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilBiblTranslationGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilBiblAdminFactoryFacadeInterface $facade
static http()
Fetches the global http state from ILIAS.
ilBiblFieldInterface $field
const CMD_DELETE_TRANSLATIONS
ilGlobalTemplateInterface $main_tpl
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(ilBiblAdminFactoryFacadeInterface $facade, \ilBiblFieldInterface $field)
ilBiblTranslationGUI constructor.
const CMD_SAVE_TRANSLATIONS