ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserCountryDefinition.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 use ilCountry;
31 use Closure;
32 
34 {
38  public function __construct(private readonly UI $ui, private readonly Closure $required)
39  {
40  }
41 
42  public function formGroup(array $arguments = []): Group
43  {
44  $countries = ilCountry::getCountryCodes();
45  $countries = array_combine($countries, array_map($this->translatedCountry(...), $countries));
46 
47  return $this->ui->create()->input()->field()->group([
48  'country' => $this->ui->create()->input()->field()->select(
49  $this->ui->txt('country'),
50  $countries
51  )->withRequired(true, ($this->required)($countries))->withValue(strtoupper($arguments['country'] ?? '') ?: null)
52  ], $this->ui->txt('crit_type_usr_country'), $this->ui->txt('crit_type_usr_country_info'));
53  }
54 
55  public function withCriterion(CriterionContent $criterion): Condition
56  {
57  return new UserCountry($criterion, $this, $this->ui->create());
58  }
59 
60  public function translatedType(): string
61  {
62  return $this->ui->txt('crit_type_usr_country');
63  }
64 
65  public function translatedCountry(string $country): string
66  {
67  return $this->ui->txt('meta_c_' . strtoupper($country));
68  }
69 }
__construct(private readonly UI $ui, private readonly Closure $required)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getCountryCodes()
Get country codes (DIN EN 3166-1)