ILIAS  release_7 Revision v7.30-3-g800a261c036
Filesystems.php
Go to the documentation of this file.
1<?php
2
3namespace ILIAS\Filesystem;
4
6
14interface Filesystems
15{
16
24 public function web() : Filesystem;
25
33 public function storage() : Filesystem;
34
41 public function temp() : Filesystem;
42
49 public function customizing() : Filesystem;
50
57 public function libs() : Filesystem;
58
65 public function nodeModules() : Filesystem;
66}
An exception for terminatinating execution or to throw for unit testing.
Class IllegalStateException The IllegalStateException indicates a wrong state of the object.
Class Filesystems The Filesystems interface defines the access methods which can be used to fetch the...
Definition: Filesystems.php:15
customizing()
Fetches the customizing filesystem which is located at the root of the customizing directory of ILIAS...
libs()
Fetches the libs filesystem which is located at the root of the libs directory of ILIAS.
nodeModules()
Fetches the node_modules filesystem which is located at the root of the libs directory of ILIAS.
web()
Fetches the web filesystem.
temp()
Fetches the temporary filesystem which can be used for temporary file operations.
storage()
Fetches the storage filesystem.
Class FlySystemFileAccessTest \Provider\FlySystem @runTestsInSeparateProcesses @preserveGlobalState d...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...