ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Filesystems.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Filesystem;
20 
22 
29 interface Filesystems
30 {
38  public function web(): Filesystem;
39 
47  public function storage(): Filesystem;
48 
55  public function temp(): Filesystem;
56 
63  public function customizing(): Filesystem;
64 
71  public function libs(): Filesystem;
72 
77  public function nodeModules(): Filesystem;
78 }
libs()
Fetches the libs filesystem which is located at the root of the libs directory of ILIAS...
web()
Fetches the web filesystem.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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. ...
nodeModules()
Fetches the node_modules filesystem which is located at the root of the libs directory of ILIAS...
The Filesystems interface defines the access methods which can be used to fetch the different filesys...
Definition: Filesystems.php:29