ILIAS
trunk Revision v12.0_alpha-1540-g00f839d5fa1
◀ ilDoc Overview
TableDataProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\WebDAV\Mount
;
22
23
class
TableDataProvider
24
{
25
public
function
__construct
(
protected
Repository
$mount_instructions_repository)
26
{
27
}
28
29
public
function
getList
(): array
30
{
31
$items = $this->mount_instructions_repository->getAllMountInstructions();
32
return
[
33
'items'
=> $items,
34
'cnt'
=> count($items),
35
];
36
}
37
}
ILIAS\WebDAV\Mount\TableDataProvider
Definition:
TableDataProvider.php:24
ILIAS\WebDAV\Mount\TableDataProvider\__construct
__construct(protected Repository $mount_instructions_repository)
Definition:
TableDataProvider.php:25
ILIAS\WebDAV\Mount\TableDataProvider\getList
getList()
Definition:
TableDataProvider.php:29
ILIAS\WebDAV\Mount\Repository
Definition:
Repository.php:24
ILIAS\WebDAV\Mount
Definition:
BaseInstructions.php:21
components
ILIAS
WebDAV
src
Mount
TableDataProvider.php
Generated on Wed Jun 3 2026 23:05:44 for ILIAS by
1.9.4 (using
Doxyfile
)