-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
71 lines (57 loc) · 1.65 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?
/**
* SimpleMVC
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package SimpleMVC
* @author zombiQWERTY
* @copyright Copyright (c) 2014, zombiQWERTY
* @link http://zombiqwerty.ru/simplemvc/
* @since Version 1.0
*/
// ------------------------------------------------------------------------
/**
* Framework Initialization File
*
* @package SimpleMVC
* @category Back-controller
* @author zombiQWERTY
* @link http://zombiqwerty.ru/simplemvc/
*/
// ------------------------------------------------------------------------
/**
* Set header charset and Moscow locale
*/
header('Content-Type: text/html; charset=utf-8');
setlocale(LC_ALL, 'Russian_Russia.65001');
// ------------------------------------------------------------------------
/**
* Define useful consts for work
*/
define('BASE_URL', 'http://'.$_SERVER['HTTP_HOST']);
define('ROOT' , $_SERVER['DOCUMENT_ROOT']);
define('APPPATH' , ROOT.'/application/');
define('SYSPATH' , ROOT.'/system/');
// ------------------------------------------------------------------------
/**
* require needful files
*/
require_once SYSPATH.'autoload.php';
require_once SYSPATH.'exceptionHandler.php';
// ------------------------------------------------------------------------
/**
* Set handler for native php errors
*/
set_error_handler('exceptionHandler');
// ------------------------------------------------------------------------
/**
* Disable magic quotes
*/
if (!Common::isPhp('5.3')) @set_magic_quotes_runtime(0);
// ------------------------------------------------------------------------
/**
* Initialization the application
*/
new Application();
?>