@@ -21,16 +21,16 @@ |
||
21 | 21 | |
22 | 22 | public function generate() |
23 | 23 | { |
24 | - $code = $this->security . ' '; |
|
24 | + $code = $this->security.' '; |
|
25 | 25 | $code .= $this->static ? 'static ' : ''; |
26 | - $code .= 'function ' . $this->name . '('; |
|
26 | + $code .= 'function '.$this->name.'('; |
|
27 | 27 | foreach ($this->propertys as $param) { |
28 | - $code .= '$' . $param . ','; |
|
28 | + $code .= '$'.$param.','; |
|
29 | 29 | } |
30 | 30 | $code = rtrim($code, ','); |
31 | - $code.= ") {\n"; |
|
32 | - $code.= ' ' . str_replace("\n", "\n ", $this->body); |
|
33 | - $code .="\n}"; |
|
31 | + $code .= ") {\n"; |
|
32 | + $code .= ' '.str_replace("\n", "\n ", $this->body); |
|
33 | + $code .= "\n}"; |
|
34 | 34 | return $code; |
35 | 35 | } |
36 | 36 |
@@ -39,16 +39,16 @@ |
||
39 | 39 | |
40 | 40 | public function generate() |
41 | 41 | { |
42 | - $code = 'class ' . $this->name . ' '; |
|
42 | + $code = 'class '.$this->name.' '; |
|
43 | 43 | if ($this->extends) { |
44 | - $code .= 'extends ' . $this->extends . ' '; |
|
44 | + $code .= 'extends '.$this->extends.' '; |
|
45 | 45 | } |
46 | 46 | $code .= "{\n"; |
47 | 47 | foreach ($this->propertys as $property) { |
48 | - $code .= ' ' . str_replace("\n", "\n ", $property->generate()) . "\n"; |
|
48 | + $code .= ' '.str_replace("\n", "\n ", $property->generate())."\n"; |
|
49 | 49 | } |
50 | 50 | foreach ($this->methods as $method) { |
51 | - $code .= ' ' . str_replace("\n", "\n ", $method->generate()) . "\n"; |
|
51 | + $code .= ' '.str_replace("\n", "\n ", $method->generate())."\n"; |
|
52 | 52 | } |
53 | 53 | $code .= "}\n"; |
54 | 54 | return $code; |
@@ -13,8 +13,8 @@ discard block |
||
13 | 13 | define('INJI_DOMAIN_NAME', $_SERVER['SERVER_NAME']); |
14 | 14 | |
15 | 15 | spl_autoload_register(function($class_name) { |
16 | - if (file_exists(INJI_SYSTEM_DIR . '/Inji/' . $class_name . '.php')) { |
|
17 | - include_once INJI_SYSTEM_DIR . '/Inji/' . $class_name . '.php'; |
|
16 | + if (file_exists(INJI_SYSTEM_DIR.'/Inji/'.$class_name.'.php')) { |
|
17 | + include_once INJI_SYSTEM_DIR.'/Inji/'.$class_name.'.php'; |
|
18 | 18 | } |
19 | 19 | }); |
20 | 20 | |
@@ -49,39 +49,39 @@ discard block |
||
49 | 49 | $params = Tools::uriParse($_SERVER['REQUEST_URI']); |
50 | 50 | |
51 | 51 | App::$cur->type = 'app'; |
52 | -App::$cur->path = INJI_PROGRAM_DIR . '/' . App::$cur->dir; |
|
52 | +App::$cur->path = INJI_PROGRAM_DIR.'/'.App::$cur->dir; |
|
53 | 53 | App::$cur->params = $params; |
54 | 54 | App::$cur->config = Config::app(App::$cur); |
55 | 55 | App::$primary = App::$cur; |
56 | 56 | |
57 | -if (!empty($params[0]) && file_exists(INJI_SYSTEM_DIR . '/program/' . $params[0] . '/')) { |
|
57 | +if (!empty($params[0]) && file_exists(INJI_SYSTEM_DIR.'/program/'.$params[0].'/')) { |
|
58 | 58 | |
59 | 59 | App::$primary->params = []; |
60 | 60 | |
61 | 61 | App::$cur = new App(); |
62 | 62 | App::$cur->name = $params[0]; |
63 | 63 | App::$cur->system = true; |
64 | - App::$cur->staticPath = "/" . App::$cur->name . "/static"; |
|
65 | - App::$cur->templatesPath = "/" . App::$cur->name . "/static/templates"; |
|
66 | - App::$cur->path = INJI_SYSTEM_DIR . '/program/' . App::$cur->name; |
|
67 | - App::$cur->type = 'app' . ucfirst(strtolower(App::$cur->name)); |
|
64 | + App::$cur->staticPath = "/".App::$cur->name."/static"; |
|
65 | + App::$cur->templatesPath = "/".App::$cur->name."/static/templates"; |
|
66 | + App::$cur->path = INJI_SYSTEM_DIR.'/program/'.App::$cur->name; |
|
67 | + App::$cur->type = 'app'.ucfirst(strtolower(App::$cur->name)); |
|
68 | 68 | App::$cur->installed = true; |
69 | 69 | App::$cur->params = array_slice($params, 1); |
70 | 70 | App::$cur->config = Config::app(App::$cur); |
71 | 71 | |
72 | - Inji::$inst->listen('Config-change-app-' . App::$primary->name, 'primaryAppConfig', function($event) { |
|
72 | + Inji::$inst->listen('Config-change-app-'.App::$primary->name, 'primaryAppConfig', function($event) { |
|
73 | 73 | App::$primary->config = $event['eventObject']; |
74 | 74 | }); |
75 | 75 | } |
76 | -Inji::$inst->listen('Config-change-app-' . App::$cur->name, 'curAppConfig', function($event) { |
|
76 | +Inji::$inst->listen('Config-change-app-'.App::$cur->name, 'curAppConfig', function($event) { |
|
77 | 77 | App::$cur->config = $event['eventObject']; |
78 | 78 | }); |
79 | 79 | $shareConfig = Config::share(); |
80 | 80 | if (empty($shareConfig['installed']) && App::$cur->name != 'setup' && (empty(App::$cur->params[0]) || App::$cur->params[0] != 'static')) { |
81 | 81 | Tools::redirect('/setup'); |
82 | 82 | } |
83 | -putenv('COMPOSER_HOME=' . getcwd()); |
|
84 | -putenv('COMPOSER_CACHE_DIR=' . getcwd() . DIRECTORY_SEPARATOR . 'composerCache'); |
|
83 | +putenv('COMPOSER_HOME='.getcwd()); |
|
84 | +putenv('COMPOSER_CACHE_DIR='.getcwd().DIRECTORY_SEPARATOR.'composerCache'); |
|
85 | 85 | ComposerCmd::check(); |
86 | 86 | if (!function_exists('idn_to_utf8')) { |
87 | 87 | ComposerCmd::requirePackage("mabrahamde/idna-converter", "dev-master", './'); |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | if (file_exists('vendor/autoload.php')) { |
98 | 98 | include_once 'vendor/autoload.php'; |
99 | 99 | } |
100 | -if (file_exists(App::$primary->path . '/vendor/autoload.php')) { |
|
101 | - include_once App::$primary->path . '/vendor/autoload.php'; |
|
100 | +if (file_exists(App::$primary->path.'/vendor/autoload.php')) { |
|
101 | + include_once App::$primary->path.'/vendor/autoload.php'; |
|
102 | 102 | } |
103 | 103 | Module::$cur = Module::resolveModule(App::$cur); |
104 | 104 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $options['pos'] = $resizePos; |
40 | 40 | $path = Cache::file($absolutePath, $options); |
41 | 41 | $path = $convet ? mb_convert_encoding($path, 'UTF-8', 'Windows-1251') : $path; |
42 | - return '/' . $path; |
|
42 | + return '/'.$path; |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | $classPath = implode('/', array_slice($classPath, 1)); |
50 | 50 | if (App::$cur) { |
51 | 51 | if (App::$cur !== App::$primary) { |
52 | - $folders['appModule'] = ['folder' => App::$primary->path . '/modules/' . $moduleName, 'classPath' => $classPath]; |
|
52 | + $folders['appModule'] = ['folder' => App::$primary->path.'/modules/'.$moduleName, 'classPath' => $classPath]; |
|
53 | 53 | } |
54 | - $folders['primaryAppModule'] = ['folder' => App::$cur->path . '/modules/' . $moduleName, 'classPath' => $classPath]; |
|
54 | + $folders['primaryAppModule'] = ['folder' => App::$cur->path.'/modules/'.$moduleName, 'classPath' => $classPath]; |
|
55 | 55 | } |
56 | - $folders['systemModule'] = ['folder' => INJI_SYSTEM_DIR . '/modules/' . $moduleName, 'classPath' => $classPath]; |
|
56 | + $folders['systemModule'] = ['folder' => INJI_SYSTEM_DIR.'/modules/'.$moduleName, 'classPath' => $classPath]; |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | $classPath = str_replace('\\', '/', $className); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | if (file_exists($path)) { |
74 | 74 | include_once $path; |
75 | 75 | if (in_array('Model', class_parents($className, false)) && \App::$primary) { |
76 | - $filename = Cache::getDir('system') . '/classData.php'; |
|
76 | + $filename = Cache::getDir('system').'/classData.php'; |
|
77 | 77 | $classData = Config::custom($filename); |
78 | 78 | if (empty($classData['Model'][$className]['tableCreated'])) { |
79 | 79 | $classData['Model'][$className]['tableCreated'] = $className::createTable(); |
@@ -98,18 +98,18 @@ discard block |
||
98 | 98 | { |
99 | 99 | $paths = []; |
100 | 100 | if (strpos($classPath, '/') === false) { |
101 | - $paths[$code . '_Object'] = $folder . '/objects/' . $classPath . '.php'; |
|
102 | - $paths[$code . '_ObjectDir'] = $folder . '/objects/' . $classPath . '/' . $classPath . '.php'; |
|
103 | - $paths[$code . '_Model'] = $folder . '/models/' . $classPath . '.php'; |
|
104 | - $paths[$code . '_ModelDir'] = $folder . '/models/' . $classPath . '/' . $classPath . '.php'; |
|
101 | + $paths[$code.'_Object'] = $folder.'/objects/'.$classPath.'.php'; |
|
102 | + $paths[$code.'_ObjectDir'] = $folder.'/objects/'.$classPath.'/'.$classPath.'.php'; |
|
103 | + $paths[$code.'_Model'] = $folder.'/models/'.$classPath.'.php'; |
|
104 | + $paths[$code.'_ModelDir'] = $folder.'/models/'.$classPath.'/'.$classPath.'.php'; |
|
105 | 105 | } else { |
106 | 106 | $classFile = substr($classPath, strrpos($classPath, '/') + 1); |
107 | 107 | $classPathWithotClass = substr($classPath, 0, strrpos($classPath, '/')); |
108 | 108 | |
109 | - $paths[$code . '_Object'] = $folder . '/objects/' . $classPathWithotClass . '/' . $classFile . '.php'; |
|
110 | - $paths[$code . '_ObjectDir'] = $folder . '/objects/' . $classPath . '/' . $classFile . '.php'; |
|
111 | - $paths[$code . '_Model'] = $folder . '/models/' . $classPathWithotClass . '/' . $classFile . '.php'; |
|
112 | - $paths[$code . '_ModelDir'] = $folder . '/models/' . $classPath . '/' . $classFile . '.php'; |
|
109 | + $paths[$code.'_Object'] = $folder.'/objects/'.$classPathWithotClass.'/'.$classFile.'.php'; |
|
110 | + $paths[$code.'_ObjectDir'] = $folder.'/objects/'.$classPath.'/'.$classFile.'.php'; |
|
111 | + $paths[$code.'_Model'] = $folder.'/models/'.$classPathWithotClass.'/'.$classFile.'.php'; |
|
112 | + $paths[$code.'_ModelDir'] = $folder.'/models/'.$classPath.'/'.$classFile.'.php'; |
|
113 | 113 | } |
114 | 114 | return $paths; |
115 | 115 | } |
@@ -64,17 +64,17 @@ |
||
64 | 64 | */ |
65 | 65 | public function run() |
66 | 66 | { |
67 | - if (!empty($this->params[0]) && method_exists($this, $this->params[0] . 'Action')) { |
|
67 | + if (!empty($this->params[0]) && method_exists($this, $this->params[0].'Action')) { |
|
68 | 68 | $this->method = $this->params[0]; |
69 | 69 | $this->params = array_slice($this->params, 1); |
70 | - } elseif (!method_exists($this, $this->method . 'Action')) { |
|
70 | + } elseif (!method_exists($this, $this->method.'Action')) { |
|
71 | 71 | INJI_SYSTEM_ERROR('method not found', true); |
72 | 72 | } |
73 | 73 | if (!$this->checkAccess()) { |
74 | 74 | Tools::redirect($this->access->getDeniedRedirect(), 'У вас нет прав доступа'); |
75 | 75 | } |
76 | 76 | $this->run = true; |
77 | - call_user_func_array([$this, $this->method . 'Action'], $this->params); |
|
77 | + call_user_func_array([$this, $this->method.'Action'], $this->params); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | return false; |
66 | 66 | } |
67 | - $val = @self::$server->get($name . serialize($params)); |
|
67 | + $val = @self::$server->get($name.serialize($params)); |
|
68 | 68 | if ($val !== false) { |
69 | 69 | return $val; |
70 | 70 | } else { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | self::connect(); |
93 | 93 | } |
94 | 94 | if (self::$connected) { |
95 | - return @self::$server->set($name . serialize($params), $val, false, $lifeTime); |
|
95 | + return @self::$server->set($name.serialize($params), $val, false, $lifeTime); |
|
96 | 96 | } |
97 | 97 | return false; |
98 | 98 | } |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | $crop = !empty($options['crop']) ? $options['crop'] : ''; |
113 | 113 | $pos = !empty($options['pos']) ? $options['pos'] : 'center'; |
114 | 114 | $fileinfo = pathinfo($file); |
115 | - $fileCheckSum = md5($fileinfo['dirname'] . filemtime($file)); |
|
116 | - $path = static::getDir('static') . '/' . $fileCheckSum . '_' . $fileinfo['filename']; |
|
115 | + $fileCheckSum = md5($fileinfo['dirname'].filemtime($file)); |
|
116 | + $path = static::getDir('static').'/'.$fileCheckSum.'_'.$fileinfo['filename']; |
|
117 | 117 | if ($sizes) { |
118 | - $path .= '.' . $sizes['x'] . 'x' . $sizes['y'] . $crop . $pos; |
|
118 | + $path .= '.'.$sizes['x'].'x'.$sizes['y'].$crop.$pos; |
|
119 | 119 | } |
120 | - $path .= '.' . $fileinfo['extension']; |
|
120 | + $path .= '.'.$fileinfo['extension']; |
|
121 | 121 | if (!file_exists($path)) { |
122 | 122 | copy($file, $path); |
123 | 123 | if ($sizes) { |
@@ -71,8 +71,8 @@ |
||
71 | 71 | { |
72 | 72 | $paths = Module::getModulePaths($moduleName); |
73 | 73 | foreach ($paths as $path) { |
74 | - if (file_exists($path . '/' . $moduleName . '.php')) { |
|
75 | - include_once $path . '/' . $moduleName . '.php'; |
|
74 | + if (file_exists($path.'/'.$moduleName.'.php')) { |
|
75 | + include_once $path.'/'.$moduleName.'.php'; |
|
76 | 76 | return $moduleName; |
77 | 77 | } |
78 | 78 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | if ($type == 'array') { |
19 | 19 | return !is_array($_GET[$key]) ? [] : $_GET[$key]; |
20 | 20 | } |
21 | - return eval('return (' . $type . ') $_GET[$key];'); |
|
21 | + return eval('return ('.$type.') $_GET[$key];'); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | } |