ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilWebDAVMountInstructionsTableDataProvider.php
Go to the documentation of this file.
1 <?php
2 
4 {
5  public function __construct(ilWebDAVMountInstructionsRepository $a_mount_instructions_repository)
6  {
7  $this->mount_instructions_repository = $a_mount_instructions_repository;
8  }
9 
10  public function getList()
11  {
12  $items = $this->mount_instructions_repository->getAllMountInstructions();
13  return array('items' => $items,
14  'cnt' => count($items)
15  );
16  }
17 }
__construct(ilWebDAVMountInstructionsRepository $a_mount_instructions_repository)
Interface ilWebDAVMountInstructionsRepository.