19 declare(strict_types=1);
44 $option->
setInfo($this->
lng->txt(
'tos_crit_type_usr_language_info'));
47 $this->
lng->txt(
'language'),
48 $this->type->getTypeIdent() .
'_lng' 50 $languageSelection->setRequired(
true);
53 foreach ($this->
lng->getInstalledLanguages() as
$lng) {
54 $options[
$lng] = $this->
lng->txt(
'meta_l_' . $lng);
57 natcasesort($options);
59 $languageSelection->setOptions([
'' => $this->
lng->txt(
'please_choose')] + $options);
60 $languageSelection->setValue((
string) ($config[
'lng'] ??
''));
62 $option->addSubItem($languageSelection);
70 'lng' => (
string) $form->
getInput($this->type->getTypeIdent() .
'_lng')
78 return $this->
lng->txt(
'tos_crit_type_usr_language');
83 $lng = $config[
'lng'] ??
'';
85 if (!is_string($lng) || 2 !== strlen($lng)) {
86 return $uiFactory->
legacy(
'');
89 return $uiFactory->
legacy($this->
lng->txt(
'meta_l_' . $lng));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface ilTermsOfServiceCriterionTypeGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilTermsOfServiceUserHasLanguageCriterionGUI.
__construct(ilTermsOfServiceUserHasLanguageCriterion $type, ilLanguage $lng)
legacy(string $content)
description: purpose: > This component is used to wrap an existing ILIAS UI element into a UI compon...
Class ilTermsOfServiceCriterionConfig.
Class ilTermsOfServiceUserHasLanguageCriterion.
appendOption(ilRadioGroupInputGUI $group, ilTermsOfServiceCriterionConfig $config)
getValuePresentation(ilTermsOfServiceCriterionConfig $config, Factory $uiFactory)
getConfigByForm(ilPropertyFormGUI $form)
ilTermsOfServiceUserHasLanguageCriterion $type