ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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}
An exception for terminatinating execution or to throw for unit testing.
__construct(ilWebDAVMountInstructionsRepository $a_mount_instructions_repository)
Interface ilWebDAVMountInstructionsRepository.