-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.php
51 lines (41 loc) · 778 Bytes
/
paths.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Event-You-All paths.php
*
* @author Thibault Vlacich <thibault.vlacich@isep.fr>
* @version 1.1.0
*/
defined('EUA_VERSION') or die('Access denied');
/**
* Directory Separator
*/
define('DS', DIRECTORY_SEPARATOR);
/**
* Root directory
*/
define('ROOT_PATH', dirname(__FILE__).DS);
/**
* System location
*/
define('SYS_DIR', ROOT_PATH.'system'.DS);
/**
* Configs location
*/
define('CONFIG_DIR', ROOT_PATH.'system'.DS.'config'.DS);
/**
* Libraries location
*/
define('LIBS_DIR', ROOT_PATH.'librairies'.DS);
/**
* Applications location
*/
define('APPS_DIR', ROOT_PATH.'apps'.DS);
/**
* Themes location
*/
define('TEMPLATES_DIR', ROOT_PATH.'templates'.DS);
/**
* Upload directory location
*/
define('UPLOAD_DIR', ROOT_PATH.'upload'.DS);
?>