forked from jwheare/Borax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.php
45 lines (37 loc) · 1.28 KB
/
init.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
<?php
date_default_timezone_set('Europe/London');
mb_internal_encoding('utf-8');
setlocale(LC_ALL, 'en_GB.UTF-8');
// Autoload paths
define('ROOT_DIR', $_SERVER['ROOT_DIR']);
// Web app
define('APP_DIR', ROOT_DIR . '/app');
define('SCRIPT_DIR', ROOT_DIR . '/script');
define('LOG_DIR', ROOT_DIR . '/log');
define('CONF_DIR', APP_DIR . '/conf');
define('CONTROLLER_DIR', APP_DIR . '/controller');
define('EMAIL_DIR', APP_DIR . '/email');
define('LIB_DIR', APP_DIR . '/lib');
define('SERVICE_DIR', APP_DIR . '/service');
define('TEMPLATE_DIR', APP_DIR . '/template');
// 3rd party libs
define('VENDOR_DIR', ROOT_DIR . '/vendor');
set_include_path(
get_include_path() . PATH_SEPARATOR
. CONF_DIR . PATH_SEPARATOR
. SERVICE_DIR . PATH_SEPARATOR
. LIB_DIR . PATH_SEPARATOR
. VENDOR_DIR . PATH_SEPARATOR
);
spl_autoload_extensions('.class.php');
spl_autoload_register(function ($class) {
return spl_autoload(str_replace('\\', '/', $class));
});
require_once('util.php');
require_once('conf.php');
if (file_exists(CONF_DIR . '/' . gethostname() . '.conf.php')) {
require_once(gethostname() . '.conf.php');
}
if (file_exists(APP_DIR . '/init.php')) {
require_once(APP_DIR . '/init.php');
}