ILIAS
trunk Revision v12.0_alpha-1540-g00f839d5fa1
◀ ilDoc Overview
ListFetcherResult.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\components\MyStaff\Utils
;
22
23
final
class
ListFetcherResult
24
{
25
private
int
$totalDatasetCount
;
26
private
array
$dataset
;
27
28
public
function
__construct
(array
$dataset
,
int
$totalDatasetCount
)
29
{
30
$this->dataset =
$dataset
;
31
$this->totalDatasetCount =
$totalDatasetCount
;
32
}
33
37
public
function
getTotalDatasetCount
():
int
38
{
39
return
$this->totalDatasetCount
;
40
}
41
45
public
function
getDataset
(): array
46
{
47
return
$this->dataset
;
48
}
49
}
ILIAS\components\MyStaff\Utils\ListFetcherResult
Definition:
ListFetcherResult.php:24
ILIAS\components\MyStaff\Utils\ListFetcherResult\$dataset
array $dataset
Definition:
ListFetcherResult.php:26
ILIAS\components\MyStaff\Utils\ListFetcherResult\getDataset
getDataset()
Definition:
ListFetcherResult.php:45
ILIAS\components\MyStaff\Utils\ListFetcherResult\$totalDatasetCount
int $totalDatasetCount
Definition:
ListFetcherResult.php:25
ILIAS\components\MyStaff\Utils\ListFetcherResult\getTotalDatasetCount
getTotalDatasetCount()
Definition:
ListFetcherResult.php:37
ILIAS\components\MyStaff\Utils\ListFetcherResult\__construct
__construct(array $dataset, int $totalDatasetCount)
Definition:
ListFetcherResult.php:28
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\components\MyStaff\Utils
Definition:
ListFetcherResult.php:21
components
ILIAS
MyStaff
classes
Utils
ListFetcherResult.php
Generated on Wed Jun 3 2026 23:05:32 for ILIAS by
1.9.4 (using
Doxyfile
)