ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ObjectReferenceProperties.php
Go to the documentation of this file.
1<?php
2
19declare(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 AvailabilityPeriod $object_time_based_activation_property = new AvailabilityPeriod()
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}
__construct(private ?int $object_reference_id=null, private ?int $obj_id=null, private ?\DateTimeImmutable $date_of_deletion=null, private ?int $deleted_by=null, private AvailabilityPeriod $object_time_based_activation_property=new AvailabilityPeriod())
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...