ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilBookingPeriod.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
27{
28 private ?ilDateTime $start = null;
29 private ?ilDateTime $end = null;
30
35 {
36 $this->start = $start;
37 $this->end = $end;
38 }
39
43 public function getEnd(): ?ilDateTime
44 {
45 return $this->end;
46 }
47
51 public function getStart(): ?ilDateTime
52 {
53 return $this->start;
54 }
55
59 public function isFullday(): bool
60 {
61 return false;
62 }
63}
Booking period Used for calculation of recurring events.
__construct(ilDateTime $start, ilDateTime $end)
Constructor.
@classDescription Date and time handling