ILIAS  release_7 Revision v7.30-3-g800a261c036
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 
14 interface 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 }
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. ...
Class FlySystemFileAccessTest disabled disabled disabled.
nodeModules()
Fetches the node_modules filesystem which is located at the root of the libs directory of ILIAS...
Class Filesystems The Filesystems interface defines the access methods which can be used to fetch the...
Definition: Filesystems.php:14