ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
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
}
ilDateTime
ilBookingPeriod\isFullday
isFullday()
Definition:
class.ilBookingPeriod.php:46
ilBookingPeriod\$start
$start
Definition:
class.ilBookingPeriod.php:18
ilDatePeriod
Definition:
interface.ilDatePeriod.php:32
ilBookingPeriod\getEnd
getEnd()
Definition:
class.ilBookingPeriod.php:32
ilBookingPeriod\$end
$end
Definition:
class.ilBookingPeriod.php:19
ilBookingPeriod\getStart
getStart()
Definition:
class.ilBookingPeriod.php:39
ilBookingPeriod
Booking period Used for calculation of recurring events.
Definition:
class.ilBookingPeriod.php:16
ilBookingPeriod\__construct
__construct(ilDateTime $start, ilDateTime $end)
Constructor.
Definition:
class.ilBookingPeriod.php:24
Services
Booking
classes
class.ilBookingPeriod.php
Generated on Sat Apr 5 2025 21:01:15 for ILIAS by
1.8.13 (using
Doxyfile
)