ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 }
51 ?>