19 declare(strict_types=1);
42 $this->
ctrl = $DIC->ctrl();
43 $this->tpl = $DIC->ui()->mainTemplate();
44 $this->
toolbar = $DIC->toolbar();
45 $this->
tabs = $DIC->tabs();
47 $this->
language->loadLanguageModule(
'obj');
48 $this->request = $DIC->http()->request();
50 $this->
logger = $DIC->logger()->amet();
59 $this->
ctrl->setParameterByClass(
60 strtolower(get_class($this)),
62 $this->record->getRecordId()
65 $next_class = $this->
ctrl->getNextClass($this);
66 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
67 switch ($next_class) {
73 protected function setTabs(
string $active_tab)
75 $this->
tabs->activateTab($active_tab);
88 $this->
tabs->activateTab(self::CMD_DEFAULT);
92 $this->tpl->setContent($form->getHTML());
97 $form = new \ilPropertyFormGUI();
98 $form->setFormAction($this->
ctrl->getFormAction($this));
99 $form->setTitle($this->
language->txt(
'obj_add_languages'));
103 $this->
language->txt(
'obj_additional_langs'),
107 $languages->setMulti(
true);
108 $languages->setRequired(
true);
109 $form->addItem($languages);
111 $form->addCommandButton(
112 self::CMD_SAVE_ADDITIONAL_TRANSLATIONS,
115 $form->addCommandButton(
130 $this->
language->loadLanguageModule(
'meta');
133 $options[
''] = $this->
language->txt(
'select_one');
134 foreach ($installed_languages as $key => $language) {
135 if ($languages->isConfigured($language)) {
146 if (!$form->checkInput()) {
147 $form->setValuesByPost();
148 $this->tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'err_check_input'));
152 foreach (array_unique((array) $form->getInput(
'languages')) as $language_code) {
154 $languages->addTranslationEntry($language_code);
157 $this->tpl->setOnScreenMessage(
'success', $this->
language->txt(
'settings_saved'),
true);
158 $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
const CMD_ADD_TRANSLATION
getAvailableLanguagesOptions()
setTabs(string $active_tab)
saveAdditionalTranslations()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const CMD_SAVE_ADDITIONAL_TRANSLATIONS
RequestInterface $request
executeCommand()
Execute command and save parameter record id.
__construct(ilAdvancedMDRecord $record)
initCreateTranslationForm()
ilAdvancedMDRecord $record
language()
description: > Example for rendring a language glyph.
static _getInstalledLanguages()
Get installed languages.
static getInstanceByRecordId(int $record_id)