ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAccessibilityUserHasLanguageCriterion.php
Go to the documentation of this file.
1 <?php
2 
23 {
24  public function getTypeIdent(): string
25  {
26  return 'usr_language';
27  }
28 
29  public function hasUniqueNature(): bool
30  {
31  return true;
32  }
33 
34  public function evaluate(ilObjUser $user, ilAccessibilityCriterionConfig $config): bool
35  {
36  $lng = $config['lng'] ?? '';
37 
38  if (!is_string($lng) || 2 !== strlen($lng)) {
39  return false;
40  }
41 
42  $result = strtolower($lng) === strtolower($user->getLanguage());
43 
44  return $result;
45  }
46 
48  {
49  return new ilAccessibilityUserHasLanguageCriterionGUI($this, $lng);
50  }
51 }
hasUniqueNature()
Returns whether or not a criterion is unique by it&#39;s nature.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $lng
Definition: privfeed.php:31
evaluate(ilObjUser $user, ilAccessibilityCriterionConfig $config)
Interface ilAccessibilityCriterionTypeGUI.