ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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();
29 
30 
40  public function storage();
41 
42 
51  public function temp();
52 
53 
62  public function customizing();
71  public function libs();
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 Filesystems.
Definition: Filesystems.php:16