ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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}
51?>
Booking period Used for calculation of recurring events.
__construct(ilDateTime $start, ilDateTime $end)
Constructor.
@classDescription Date and time handling