39 $this->lng->txt(
'language'),
40 $this->type->getTypeIdent() .
'_lng' 42 $languageSelection->setRequired(
true);
45 foreach ($this->lng->getInstalledLanguages() as
$lng) {
46 $options[
$lng] = $this->lng->txt(
'meta_l_' .
$lng);
51 $languageSelection->setOptions([
'' => $this->lng->txt(
'please_choose')] + $options);
52 $languageSelection->
setValue((
string) ($config[
'lng'] ??
''));
54 $option->addSubItem($languageSelection);
65 $this->lng->txt(
'language'),
66 $this->type->getTypeIdent() .
'_lng' 68 $languageSelection->setRequired(
true);
71 foreach ($this->lng->getInstalledLanguages() as
$lng) {
72 $options[
$lng] = $this->lng->txt(
'meta_l_' .
$lng);
77 $languageSelection->setOptions([
'' => $this->lng->txt(
'please_choose')] + $options);
78 $languageSelection->setValue((
string) ($config[
'lng'] ??
''));
80 return $languageSelection;
89 'lng' => (
string) $form->
getInput($this->type->getTypeIdent() .
'_lng')
100 return $this->lng->txt(
'acc_crit_type_usr_language');
108 $lng = $config[
'lng'] ??
'';
110 if (!is_string(
$lng) || 2 !== strlen(
$lng)) {
111 return $uiFactory->
legacy(
'');
114 return $uiFactory->
legacy($this->lng->txt(
'meta_l_' . (
string)
$lng));
getIdentPresentation()
string
This class represents an option in a radio group.
__construct(ilAccessibilityUserHasLanguageCriterion $type, ilLanguage $lng)
ilAccessibilityUserHasLanguageCriterionGUI constructor.
Class ilAccessibilityUserHasLanguageCriterion.
Class ilAccessibilityCriterionConfig.
getConfigByForm(ilPropertyFormGUI $form)
ilAccessibilityCriterionConfig
setValue($a_value)
Set Value.
This is how the factory for UI elements looks.
legacy($content)
description: purpose: > This component is used to wrap an existing ILIAS UI element into a UI compon...
appendOption(ilRadioGroupInputGUI $group, ilAccessibilityCriterionConfig $config)
getValuePresentation(ilAccessibilityCriterionConfig $config, Factory $uiFactory)
Component
Class ilAccessibilityUserHasLanguageCriterionGUI.
getSelection(ilAccessibilityCriterionConfig $config)
Interface ilAccessibilityCriterionTypeGUI.