ILIAS
Release_4_4_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
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
24
public
function
__construct
(
ilDateTime
$start
,
ilDateTime
$end
)
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
?>
Services
Booking
classes
class.ilBookingPeriod.php
Generated on Wed Apr 27 2016 20:01:32 for ILIAS by
1.8.1.2 (using
Doxyfile
)