ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
ObjectId.php
Go to the documentation of this file.
1 <?php namespace ILIAS\Data;
2 
3 use ilObject2;
4 
12 class ObjectId
13 {
14 
18  private $object_id;
19 
20 
26  public function __construct(int $object_id)
27  {
28  $this->object_id = $object_id;
29  }
30 
31 
35  public function toInt() : int
36  {
37  return (int) $this->object_id;
38  }
39 
40 
44  public function toReferenceIds() : array
45  {
46  $ref_ids = [];
47  foreach (ilObject2::_getAllReferences($this->object_id) as $reference) {
48  $ref_ids[] = new ReferenceId((int) $reference);
49  }
50 
51  return $ref_ids;
52  }
53 }
__construct(int $object_id)
ReferenceId constructor.
Definition: ObjectId.php:26
static _getAllReferences($a_id)