ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilBookingPeriod.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
26
class
ilBookingPeriod
implements
ilDatePeriod
27
{
28
private
?
ilDateTime
$start
=
null
;
29
private
?
ilDateTime
$end
=
null
;
30
34
public
function
__construct
(
ilDateTime
$start,
ilDateTime
$end)
35
{
36
$this->start =
$start
;
37
$this->end =
$end
;
38
}
39
43
public
function
getEnd
(): ?
ilDateTime
44
{
45
return
$this->end
;
46
}
47
51
public
function
getStart
(): ?
ilDateTime
52
{
53
return
$this->start
;
54
}
55
59
public
function
isFullday
(): bool
60
{
61
return
false
;
62
}
63
}
ilDateTime
ilBookingPeriod\$start
ilDateTime $start
Definition:
class.ilBookingPeriod.php:28
ilBookingPeriod\isFullday
isFullday()
Definition:
class.ilBookingPeriod.php:59
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilBookingPeriod\$end
ilDateTime $end
Definition:
class.ilBookingPeriod.php:29
ilBookingPeriod\getEnd
getEnd()
Definition:
class.ilBookingPeriod.php:43
ilBookingPeriod\getStart
getStart()
Definition:
class.ilBookingPeriod.php:51
ilDatePeriod
ilBookingPeriod
Booking period Used for calculation of recurring events.
Definition:
class.ilBookingPeriod.php:26
ilBookingPeriod\__construct
__construct(ilDateTime $start, ilDateTime $end)
Constructor.
Definition:
class.ilBookingPeriod.php:34
components
ILIAS
Calendar
classes
Booking
class.ilBookingPeriod.php
Generated on Thu Apr 10 2025 23:02:45 for ILIAS by
1.8.13 (using
Doxyfile
)