ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
TableDataProvider.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Mount;
22
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}
__construct(protected Repository $mount_instructions_repository)