ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
EmployeeTalkPeriod.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\EmployeeTalk\Talk
;
22
23
use
ilDatePeriod
;
24
use
ilDateTime
;
25
26
final
class
EmployeeTalkPeriod
implements
ilDatePeriod
27
{
28
private
ilDateTime
$start
;
29
private
ilDateTime
$end
;
30
private
bool
$fullDay
;
31
38
public
function
__construct
(
ilDateTime
$start,
ilDateTime
$end,
bool
$fullDay)
39
{
40
$this->start =
$start
;
41
$this->end =
$end
;
42
$this->fullDay =
$fullDay
;
43
}
44
45
public
function
getStart
():
ilDateTime
46
{
47
return
$this->start
;
48
}
49
50
public
function
getEnd
():
ilDateTime
51
{
52
return
$this->end
;
53
}
54
55
public
function
isFullday
(): bool
56
{
57
return
$this->fullDay
;
58
}
59
}
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\getEnd
getEnd()
Get end of period.
Definition:
EmployeeTalkPeriod.php:50
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\getStart
getStart()
Get start of date period.
Definition:
EmployeeTalkPeriod.php:45
ilDateTime
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod
Definition:
EmployeeTalkPeriod.php:26
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\$end
ilDateTime $end
Definition:
EmployeeTalkPeriod.php:29
ILIAS\EmployeeTalk\Talk
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\$start
ilDateTime $start
Definition:
EmployeeTalkPeriod.php:28
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\$fullDay
bool $fullDay
Definition:
EmployeeTalkPeriod.php:30
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\isFullday
isFullday()
is event a fullday period
Definition:
EmployeeTalkPeriod.php:55
ILIAS\EmployeeTalk\Talk\EmployeeTalkPeriod\__construct
__construct(ilDateTime $start, ilDateTime $end, bool $fullDay)
EmployeeTalkPeriod constructor.
Definition:
EmployeeTalkPeriod.php:38
ilDatePeriod
components
ILIAS
EmployeeTalk
classes
Talk
EmployeeTalkPeriod.php
Generated on Sat Apr 5 2025 23:03:03 for ILIAS by
1.8.13 (using
Doxyfile
)