ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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.ilPDSelectedItemBlockMembershipsDTO.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
19
final
class
ilPDSelectedItemBlockMembershipsDTO
20
{
21
private
$refId
;
22
private
$objId
;
23
private
$type
;
24
private
$title
;
25
private
$description
;
26
private
$parentRefId
;
27
private
$parentLftTree
;
28
private
$objectPeriodHasTime
;
29
private
$periodStart
;
30
private
$periodEnd
;
31
32
public
function
__construct
(
33
int
$refId
,
34
int
$objId
,
35
string
$type
,
36
string
$title
,
37
string
$description
,
38
int
$parentRefId
,
39
int
$parentLftTree
,
40
bool
$objectPeriodHasTime
,
41
?
DateTimeImmutable
$periodStart
,
42
?
DateTimeImmutable
$periodEnd
43
) {
44
$this->refId =
$refId
;
45
$this->objId =
$objId
;
46
$this->type =
$type
;
47
$this->title =
$title
;
48
$this->description =
$description
;
49
$this->parentRefId =
$parentRefId
;
50
$this->parentLftTree =
$parentLftTree
;
51
$this->
objectPeriodHasTime
=
$objectPeriodHasTime
;
52
$this->periodStart =
$periodStart
;
53
$this->periodEnd =
$periodEnd
;
54
}
55
56
public
function
getRefId
() : int
57
{
58
return
$this->refId
;
59
}
60
61
public
function
getObjId
() : int
62
{
63
return
$this->objId
;
64
}
65
66
public
function
getType
() : string
67
{
68
return
$this->type
;
69
}
70
71
public
function
getTitle
() : string
72
{
73
return
$this->title
;
74
}
75
76
public
function
getDescription
() : string
77
{
78
return
$this->description
;
79
}
80
81
public
function
getParentRefId
() : int
82
{
83
return
$this->parentRefId
;
84
}
85
86
public
function
getParentLftTree
() : int
87
{
88
return
$this->parentLftTree
;
89
}
90
91
public
function
objectPeriodHasTime
() : bool
92
{
93
return
$this->objectPeriodHasTime
;
94
}
95
96
public
function
getPeriodStart
() : ?
DateTimeImmutable
97
{
98
return
$this->periodStart
;
99
}
100
101
public
function
getPeriodEnd
() : ?
DateTimeImmutable
102
{
103
return
$this->periodEnd
;
104
}
105
}
ilPDSelectedItemBlockMembershipsDTO\objectPeriodHasTime
objectPeriodHasTime()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:91
DateTimeImmutable
ilPDSelectedItemBlockMembershipsDTO\getRefId
getRefId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:56
ilPDSelectedItemBlockMembershipsDTO\$parentRefId
$parentRefId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:26
ilPDSelectedItemBlockMembershipsDTO\getType
getType()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:66
ilPDSelectedItemBlockMembershipsDTO\getPeriodEnd
getPeriodEnd()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:101
ilPDSelectedItemBlockMembershipsDTO\$periodStart
$periodStart
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:29
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:32
ilPDSelectedItemBlockMembershipsDTO\$periodEnd
$periodEnd
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:30
ilPDSelectedItemBlockMembershipsDTO\$objectPeriodHasTime
$objectPeriodHasTime
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:28
ilPDSelectedItemBlockMembershipsDTO\$refId
$refId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:21
ilPDSelectedItemBlockMembershipsDTO\$objId
$objId
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:22
ilPDSelectedItemBlockMembershipsDTO\$type
$type
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:23
ilPDSelectedItemBlockMembershipsDTO\getObjId
getObjId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:61
ilPDSelectedItemBlockMembershipsDTO\getTitle
getTitle()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:71
ilPDSelectedItemBlockMembershipsDTO\$title
$title
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:24
ilPDSelectedItemBlockMembershipsDTO\getParentRefId
getParentRefId()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:81
ilPDSelectedItemBlockMembershipsDTO\getPeriodStart
getPeriodStart()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:96
ilPDSelectedItemBlockMembershipsDTO
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:19
ilPDSelectedItemBlockMembershipsDTO\$description
$description
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:25
ilPDSelectedItemBlockMembershipsDTO\$parentLftTree
$parentLftTree
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:27
ilPDSelectedItemBlockMembershipsDTO\getParentLftTree
getParentLftTree()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:86
ilPDSelectedItemBlockMembershipsDTO\getDescription
getDescription()
Definition:
class.ilPDSelectedItemBlockMembershipsDTO.php:76
Services
Dashboard
ItemsBlock
classes
class.ilPDSelectedItemBlockMembershipsDTO.php
Generated on Sat Apr 5 2025 20:01:21 for ILIAS by
1.8.13 (using
Doxyfile
)