ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilWebDAVMountInstructionsTableDataProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilWebDAVMountInstructionsTableDataProvider
22
{
23
public
function
__construct
(
protected
ilWebDAVMountInstructionsRepository
$mount_instructions_repository)
24
{
25
}
26
27
public
function
getList
(): array
28
{
29
$items = $this->mount_instructions_repository->getAllMountInstructions();
30
return
[
31
'items'
=> $items,
32
'cnt'
=> count($items)
33
];
34
}
35
}
ilWebDAVMountInstructionsRepository
Definition:
ilWebDAVMountInstructionsRepository.php:21
ilWebDAVMountInstructionsTableDataProvider
Definition:
class.ilWebDAVMountInstructionsTableDataProvider.php:21
ilWebDAVMountInstructionsTableDataProvider\getList
getList()
Definition:
class.ilWebDAVMountInstructionsTableDataProvider.php:27
ilWebDAVMountInstructionsTableDataProvider\__construct
__construct(protected ilWebDAVMountInstructionsRepository $mount_instructions_repository)
Definition:
class.ilWebDAVMountInstructionsTableDataProvider.php:23
components
ILIAS
WebDAV
classes
mount_instructions
class.ilWebDAVMountInstructionsTableDataProvider.php
Generated on Sun Aug 31 2025 23:04:20 for ILIAS by
1.8.13 (using
Doxyfile
)