19 declare(strict_types=1);
30 $this->
setTabs(self::CMD_DEFAULT);
37 $language_table->init();
38 $language_table->parse();
40 $this->tpl->setContent($language_table->getHTML());
48 $languages = (array) ($this->request->getParsedBody()[
'active_languages'] ?? []);
49 $default = (string) $this->request->getParsedBody()[
'default'];
51 if (!in_array($default, $languages)) {
52 $this->tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'err_check_input'),
true);
53 $this->tpl->setOnScreenMessage(
'info', $this->
language->txt(
'md_adn_int_error_no_default'),
true);
54 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
58 foreach ($translations->getTranslations() as $translation) {
59 if (!in_array($translation->getLangKey(), $languages)) {
60 $translation->delete();
63 foreach ($languages as $lang_key) {
64 if (!$translations->isConfigured($lang_key)) {
65 $translations->addTranslationEntry($lang_key);
69 $this->record->setDefaultLanguage($default);
70 $this->record->update();
72 $this->tpl->setOnScreenMessage(
'success', $this->
language->txt(
'settings_saved'),
true);
73 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
setTabs(string $active_tab)
Class ilAdvancedMDRecordTranslationGUI ilAdvancedMDRecordTranslationGUI: ilAdvancedMDSettingsGUI.
language()
description: > Example for rendring a language glyph.
static getInstanceByRecordId(int $record_id)