ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
Repository.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WebDAV\Mount;
22
23interface Repository
24{
25 public function createMountInstructionsDocumentEntry(Document $document): void;
26
28
29 public function getHighestSortingNumber(): int;
30
32
33 public function getMountInstructionsByLanguage(string $language): Document;
34
35 public function getAllMountInstructions(): array;
36
37 public function doMountInstructionsExistByLanguage(string $language): int;
38
39 public function updateMountInstructions(Document $document): void;
40
41 public function updateSortingValueById(int $id, int $a_new_sorting_value): void;
42
43 public function deleteMountInstructionsById(int $id): void;
44}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
getMountInstructionsByLanguage(string $language)
updateSortingValueById(int $id, int $a_new_sorting_value)
updateMountInstructions(Document $document)
doMountInstructionsExistByLanguage(string $language)
createMountInstructionsDocumentEntry(Document $document)