ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ObjectReferenceProperties.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  public function __construct(
28  private ?int $object_reference_id = null,
29  private ?int $obj_id = null,
30  private ?\DateTimeImmutable $date_of_deletion = null,
31  private ?int $deleted_by = null,
32  private ObjectAvailabilityPeriodProperty $object_time_based_activation_property = new ObjectAvailabilityPeriodProperty()
33  ) {
34  }
35 
37  {
38  return $this->object_time_based_activation_property;
39  }
40 
41  public function getObjectReferenceId(): ?int
42  {
43  return $this->object_reference_id;
44  }
45 
46  public function getObjectId(): ?int
47  {
48  return $this->obj_id;
49  }
50 
51  public function getDateOfDeletion(): ?\DateTimeImmutable
52  {
53  return $this->date_of_deletion;
54  }
55 
56  public function getDeletedBy(): ?int
57  {
58  return $this->deleted_by;
59  }
60 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private ?int $object_reference_id=null, private ?int $obj_id=null, private ?\DateTimeImmutable $date_of_deletion=null, private ?int $deleted_by=null, private ObjectAvailabilityPeriodProperty $object_time_based_activation_property=new ObjectAvailabilityPeriodProperty())
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...