ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilPDSelectedItemBlockMembershipsDTO.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
final
class
ilPDSelectedItemBlockMembershipsDTO
22
{
23
private
int
$refId
;
24
private
int
$objId
;
25
private
string
$type
;
26
private
string
$title
;
27
private
string
$description
;
28
private
int
$parentRefId
;
29
private
int
$parentLftTree
;
30
private
bool
$objectPeriodHasTime
;
31
private
?
DateTimeImmutable
$periodStart
;
32
private
?
DateTimeImmutable
$periodEnd
;
33
34
public
function
__construct
(
35
int
$refId,
36
int
$objId,
37
string
$type,
38
string
$title,
39
string
$description,
40
int
$parentRefId,
41
int
$parentLftTree,
42
bool
$objectPeriodHasTime,
43
?
DateTimeImmutable
$periodStart,
44
?
DateTimeImmutable
$periodEnd
45
) {
46
$this->refId =
$refId
;
47
$this->objId =
$objId
;
48
$this->type =
$type
;
49
$this->title =
$title
;
50
$this->description =
$description
;
51
$this->parentRefId =
$parentRefId
;
52
$this->parentLftTree =
$parentLftTree
;
53
$this->
objectPeriodHasTime
=
$objectPeriodHasTime
;
54
$this->periodStart =
$periodStart
;
55
$this->periodEnd =
$periodEnd
;
56
}
57
58
public
function
getRefId
():
int
59
{
60
return
$this->refId
;
61
}
62
63
public
function
getObjId
():
int
64
{
65
return
$this->objId
;
66
}
67
68
public
function
getType
(): string
69
{
70
return
$this->type
;
71
}
72
73
public
function
getTitle
(): string
74
{
75
return
$this->title
;
76
}
77
78
public
function
getDescription
(): string
79
{
80
return
$this->description
;
81
}
82
83
public
function
getParentRefId
():
int
84
{
85
return
$this->parentRefId
;
86
}
87
88
public
function
getParentLftTree
():
int
89
{
90
return
$this->parentLftTree
;
91
}
92
93
public
function
objectPeriodHasTime
(): bool
94
{
95
return
$this->objectPeriodHasTime
;
96
}
97
98
public
function
getPeriodStart
(): ?
DateTimeImmutable
99
{
100
return
$this->periodStart
;
101
}
102
103
public
function
getPeriodEnd
(): ?
DateTimeImmutable
104
{
105
return
$this->periodEnd
;
106
}
107
}
ilPDSelectedItemBlockMembershipsDTO\objectPeriodHasTime
objectPeriodHasTime()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:93
ilPDSelectedItemBlockMembershipsDTO\$title
string $title
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:26
DateTimeImmutable
ilPDSelectedItemBlockMembershipsDTO\$refId
int $refId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:23
ilPDSelectedItemBlockMembershipsDTO\getRefId
getRefId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:58
ilPDSelectedItemBlockMembershipsDTO\getType
getType()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:68
ilPDSelectedItemBlockMembershipsDTO\$objId
int $objId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:24
ilPDSelectedItemBlockMembershipsDTO\getPeriodEnd
getPeriodEnd()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:103
ilPDSelectedItemBlockMembershipsDTO\__construct
__construct(int $refId, int $objId, string $type, string $title, string $description, int $parentRefId, int $parentLftTree, bool $objectPeriodHasTime, ?DateTimeImmutable $periodStart, ?DateTimeImmutable $periodEnd)
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:34
ilPDSelectedItemBlockMembershipsDTO\$periodEnd
DateTimeImmutable $periodEnd
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:32
ilPDSelectedItemBlockMembershipsDTO\$description
string $description
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:27
ilPDSelectedItemBlockMembershipsDTO\$periodStart
DateTimeImmutable $periodStart
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:31
ilPDSelectedItemBlockMembershipsDTO\getObjId
getObjId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:63
ilPDSelectedItemBlockMembershipsDTO\getTitle
getTitle()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:73
ilPDSelectedItemBlockMembershipsDTO\getParentRefId
getParentRefId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:83
ilPDSelectedItemBlockMembershipsDTO\getPeriodStart
getPeriodStart()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:98
ilPDSelectedItemBlockMembershipsDTO\$parentLftTree
int $parentLftTree
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:29
ilPDSelectedItemBlockMembershipsDTO
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:21
ilPDSelectedItemBlockMembershipsDTO\$type
string $type
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilPDSelectedItemBlockMembershipsDTO\$objectPeriodHasTime
bool $objectPeriodHasTime
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:30
ilPDSelectedItemBlockMembershipsDTO\getParentLftTree
getParentLftTree()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:88
ilPDSelectedItemBlockMembershipsDTO\getDescription
getDescription()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:78
ilPDSelectedItemBlockMembershipsDTO\$parentRefId
int $parentRefId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:28
Services
Dashboard
ItemsBlock
classes
class.ilPDSelectedItemBlockMembershipsDTO.php
Generated on Fri Apr 4 2025 22:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)