ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserLanguage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 use ilObjUser;
30 
31 class UserLanguage implements Condition
32 {
33  public function __construct(
34  private readonly CriterionContent $criterion,
35  private readonly UserLanguageDefinition $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->translatedLanguage($this->criterion->arguments()['lng'])
46  ));
47  }
48 
49  public function eval(ilObjUser $user): bool
50  {
51  return strtoupper($user->getLanguage()) === strtoupper($this->criterion->arguments()['lng']);
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 UserLanguageDefinition $definition, private readonly UIFactory $create)