ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RoleDefinition.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 use ilRbacReview;
32 use Closure;
34 
36 {
40  public function __construct(
41  private readonly UI $ui,
42  private readonly ilObjectDataCache $cache,
43  private readonly ilRbacReview $review,
44  private readonly Closure $required
45  ) {
46  }
47 
48  public function formGroup(array $arguments = []): Group
49  {
50  $roles = $this->review->getGlobalRoles();
51  $roles = array_combine($roles, array_map($this->translatedRole(...), $roles));
52  $default_role = isset($roles[SYSTEM_ROLE_ID]) ? SYSTEM_ROLE_ID : key($roles);
53 
54  return $this->ui->create()->input()->field()->group([
55  'role_id' => $this->radio(
56  $this->ui->txt('perm_global_role'),
57  $roles,
58  $arguments['role_id'] ?? $default_role
59  )->withRequired(true, ($this->required)($roles)),
60  ], $this->ui->txt('crit_type_usr_global_role'), $this->ui->txt('crit_type_usr_global_role_info'));
61  }
62 
63  public function translatedRole(int $role): string
64  {
65  return $this->cache->lookupTitle($role);
66  }
67 
68  public function translatedType(): string
69  {
70  return $this->ui->txt('crit_type_usr_global_role');
71  }
72 
73  public function withCriterion(CriterionContent $criterion): Condition
74  {
75  return new Role($criterion, $this, $this->ui->create(), $this->review);
76  }
77 
81  private function radio(string $lang_key, array $options, $value): Radio
82  {
83  $field = $this->ui->create()->input()->field()->radio($lang_key);
84  foreach ($options as $key => $label) {
85  $field = $field->withOption((string) $key, $label);
86  }
87  return $value === null ? $field : $field->withValue($value);
88  }
89 }
const SYSTEM_ROLE_ID
Definition: constants.php:29
__construct(private readonly UI $ui, private readonly ilObjectDataCache $cache, private readonly ilRbacReview $review, private readonly Closure $required)
This is what a radio-input looks like.
Definition: Radio.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
radio(string $lang_key, array $options, $value)