ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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 
4 include_once('./Services/Calendar/interfaces/interface.ilDatePeriod.php');
5 
16 class ilBookingPeriod implements ilDatePeriod
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 }
Date and time handling
Booking period Used for calculation of recurring events.
__construct(ilDateTime $start, ilDateTime $end)
Constructor.