ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserCountry.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 use ilObjUser;
30 
31 class UserCountry implements Condition
32 {
33  public function __construct(
34  private readonly CriterionContent $criterion,
35  private readonly UserCountryDefinition $definition,
36  private readonly UIFactory $create
37  ) {
38  }
39 
40  public function asComponent(): Component
41  {
42  return $this->create->legacy()->content(sprintf(
43  '<div><b>%s</b><br/>%s</div>',
44  $this->definition->translatedType(),
45  $this->definition->translatedCountry($this->criterion->arguments()['country'] ?? '')
46  ));
47  }
48 
49  public function eval(ilObjUser $user): bool
50  {
51  return strtoupper($user->getCountry()) === strtoupper($this->criterion->arguments()['country']);
52  }
53 
54  public function definition(): ConditionDefinition
55  {
56  return $this->definition;
57  }
58 
59  public function knownToNeverMatchWith(Condition $other): bool
60  {
61  return $other instanceof (self::class);
62  }
63 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private readonly CriterionContent $criterion, private readonly UserCountryDefinition $definition, private readonly UIFactory $create)
Definition: UserCountry.php:33