ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Readable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Modules\Test;
22 
23 use Closure;
25 use ilObject;
26 
27 class Readable
28 {
33 
34  public function __construct(
35  Container $container,
36  $references_of = [ilObject::class, '_getAllReferences'],
37  Incident $incident = null
38  ) {
39  $this->container = $container;
40  $this->references_of = Closure::fromCallable($references_of);
41  $this->incident = $incident ?? new Incident();
42  }
43 
47  public function references(array $references): bool
48  {
49  return $this->incident->any(fn (int $ref_id): bool => (
50  $this->container->access()->checkAccess('read', '', $ref_id)
51  ), $references);
52  }
53 
54  public function objectId(int $obj_id): bool
55  {
56  return $this->references(($this->references_of)($obj_id));
57  }
58 }
__construct(Container $container, $references_of=[ilObject::class, '_getAllReferences'], Incident $incident=null)
Definition: Readable.php:34
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
$ref_id
Definition: ltiauth.php:67
references(array $references)
Definition: Readable.php:47