19 declare(strict_types=1);
54 $option->
setInfo($this->
lng->txt(
'tos_crit_type_usr_country_info'));
57 $this->
lng->txt(
'country'),
58 $this->type->getTypeIdent() .
'_country' 60 $countrySelection->setRequired(
true);
63 foreach ($this->countryCodes as $country) {
64 $options[strtolower($country)] = $this->
lng->txt(
'meta_c_' . strtoupper($country));
66 natcasesort($options);
68 $countrySelection->setOptions([
'' => $this->
lng->txt(
'please_choose')] + $options);
69 $countrySelection->setValue((
string) ($config[
'country'] ??
''));
71 $option->addSubItem($countrySelection);
79 'country' => (
string) $form->
getInput($this->type->getTypeIdent() .
'_country')
87 return $this->
lng->txt(
'tos_crit_type_usr_country');
92 $country = $config[
'country'] ??
'';
94 if (!is_string($country) || 2 !== strlen($country)) {
95 return $uiFactory->
legacy(
'');
98 return $uiFactory->
legacy($this->
lng->txt(
'meta_c_' . strtoupper($country)));
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...
legacy(string $content)
description: purpose: > This component is used to wrap an existing ILIAS UI element into a UI compon...
ilTermsOfServiceUserHasCountryCriterion $type
Class ilTermsOfServiceCriterionConfig.
getConfigByForm(ilPropertyFormGUI $form)
getValuePresentation(ilTermsOfServiceCriterionConfig $config, Factory $uiFactory)
Class ilTermsOfServiceUserHasCountryCriterion.
appendOption(ilRadioGroupInputGUI $group, ilTermsOfServiceCriterionConfig $config)
__construct(ilTermsOfServiceUserHasCountryCriterion $type, ilLanguage $lng, array $countryCodes)
ilTermsOfServiceUserHasLanguageCriterionGUI constructor.
Class ilTermsOfServiceUserHasCountryCriterionGUI.