ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjAdministrativeNotificationAccess.php
Go to the documentation of this file.
1 <?php
2 
24 {
26 
27  protected ?int $ref_id;
28 
32  public function __construct()
33  {
34  global $DIC;
35  $this->rbacsystem = $DIC->rbac()->system();
36  $this->ref_id = $DIC->http()->wrapper()->query()->has('ref_id')
37  ? $DIC->http()->wrapper()->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int())
38  : null;
39  }
40 
44  public function checkAccessAndThrowException(string $permission): void
45  {
46  if (!$this->hasUserPermissionTo($permission)) {
47  throw new ilException('Permission denied');
48  }
49  }
50 
51  public function hasUserPermissionTo(string $permission): bool
52  {
53  return $this->rbacsystem->checkAccess($permission, $this->ref_id);
54  }
55 }
global $DIC
Definition: feed.php:28
__construct()
ilObjAdministrativeNotificationAccess constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...