ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilBookingPeriod.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once('./Services/Calendar/interfaces/interface.ilDatePeriod.php');
5
17{
18 private $start = null;
19 private $end = null;
20
25 {
26 $this->start = $start;
27 $this->end = $end;
28 }
32 public function getEnd()
33 {
34 return $this->end;
35 }
39 public function getStart()
40 {
41 return $this->start;
42 }
46 public function isFullday()
47 {
48 return false;
49 }
50}
An exception for terminatinating execution or to throw for unit testing.
Booking period Used for calculation of recurring events.
__construct(ilDateTime $start, ilDateTime $end)
Constructor.
@classDescription Date and time handling