ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Location.php
Go to the documentation of this file.
1<?php
2
3namespace ILIAS\FileUpload;
4
16interface Location
17{
18
23 const WEB = 1;
28 const STORAGE = 2;
33 const CUSTOMIZING = 3;
38 const TEMPORARY = 4;
39}
An exception for terminatinating execution or to throw for unit testing.
Interface Location.
Definition: Location.php:17
const TEMPORARY
The ILIAS temporary directory.
Definition: Location.php:38
const CUSTOMIZING
The filesystem within the web root where all the skins and plugins are saved.
Definition: Location.php:33
const WEB
The filesystem within the ilias web root.
Definition: Location.php:23
const STORAGE
The filesystem outside of the ilias web root.
Definition: Location.php:28