ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Readable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Access;
22 
23 use Closure;
24 use ilAccessHandler;
25 use ilObject;
26 
27 class Readable
28 {
30  private readonly Closure $references_of;
31  private readonly Incident $incident;
32 
33  public function __construct(
34  private readonly ilAccessHandler $access,
35  $references_of = [ilObject::class, '_getAllReferences'],
36  ?Incident $incident = null
37  ) {
38  $this->references_of = Closure::fromCallable($references_of);
39  $this->incident = $incident ?? new Incident();
40  }
41 
45  public function references(array $references): bool
46  {
47  return $this->incident->any(fn(int $ref_id): bool => (
48  $this->access->checkAccess('read', '', $ref_id)
49  ), $references);
50  }
51 
52  public function objectId(int $obj_id): bool
53  {
54  return $this->references(($this->references_of)($obj_id));
55  }
56 }
readonly Closure $references_of
Definition: Readable.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
readonly Incident $incident
Definition: Readable.php:31
__construct(private readonly ilAccessHandler $access, $references_of=[ilObject::class, '_getAllReferences'], ?Incident $incident=null)
Definition: Readable.php:33
references(array $references)
Definition: Readable.php:45