ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Location.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\FileUpload;
4 
16 interface Location
17 {
18 
23  const WEB = 1;
28  const STORAGE = 2;
33  const CUSTOMIZING = 3;
38  const TEMPORARY = 4;
39 }
const STORAGE
The filesystem outside of the ilias web root.
Definition: Location.php:28
const CUSTOMIZING
The filesystem within the web root where all the skins and plugins are saved.
Definition: Location.php:33
Interface Location.
Definition: Location.php:16
const TEMPORARY
The ILIAS temporary directory.
Definition: Location.php:38
const WEB
The filesystem within the ilias web root.
Definition: Location.php:23