ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTermsOfServiceUserHasGlobalRoleCriterion.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
29 
30  public function __construct(ilRbacReview $rbacReview, ilObjectDataCache $objectCache)
31  {
32  $this->rbacReview = $rbacReview;
33  $this->objectCache = $objectCache;
34  }
35 
36  public function getTypeIdent(): string
37  {
38  return 'usr_global_role';
39  }
40 
41  public function hasUniqueNature(): bool
42  {
43  return false;
44  }
45 
47  {
48  $roleId = $config['role_id'] ?? 0;
49 
50  if (!is_numeric($roleId) || $roleId < 1 || $roleId > PHP_INT_MAX || is_float($roleId)) {
51  return false;
52  }
53 
54  if (!$this->rbacReview->isGlobalRole((int) $roleId)) {
55  return false;
56  }
57 
58  return $this->rbacReview->isAssigned($user->getId(), (int) $roleId);
59  }
60 
62  {
63  return new ilTermsOfServiceUserHasGlobalRoleCriterionGUI($this, $lng, $this->rbacReview, $this->objectCache);
64  }
65 }
Interface ilTermsOfServiceCriterionTypeGUI.
Interface ilTermsOfServiceCriterionType.
hasUniqueNature()
Returns whether or not a criterion is unique by it&#39;s nature.
$lng
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
Class ilTermsOfServiceCriterionConfig.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
evaluate(ilObjUser $user, ilTermsOfServiceCriterionConfig $config)
__construct(ilRbacReview $rbacReview, ilObjectDataCache $objectCache)