ILIAS  trunk Revision v11.0_alpha-1753-gb21ca8c4367
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Location.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\FileUpload;
20 
32 interface Location
33 {
38  public const WEB = 1;
43  public const STORAGE = 2;
48  public const CUSTOMIZING = 3;
53  public const TEMPORARY = 4;
54 }
const STORAGE
The filesystem outside of the ilias web root.
Definition: Location.php:43
const CUSTOMIZING
The filesystem within the web root where all the skins and plugins are saved.
Definition: Location.php:48
Interface Location.
Definition: Location.php:32
const TEMPORARY
The ILIAS temporary directory.
Definition: Location.php:53
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const WEB
The filesystem within the ilias web root.
Definition: Location.php:38