forked from kytvi2p/ZettaFramework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BootstrapQuick.php
76 lines (66 loc) · 2.18 KB
/
BootstrapQuick.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
74
75
76
<?php
class BootstrapQuick extends Zend_Application_Bootstrap_Bootstrap
{
/**
* Устанавливаем кодировку UTF-8 для функций mb_*
*
*/
protected function _initEncoding()
{
if (phpversion() < 5.6) {
mb_internal_encoding('utf-8');
iconv_set_encoding('internal_encoding', 'utf-8');
}
}
/**
* Инициализируем переменные с коммандной строки
*
*/
protected function _initOptParams()
{
$arrayInput = getopt(false, array('url:'));
if ($arrayInput && array_key_exists('url', $arrayInput)) {
$_SERVER['REQUEST_URI'] = $arrayInput['url'];
}
}
/**
* Устанавливаем путь к системным папкам
* таким как Zend Fremawork library и библиотеки CMS
*/
protected function _initLoader()
{
$this->bootstrap('Autoloader');
}
/**
* Создаём реестр для config
*/
protected function _initConfigRegistry()
{
Zend_Registry::set('config', new stdClass());
Zend_Registry::get('config')->app = (object)$this->getOption('app');
}
/**
* Сохраняем LOG в Zend_Registry::get('Logger');
*
*/
protected function _initRegisterLogger()
{
$options = $this->getPluginResource('log')->getOptions();
$options = $options['stream']['writerParams'];
$logFile = $options['stream'];
if (!is_file($logFile)) {
touch($logFile);
chmod($logFile, octdec($options['file_perm']));
}
$this->bootstrap('Log');
$logger = $this->getResource('Log');
if (array_key_exists('REMOTE_ADDR', $_SERVER)) {
$logger->setEventItem('remote_addr', htmlspecialchars($_SERVER['REMOTE_ADDR']));
}
if (array_key_exists('REQUEST_URI', $_SERVER)) {
$logger->setEventItem('request_url', htmlspecialchars($_SERVER['REQUEST_URI']));
}
Zend_Registry::set('Logger', $logger);
Zend_Registry::set('Debugger', new Zend_Log(new Zetta_Log_Writers_Memory()));
}
}