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
ReportDto.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Mail\Cron\ExpiredOrOrphanedMails\FolderDto
;
22
23
class
ReportDto
24
{
25
private
int
$user_id
;
27
private
array
$folder_objects
= [];
28
29
public
function
__construct
(
int
$user_id)
30
{
31
$this->user_id =
$user_id
;
32
}
33
34
public
function
getUserId
():
int
35
{
36
return
$this->user_id
;
37
}
38
39
public
function
addFolderObject
(
FolderDto
$folder_obj): void
40
{
41
$this->folder_objects[$folder_obj->
getFolderId
()] = $folder_obj;
42
}
43
44
public
function
getFolderObjectById
(
int
$folder_id): ?
FolderDto
45
{
46
return
$this->folder_objects[$folder_id] ?? null;
47
}
48
52
public
function
getFolderObjects
(): array
53
{
54
return
$this->folder_objects
;
55
}
56
}
ReportDto\$folder_objects
array $folder_objects
Definition:
ReportDto.php:27
ReportDto\getFolderObjects
getFolderObjects()
Definition:
ReportDto.php:52
ReportDto\addFolderObject
addFolderObject(FolderDto $folder_obj)
Definition:
ReportDto.php:39
FolderDto
ILIAS\Mail\Cron\ExpiredOrOrphanedMails\FolderDto
Definition:
FolderDto.php:23
ReportDto\$user_id
int $user_id
Definition:
ReportDto.php:25
ILIAS\Mail\Cron\ExpiredOrOrphanedMails\FolderDto\getFolderId
getFolderId()
Definition:
FolderDto.php:36
ReportDto
ReportDto\__construct
__construct(int $user_id)
Definition:
ReportDto.php:29
ReportDto\getUserId
getUserId()
Definition:
ReportDto.php:34
ReportDto\getFolderObjectById
getFolderObjectById(int $folder_id)
Definition:
ReportDto.php:44
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
Mail
classes
Cron
ExpiredOrOrphanedMails
ReportDto.php
Generated on Fri Apr 11 2025 22:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)