3 declare(strict_types=1);
33 $this->ui_factory = $DIC->ui()->factory();
34 $this->ui_renderer = $DIC->ui()->renderer();
40 self::RECORD_LANGUAGE_TABLE_ID_PREFIX . $this->record->getRecordId()
47 public function init(): void
49 $this->
lng->loadLanguageModule(
'meta');
50 $this->
setTitle($this->
lng->txt(
'md_adv_record_lng_table'));
53 $this->
addColumn($this->
lng->txt(
'md_adv_record_lng_table_lng'), self::COL_LANGUAGE,
'25%');
54 $this->
addColumn($this->
lng->txt(
'md_adv_record_lng_table_default'), self::COL_DEFAULT,
'25%');
55 $this->
addColumn($this->
lng->txt(
'md_adv_record_lng_table_active'), self::COL_ACTIVE,
'25%');
56 $this->
addColumn($this->
lng->txt(
'md_adv_record_lng_table_inst'), self::COL_INSTALLED,
'25%');
58 $this->
addMultiCommand(self::CMD_SAVE_ACTION, $this->
lng->txt(
'md_adv_record_activate_languages'));
60 $this->
enable(
'select_all');
62 $this->
setRowTemplate(
'tpl.record_language_selection_row.html',
'Services/AdvancedMetaData');
81 foreach ($all_languages as $language_code) {
83 $row[self::COL_LANGUAGE_CODE] = $language_code;
84 $row[self::COL_LANGUAGE] = $this->
lng->txt(
'meta_l_' . $language_code);
85 $row[self::COL_INSTALLED] = in_array($language_code, $installed_languages);
86 if ($this->record_translation->isConfigured($language_code)) {
87 $row[self::COL_ACTIVE] =
true;
88 $translation = $this->record_translation->getTranslation($language_code);
89 $row[self::COL_DEFAULT] = ($translation->getLangKey() == $this->record->getDefaultLanguage());
91 $row[self::COL_ACTIVE] =
false;
92 $row[self::COL_DEFAULT] =
false;
100 protected function fillRow(array $a_set): void
102 $this->tpl->setVariable(
'VAL_ID', $a_set[self::COL_LANGUAGE_CODE]);
104 if ($a_set[self::COL_ACTIVE]) {
105 $this->tpl->setVariable(
'ACTIVATION_CHECKED',
'checked="checked"');
108 $this->tpl->setVariable(
'TXT_LANGUAGE', $a_set[self::COL_LANGUAGE]);
109 if ($a_set[self::COL_DEFAULT]) {
110 $this->tpl->setVariable(
'DEFAULT_CHECKED',
'checked="checked"');
112 if ($a_set[self::COL_ACTIVE]) {
113 $this->tpl->setVariable(
115 $this->ui_renderer->render(
116 $this->ui_factory->symbol()->glyph()->apply()
120 if ($a_set[self::COL_INSTALLED]) {
121 $this->tpl->setVariable(
123 $this->ui_renderer->render(
124 $this->ui_factory->symbol()->glyph()->apply()
136 $parsed_languages = [];
137 foreach ($languages as $language) {
138 $parsed_languages[] = $language[
'title'];
140 return $parsed_languages;
An entity that renders components to a string output.
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
const RECORD_LANGUAGE_TABLE_ID_PREFIX
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
ilAdvancedMDRecordTranslations $record_translation
Class ilAdvancedMDRecordTranslation.
static _getObjectsByType(string $obj_type="", int $owner=null)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
__construct(ilAdvancedMDRecord $record, object $a_parent_obj, string $a_parent_cmd="")
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
ilAdvancedMDRecord $record
addMultiCommand(string $a_cmd, string $a_text)
static _getInstalledLanguages()
Get installed languages.
setMaxCount(int $a_max_count)
set max.
static getInstanceByRecordId(int $record_id)