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
ListFetcherResult.php
Go to the documentation of this file.
1
<?php
18
declare(strict_types=1);
19
20
namespace
ILIAS\Services\MyStaff\Utils
;
21
22
final
class
ListFetcherResult
23
{
24
private
int
$totalDatasetCount
;
25
private
array
$dataset
;
26
27
public
function
__construct
(array $dataset,
int
$totalDatasetCount)
28
{
29
$this->dataset =
$dataset
;
30
$this->totalDatasetCount =
$totalDatasetCount
;
31
}
32
36
public
function
getTotalDatasetCount
():
int
37
{
38
return
$this->totalDatasetCount
;
39
}
40
44
public
function
getDataset
(): array
45
{
46
return
$this->dataset
;
47
}
48
}
ILIAS\Services\MyStaff\Utils
Definition:
ListFetcherResult.php:20
ILIAS\Services\MyStaff\Utils\ListFetcherResult
Definition:
ListFetcherResult.php:22
ILIAS\Services\MyStaff\Utils\ListFetcherResult\getTotalDatasetCount
getTotalDatasetCount()
Definition:
ListFetcherResult.php:36
ILIAS\Services\MyStaff\Utils\ListFetcherResult\$totalDatasetCount
int $totalDatasetCount
Definition:
ListFetcherResult.php:24
ILIAS\Services\MyStaff\Utils\ListFetcherResult\$dataset
array $dataset
Definition:
ListFetcherResult.php:25
ILIAS\Services\MyStaff\Utils\ListFetcherResult\getDataset
getDataset()
Definition:
ListFetcherResult.php:44
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Services\MyStaff\Utils\ListFetcherResult\__construct
__construct(array $dataset, int $totalDatasetCount)
Definition:
ListFetcherResult.php:27
Services
MyStaff
classes
Utils
ListFetcherResult.php
Generated on Mon Apr 14 2025 22:02:41 for ILIAS by
1.8.13 (using
Doxyfile
)