ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
ListFetcherResult.php
Go to the documentation of this file.
1
<?php
18
declare(strict_types=1);
19
20
namespace
ILIAS\components\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\components\MyStaff\Utils\ListFetcherResult
Definition:
ListFetcherResult.php:22
ILIAS\components\MyStaff\Utils\ListFetcherResult\getTotalDatasetCount
getTotalDatasetCount()
Definition:
ListFetcherResult.php:36
ILIAS\components\MyStaff\Utils\ListFetcherResult\getDataset
getDataset()
Definition:
ListFetcherResult.php:44
ILIAS\components\MyStaff\Utils\ListFetcherResult\$totalDatasetCount
int $totalDatasetCount
Definition:
ListFetcherResult.php:24
ILIAS\components\MyStaff\Utils\ListFetcherResult\$dataset
array $dataset
Definition:
ListFetcherResult.php:25
ILIAS\components\MyStaff\Utils\ListFetcherResult\__construct
__construct(array $dataset, int $totalDatasetCount)
Definition:
ListFetcherResult.php:27
ILIAS\components\MyStaff\Utils
Definition:
ListFetcherResult.php:20
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
MyStaff
classes
Utils
ListFetcherResult.php
Generated on Sun Aug 31 2025 23:03:26 for ILIAS by
1.8.13 (using
Doxyfile
)