-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.php
73 lines (63 loc) · 2.24 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
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
<?php
require_once 'core/Config.class.php';
$cfg = new core\Config();
include 'config.php'; //ustaw konfigurację
function &getCfg(){ global $cfg; return $cfg; }
//załaduj definicję klasy Messages i stwórz obiekt
require_once getCfg()->root_path.'/lib/Messages.class.php';
$msgs = new lib\Messages();
function &getMessages(){ global $msgs; return $msgs; }
//przygotuj Smarty, twórz tylko raz - wtedy kiedy potrzeba
$smarty = null;
function &getSmarty(){
global $smarty;
if (!isset($smarty)){
//stwórz Smarty i przypisz konfigurację i messages
include_once getCfg()->root_path.'/lib/smarty/Smarty.class.php';
$smarty = new Smarty();
//przypisz konfigurację i messages
$smarty->assign('cfg',getCfg());
$smarty->assign('msgs',getMessages());
//zdefiniuj lokalizację widoków (aby nie podawać ścieżek przy ich załączaniu)
$smarty->setTemplateDir(array(
'one' => getCfg()->root_path.'/app/views',
'two' => getCfg()->root_path.'/app/views/templates'
));
}
return $smarty;
}
$db = null; //przygotuj Medoo, twórz tylko raz - wtedy kiedy potrzeba
function &getDB() {
global $cfg, $db;
if (!isset($db)) {
require_once 'lib/medoo/Medoo.php';
$db = new \Medoo\Medoo([
'database_type' => &$cfg->db_type,
'server' => &$cfg->db_server,
'database_name' => &$cfg->db_name,
'username' => &$cfg->db_user,
'password' => &$cfg->db_pass,
'charset' => &$cfg->db_charset,
'port' => &$cfg->db_port,
'prefix' => &$cfg->db_prefix,
'option' => &$cfg->db_option
]);
}
return $db;
}
require_once 'core/ClassLoader.class.php'; //załaduj i stwórz loader klas
$cloader = new core\ClassLoader();
function &getLoader() {
global $cloader;
return $cloader;
}
require_once 'core/Router.class.php'; //załaduj i stwórz router
$router = new core\Router();
function &getRouter(): core\Router {
global $router; return $router;
}
require_once getCfg()->root_path.'/core/functions.php';
//$action = getFromRequest('action');
session_start(); //uruchom lub kontynuuj sesję
$cfg->roles = isset($_SESSION['_roles']) ? unserialize($_SESSION['_roles']) : array(); //wczytaj role
$router->setAction( getFromRequest('action') );