-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathindex.php
More file actions
76 lines (55 loc) · 2.46 KB
/
index.php
File metadata and controls
76 lines (55 loc) · 2.46 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
error_reporting(E_ERROR);
define("CORE_PATH", $_SERVER['DOCUMENT_ROOT'] . "/core/");
define("CONTROLLERS_PATH", $_SERVER['DOCUMENT_ROOT'] . "/controllers/");
define("MODULES_PATH", $_SERVER['DOCUMENT_ROOT'] . "/modules/");
define("ENTITY_PATH", $_SERVER['DOCUMENT_ROOT'] . "/entity/");
define("VIEW_PATH", $_SERVER['DOCUMENT_ROOT'] . "/view/");
define("LIB_PATH", $_SERVER['DOCUMENT_ROOT'] . "/lib/");
if(!file_exists(CORE_PATH . 'core.php') || !file_exists(CONTROLLERS_PATH . 'MainController.php') || !file_exists(ENTITY_PATH . 'MainEntity.php'))
{
print "not found!";
exit;
}
require_once(CORE_PATH . 'core.php');
require_once(CONTROLLERS_PATH . 'MainController.php');
require_once(ENTITY_PATH . 'MainEntity.php');
//localization class
require_once(CORE_PATH . 'locale.php');
//autoloader class
require_once(CORE_PATH . 'MapAutoloader.php');
// Please! Do not give the same name to classes from different modules!
$autoloader = new MapAutoloader();
$autoloader->registerClass('OrderType', MODULES_PATH . 'OrderModel.php');
$autoloader->registerClass('OrderStatus', MODULES_PATH . 'OrderModel.php');
$autoloader->registerClass('PHPMailer', LIB_PATH . 'PHPMailer/class.phpmailer.php');
$autoloader->registerClass('EgoPayAuth', LIB_PATH . 'EgoPay/api/api.php');
$autoloader->registerClass('EgoPayApiException', LIB_PATH . 'EgoPay/api/api.php');
$autoloader->registerClass('EgoPayJsonApiAgent', LIB_PATH . 'EgoPay/api/EgoPayJsonApiAgent.php');
$autoloader->registerClass('EgoPaySciCallback', LIB_PATH . 'EgoPay/sci/EgoPaySci.php');
$autoloader->registerClass('EgoPayException', LIB_PATH . 'EgoPay/sci/EgoPaySci.php');
spl_autoload_register(array($autoloader, 'autoload'));
// Register new namespaces
spl_autoload_register(function ($class) {
$prefix = 'lib\\';
$base_dir = LIB_PATH;
if (strpos($class, $prefix) === 0) {
$relative_class = substr($class, strlen($prefix));
$file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
if (file_exists($file)) {
require $file;
}
}
});
$configPath = 'config/config.php';
if (file_exists($configPath))
require_once $configPath;
else
die('Where is my config, dude?');
require_once ('config/moneyConfig.php');
date_default_timezone_set('Europe/Moscow');
$url = explode('?', $_SERVER['REQUEST_URI']);
$pathUrl = explode('/', $url[0]);
$module = $pathUrl[1] ? $pathUrl[1] : 'usr';
$action = $pathUrl[2] ? $pathUrl[2] : 'index';
Core::runController($module, $action);