3 declare(strict_types=1);
26 $this->
ctrl = $DIC->ctrl();
27 $this->tpl = $DIC->ui()->mainTemplate();
28 $this->
toolbar = $DIC->toolbar();
29 $this->
tabs = $DIC->tabs();
31 $this->
language->loadLanguageModule(
'obj');
32 $this->request = $DIC->http()->request();
34 $this->
logger = $DIC->logger()->amet();
43 $this->
ctrl->setParameterByClass(
44 strtolower(get_class($this)),
46 $this->record->getRecordId()
49 $next_class = $this->
ctrl->getNextClass($this);
50 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
51 switch ($next_class) {
57 protected function setTabs(
string $active_tab)
59 $this->
tabs->activateTab($active_tab);
72 $this->
tabs->activateTab(self::CMD_DEFAULT);
76 $this->tpl->setContent($form->getHTML());
81 $form = new \ilPropertyFormGUI();
82 $form->setFormAction($this->
ctrl->getFormAction($this));
83 $form->setTitle($this->
language->txt(
'obj_add_languages'));
87 $this->
language->txt(
'obj_additional_langs'),
90 $languages->setOptions($language_options);
91 $languages->setMulti(
true);
92 $languages->setRequired(
true);
93 $form->addItem($languages);
95 $form->addCommandButton(
96 self::CMD_SAVE_ADDITIONAL_TRANSLATIONS,
99 $form->addCommandButton(
109 $button->setCaption(
'obj_add_languages');
111 $this->
ctrl->getLinkTargetByClass(
112 strtolower(get_class($this)),
113 self::CMD_ADD_TRANSLATION
116 $this->
toolbar->addButtonInstance($button);
127 $this->
language->loadLanguageModule(
'meta');
130 $options[
''] = $this->
language->txt(
'select_one');
131 foreach ($installed_languages as
$key => $language) {
132 if ($languages->isConfigured($language)) {
143 if (!$form->checkInput()) {
144 $form->setValuesByPost();
145 $this->tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'err_check_input'));
149 foreach (array_unique((array) $form->getInput(
'languages')) as $language_code) {
151 $languages->addTranslationEntry($language_code);
154 $this->tpl->setOnScreenMessage(
'success', $this->
language->txt(
'settings_saved'),
true);
155 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addTranslations(ilPropertyFormGUI $form=null)
show translation creation form
addToolbarLanguageCreation()
const CMD_ADD_TRANSLATION
getAvailableLanguagesOptions()
setTabs(string $active_tab)
saveAdditionalTranslations()
const CMD_SAVE_ADDITIONAL_TRANSLATIONS
RequestInterface $request
executeCommand()
Execute command and save parameter record id.
__construct(ilAdvancedMDRecord $record)
initCreateTranslationForm()
ilAdvancedMDRecord $record
static _getInstalledLanguages()
Get installed languages.
static getInstanceByRecordId(int $record_id)