ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Filesystems.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\Filesystem;
4 
6 
16 interface Filesystems
17 {
18 
28  public function web() : Filesystem;
29 
30 
40  public function storage() : Filesystem;
41 
42 
51  public function temp() : Filesystem;
52 
53 
62  public function customizing() : Filesystem;
71  public function libs() : Filesystem;
72 }
libs()
Fetches the libs filesystem which is located at the root of the libs directory of ILIAS...
web()
Fetches the web filesystem.
customizing()
Fetches the customizing filesystem which is located at the root of the customizing directory of ILIAS...
storage()
Fetches the storage filesystem.
temp()
Fetches the temporary filesystem which can be used for temporary file operations. ...
Class FlySystemFileAccessTest.
Class Filesystems.
Definition: Filesystems.php:16