ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f87
ilBookingPeriod Class Reference

Booking period Used for calculation of recurring events. More...

+ Inheritance diagram for ilBookingPeriod:
+ Collaboration diagram for ilBookingPeriod:

Public Member Functions

 __construct (ilDateTime $start, ilDateTime $end)
 Constructor. More...
 
 getEnd ()
 
 getStart ()
 
 isFullday ()
 

Private Attributes

 $start = null
 
 $end = null
 

Additional Inherited Members

Detailed Description

Booking period Used for calculation of recurring events.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 16 of file class.ilBookingPeriod.php.

Constructor & Destructor Documentation

◆ __construct()

ilBookingPeriod::__construct ( ilDateTime  $start,
ilDateTime  $end 
)

Constructor.

Definition at line 24 of file class.ilBookingPeriod.php.

References $end, and $start.

25  {
26  $this->start = $start;
27  $this->end = $end;
28  }

Member Function Documentation

◆ getEnd()

ilBookingPeriod::getEnd ( )
See also
ilDatePeriod::getEnd()

Implements ilDatePeriod.

Definition at line 32 of file class.ilBookingPeriod.php.

References $end.

33  {
34  return $this->end;
35  }

◆ getStart()

ilBookingPeriod::getStart ( )
See also
ilDatePeriod::getStart()

Implements ilDatePeriod.

Definition at line 39 of file class.ilBookingPeriod.php.

References $start.

40  {
41  return $this->start;
42  }

◆ isFullday()

ilBookingPeriod::isFullday ( )
See also
ilDatePeriod::isFullday()

Implements ilDatePeriod.

Definition at line 46 of file class.ilBookingPeriod.php.

47  {
48  return false;
49  }

Field Documentation

◆ $end

ilBookingPeriod::$end = null
private

Definition at line 19 of file class.ilBookingPeriod.php.

Referenced by __construct(), and getEnd().

◆ $start

ilBookingPeriod::$start = null
private

Definition at line 18 of file class.ilBookingPeriod.php.

Referenced by __construct(), and getStart().


The documentation for this class was generated from the following file: