-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
25 lines (21 loc) · 808 Bytes
/
config.php
File metadata and controls
25 lines (21 loc) · 808 Bytes
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
<?php
/**
* Contains the application constants.
* @package System
*/
//System route. Must match the relative path of the application base directory set in .htaccess.
define('SYSTEM_ROUTE','/devsforge');
// Routes to the application directories and subdirectories.
define('APP_ROUTE', 'app/');
define('LAYOUT_ROUTE', 'layout/');
define('LIB_ROUTE', 'lib/');
define('ASSETS_ROUTE', 'assets/');
define('ASSETS_CSS_ROUTE', ASSETS_ROUTE.'css/');
define('ASSETS_IMG_ROUTE', ASSETS_ROUTE.'img/');
define('ASSETS_JS_ROUTE', ASSETS_ROUTE.'js/');
define('CODE_ROUTE', 'code/' );
define('BIN', 'bin/' );
// Default application layout.
define('DEFAULT_LAYOUT', LAYOUT_ROUTE.'developer.php');
// Layout to display a route error when not found.
define('ROUTE_ERROR_LAYOUT', LAYOUT_ROUTE.'route_error.php');