@@ -58,6 +58,10 @@ |
||
58 | 58 | self::command('install', false, $path); |
59 | 59 | } |
60 | 60 | |
61 | + /** |
|
62 | + * @param string $command |
|
63 | + * @param string $path |
|
64 | + */ |
|
61 | 65 | static function command($command, $needOutput = true, $path = null) |
62 | 66 | { |
63 | 67 | include_once 'composer/vendor/autoload.php'; |
@@ -53,7 +53,6 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Load app config |
55 | 55 | * |
56 | - * @param string $site_name |
|
57 | 56 | * @return array |
58 | 57 | */ |
59 | 58 | public static function app($app = false) |
@@ -74,7 +73,6 @@ discard block |
||
74 | 73 | /** |
75 | 74 | * Load share config |
76 | 75 | * |
77 | - * @param string $site_name |
|
78 | 76 | * @return array |
79 | 77 | */ |
80 | 78 | public static function share($module = '') |
@@ -24,11 +24,13 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public static function system() |
26 | 26 | { |
27 | - if (isset(self::$_configs['system'])) |
|
28 | - return self::$_configs['system']; |
|
27 | + if (isset(self::$_configs['system'])) { |
|
28 | + return self::$_configs['system']; |
|
29 | + } |
|
29 | 30 | |
30 | - if (!file_exists(INJI_SYSTEM_DIR . '/config/config.php')) |
|
31 | - return []; |
|
31 | + if (!file_exists(INJI_SYSTEM_DIR . '/config/config.php')) { |
|
32 | + return []; |
|
33 | + } |
|
32 | 34 | |
33 | 35 | return self::$_configs['system'] = include INJI_SYSTEM_DIR . '/config/config.php'; |
34 | 36 | } |
@@ -41,11 +43,13 @@ discard block |
||
41 | 43 | */ |
42 | 44 | public static function custom($path) |
43 | 45 | { |
44 | - if (isset(self::$_configs['custom'][$path])) |
|
45 | - return self::$_configs['custom'][$path]; |
|
46 | + if (isset(self::$_configs['custom'][$path])) { |
|
47 | + return self::$_configs['custom'][$path]; |
|
48 | + } |
|
46 | 49 | |
47 | - if (!file_exists($path)) |
|
48 | - return []; |
|
50 | + if (!file_exists($path)) { |
|
51 | + return []; |
|
52 | + } |
|
49 | 53 | |
50 | 54 | return self::$_configs['custom'][$path] = include $path; |
51 | 55 | } |
@@ -61,12 +65,14 @@ discard block |
||
61 | 65 | if (!$app) { |
62 | 66 | $app = App::$primary; |
63 | 67 | } |
64 | - if (isset(self::$_configs['app'][$app->name])) |
|
65 | - return self::$_configs['app'][$app->name]; |
|
68 | + if (isset(self::$_configs['app'][$app->name])) { |
|
69 | + return self::$_configs['app'][$app->name]; |
|
70 | + } |
|
66 | 71 | |
67 | 72 | $path = $app->path . "/config/config.php"; |
68 | - if (!file_exists($path)) |
|
69 | - return array(); |
|
73 | + if (!file_exists($path)) { |
|
74 | + return array(); |
|
75 | + } |
|
70 | 76 | |
71 | 77 | return self::$_configs['app'][$app->name] = include $path; |
72 | 78 | } |
@@ -80,13 +86,15 @@ discard block |
||
80 | 86 | public static function share($module = '') |
81 | 87 | { |
82 | 88 | if ($module) { |
83 | - if (isset($_configs['shareModules'][$module])) |
|
84 | - return self::$_configs['shareModules'][$module]; |
|
89 | + if (isset($_configs['shareModules'][$module])) { |
|
90 | + return self::$_configs['shareModules'][$module]; |
|
91 | + } |
|
85 | 92 | |
86 | 93 | $path = INJI_PROGRAM_DIR . "/config/modules/{$module}.php"; |
87 | 94 | } else { |
88 | - if (isset($_configs['share'])) |
|
89 | - return self::$_configs['share']; |
|
95 | + if (isset($_configs['share'])) { |
|
96 | + return self::$_configs['share']; |
|
97 | + } |
|
90 | 98 | |
91 | 99 | $path = INJI_PROGRAM_DIR . "/config/config.php"; |
92 | 100 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | * |
44 | 44 | * @param string $eventName |
45 | 45 | * @param string $listenCode |
46 | - * @param array|function $callback |
|
46 | + * @param Closure $callback |
|
47 | 47 | * @param boolean $save |
48 | 48 | */ |
49 | 49 | function listen($eventName, $listenCode, $callback, $save = false) |
@@ -90,6 +90,9 @@ |
||
90 | 90 | echo '<tr><th>Memory</th><th>' . $this->convertSize(memory_get_peak_usage()) . ' of ' . ini_get('memory_limit') . '</th></tr></table></div>'; |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param integer $size |
|
95 | + */ |
|
93 | 96 | function convertSize($size) |
94 | 97 | { |
95 | 98 |
@@ -86,7 +86,7 @@ |
||
86 | 86 | echo "<tr><td>{$log['name']}</td><td" . (round(($log['end'] - $log['start']), 5) > 0.1 ? ' class ="danger"' : '') . ">" . round(($log['end'] - $log['start']), 5) . "</td></tr>"; |
87 | 87 | } |
88 | 88 | } |
89 | - echo '<tr><th>Summary</th><th>' . round(( microtime(true) - $this->startTime), 5) . '</th></tr>'; |
|
89 | + echo '<tr><th>Summary</th><th>' . round((microtime(true) - $this->startTime), 5) . '</th></tr>'; |
|
90 | 90 | echo '<tr><th>Memory</th><th>' . $this->convertSize(memory_get_peak_usage()) . ' of ' . ini_get('memory_limit') . '</th></tr></table></div>'; |
91 | 91 | } |
92 | 92 |
@@ -79,10 +79,12 @@ discard block |
||
79 | 79 | if (!empty($log['status'])) { |
80 | 80 | echo "<tr class = '{$log['status']}'><td>{$log['name']}</td><td>{$log['status']}</td></tr>"; |
81 | 81 | } else { |
82 | - if (empty($log['end'])) |
|
83 | - $log['end'] = microtime(true); |
|
84 | - if (empty($log['start'])) |
|
85 | - $log['start'] = microtime(true); |
|
82 | + if (empty($log['end'])) { |
|
83 | + $log['end'] = microtime(true); |
|
84 | + } |
|
85 | + if (empty($log['start'])) { |
|
86 | + $log['start'] = microtime(true); |
|
87 | + } |
|
86 | 88 | echo "<tr><td>{$log['name']}</td><td" . (round(($log['end'] - $log['start']), 5) > 0.1 ? ' class ="danger"' : '') . ">" . round(($log['end'] - $log['start']), 5) . "</td></tr>"; |
87 | 89 | } |
88 | 90 | } |
@@ -93,12 +95,13 @@ discard block |
||
93 | 95 | function convertSize($size) |
94 | 96 | { |
95 | 97 | |
96 | - if ($size < 1024) |
|
97 | - return $size . "B"; |
|
98 | - elseif ($size < 1048576) |
|
99 | - return round($size / 1024, 2) . "KB"; |
|
100 | - else |
|
101 | - return round($size / 1048576, 2) . "MB"; |
|
98 | + if ($size < 1024) { |
|
99 | + return $size . "B"; |
|
100 | + } elseif ($size < 1048576) { |
|
101 | + return round($size / 1024, 2) . "KB"; |
|
102 | + } else { |
|
103 | + return round($size / 1048576, 2) . "MB"; |
|
104 | + } |
|
102 | 105 | } |
103 | 106 | |
104 | 107 | function __destruct() |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | * Check model relations path and load need relations |
313 | 313 | * |
314 | 314 | * @param string $col |
315 | - * @param strig $rootModel |
|
315 | + * @param string $rootModel |
|
316 | 316 | */ |
317 | 317 | static function checkForJoin(&$col, $rootModel) |
318 | 318 | { |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | /** |
357 | 357 | * Information extractor for col relations path |
358 | 358 | * |
359 | - * @param string|array $info |
|
359 | + * @param string $info |
|
360 | 360 | * @return array |
361 | 361 | */ |
362 | 362 | private static function parseColRecursion($info) |
@@ -428,6 +428,9 @@ discard block |
||
428 | 428 | return Model::$cols[static::table()]; |
429 | 429 | } |
430 | 430 | |
431 | + /** |
|
432 | + * @param string $colName |
|
433 | + */ |
|
431 | 434 | static function genColParams($colName) |
432 | 435 | { |
433 | 436 | if (empty(static::$cols[$colName]) || static::$storage['type'] == 'moduleConfig') { |
@@ -481,7 +484,7 @@ discard block |
||
481 | 484 | * Create new col in data base |
482 | 485 | * |
483 | 486 | * @param string $colName |
484 | - * @return boolean |
|
487 | + * @return false|null |
|
485 | 488 | */ |
486 | 489 | static function createCol($colName) |
487 | 490 | { |
@@ -566,7 +569,7 @@ discard block |
||
566 | 569 | /** |
567 | 570 | * return relations list |
568 | 571 | * |
569 | - * @return array |
|
572 | + * @return string |
|
570 | 573 | */ |
571 | 574 | static function relations() |
572 | 575 | { |
@@ -1062,7 +1065,7 @@ discard block |
||
1062 | 1065 | * |
1063 | 1066 | * @param array $params |
1064 | 1067 | * @param array $where |
1065 | - * @return boolean |
|
1068 | + * @return false|null |
|
1066 | 1069 | */ |
1067 | 1070 | static function update($params, $where = []) |
1068 | 1071 | { |
@@ -1035,7 +1035,7 @@ |
||
1035 | 1035 | } else { |
1036 | 1036 | $cols .= '*'; |
1037 | 1037 | } |
1038 | - $cols .=') as `count`' . (!empty($options['cols']) ? ',' . $options['cols'] : ''); |
|
1038 | + $cols .= ') as `count`' . (!empty($options['cols']) ? ',' . $options['cols'] : ''); |
|
1039 | 1039 | App::$cur->db->cols = $cols; |
1040 | 1040 | if (!empty($options['group'])) { |
1041 | 1041 | App::$cur->db->group($options['group']); |
@@ -680,17 +680,21 @@ discard block |
||
680 | 680 | { |
681 | 681 | |
682 | 682 | $return = array(); |
683 | - if (!empty($options['where'])) |
|
684 | - App::$cur->db->where($options['where']); |
|
683 | + if (!empty($options['where'])) { |
|
684 | + App::$cur->db->where($options['where']); |
|
685 | + } |
|
685 | 686 | if (!empty($options['group'])) { |
686 | 687 | App::$cur->db->group($options['group']); |
687 | 688 | } |
688 | - if (!empty($options['order'])) |
|
689 | - App::$cur->db->order($options['order']); |
|
690 | - if (!empty($options['join'])) |
|
691 | - App::$cur->db->join($options['join']); |
|
692 | - if (!empty($options['distinct'])) |
|
693 | - App::$cur->db->distinct = $options['distinct']; |
|
689 | + if (!empty($options['order'])) { |
|
690 | + App::$cur->db->order($options['order']); |
|
691 | + } |
|
692 | + if (!empty($options['join'])) { |
|
693 | + App::$cur->db->join($options['join']); |
|
694 | + } |
|
695 | + if (!empty($options['distinct'])) { |
|
696 | + App::$cur->db->distinct = $options['distinct']; |
|
697 | + } |
|
694 | 698 | |
695 | 699 | foreach (static::$relJoins as $join) { |
696 | 700 | App::$cur->db->join($join[0], $join[1]); |
@@ -716,14 +720,14 @@ discard block |
||
716 | 720 | } |
717 | 721 | static::$needJoin = []; |
718 | 722 | |
719 | - if (!empty($options['limit'])) |
|
720 | - $limit = (int) $options['limit']; |
|
721 | - else { |
|
723 | + if (!empty($options['limit'])) { |
|
724 | + $limit = (int) $options['limit']; |
|
725 | + } else { |
|
722 | 726 | $limit = 0; |
723 | 727 | } |
724 | - if (!empty($options['start'])) |
|
725 | - $start = (int) $options['start']; |
|
726 | - else { |
|
728 | + if (!empty($options['start'])) { |
|
729 | + $start = (int) $options['start']; |
|
730 | + } else { |
|
727 | 731 | $start = 0; |
728 | 732 | } |
729 | 733 | if ($limit || $start) { |
@@ -980,21 +984,23 @@ discard block |
||
980 | 984 | static::fixPrefix($options['where'], 'first'); |
981 | 985 | } |
982 | 986 | $return = array(); |
983 | - if (!empty($options['where'])) |
|
984 | - App::$cur->db->where($options['where']); |
|
985 | - if (!empty($options['join'])) |
|
986 | - App::$cur->db->join($options['join']); |
|
987 | + if (!empty($options['where'])) { |
|
988 | + App::$cur->db->where($options['where']); |
|
989 | + } |
|
990 | + if (!empty($options['join'])) { |
|
991 | + App::$cur->db->join($options['join']); |
|
992 | + } |
|
987 | 993 | if (!empty($options['order'])) { |
988 | 994 | App::$cur->db->order($options['order']); |
989 | 995 | } |
990 | - if (!empty($options['limit'])) |
|
991 | - $limit = (int) $options['limit']; |
|
992 | - else { |
|
996 | + if (!empty($options['limit'])) { |
|
997 | + $limit = (int) $options['limit']; |
|
998 | + } else { |
|
993 | 999 | $limit = 0; |
994 | 1000 | } |
995 | - if (!empty($options['start'])) |
|
996 | - $start = (int) $options['start']; |
|
997 | - else { |
|
1001 | + if (!empty($options['start'])) { |
|
1002 | + $start = (int) $options['start']; |
|
1003 | + } else { |
|
998 | 1004 | $start = 0; |
999 | 1005 | } |
1000 | 1006 | if ($limit || $start) { |
@@ -1072,11 +1078,13 @@ discard block |
||
1072 | 1078 | |
1073 | 1079 | $values = array(); |
1074 | 1080 | foreach ($cols as $col => $param) { |
1075 | - if (isset($params[$col])) |
|
1076 | - $values[$col] = $params[$col]; |
|
1081 | + if (isset($params[$col])) { |
|
1082 | + $values[$col] = $params[$col]; |
|
1083 | + } |
|
1084 | + } |
|
1085 | + if (!$values) { |
|
1086 | + return false; |
|
1077 | 1087 | } |
1078 | - if (!$values) |
|
1079 | - return false; |
|
1080 | 1088 | |
1081 | 1089 | |
1082 | 1090 | if ($where) { |
@@ -1257,11 +1265,13 @@ discard block |
||
1257 | 1265 | $values = array(); |
1258 | 1266 | |
1259 | 1267 | foreach ($this->cols() as $col => $param) { |
1260 | - if (isset($this->_params[$col])) |
|
1261 | - $values[$col] = $this->_params[$col]; |
|
1268 | + if (isset($this->_params[$col])) { |
|
1269 | + $values[$col] = $this->_params[$col]; |
|
1270 | + } |
|
1271 | + } |
|
1272 | + if (!$values && empty($options['empty'])) { |
|
1273 | + return false; |
|
1262 | 1274 | } |
1263 | - if (!$values && empty($options['empty'])) |
|
1264 | - return false; |
|
1265 | 1275 | |
1266 | 1276 | if ($this->pk()) { |
1267 | 1277 | $new = false; |
@@ -1417,8 +1427,9 @@ discard block |
||
1417 | 1427 | { |
1418 | 1428 | |
1419 | 1429 | foreach (static::relations() as $relName => $rel) { |
1420 | - if ($rel['col'] == $col) |
|
1421 | - return $relName; |
|
1430 | + if ($rel['col'] == $col) { |
|
1431 | + return $relName; |
|
1432 | + } |
|
1422 | 1433 | } |
1423 | 1434 | return NULL; |
1424 | 1435 | } |
@@ -1574,8 +1585,9 @@ discard block |
||
1574 | 1585 | App::$cur->db->where($relation['relTablePrefix'] . $this->index(), $this->pk()); |
1575 | 1586 | App::$cur->db->where($relation['relTablePrefix'] . $relation['model']::index(), $objectId); |
1576 | 1587 | $isset = App::$cur->db->select($relation['relTable'])->fetch_assoc(); |
1577 | - if ($isset) |
|
1578 | - return true; |
|
1588 | + if ($isset) { |
|
1589 | + return true; |
|
1590 | + } |
|
1579 | 1591 | |
1580 | 1592 | App::$cur->db->insert($relation['relTable'], [ |
1581 | 1593 | $relation['relTablePrefix'] . $this->index() => $this->{$this->index()}, |
@@ -81,7 +81,7 @@ |
||
81 | 81 | * Get all posible directorys for module files |
82 | 82 | * |
83 | 83 | * @param string $moduleName |
84 | - * @return array |
|
84 | + * @return string |
|
85 | 85 | */ |
86 | 86 | static function getModulePaths($moduleName) |
87 | 87 | { |
@@ -82,9 +82,9 @@ |
||
82 | 82 | /** |
83 | 83 | * Return posible paths for class path |
84 | 84 | * |
85 | - * @param type $code |
|
86 | - * @param type $folder |
|
87 | - * @param type $classPath |
|
85 | + * @param string $code |
|
86 | + * @param string $folder |
|
87 | + * @param string $classPath |
|
88 | 88 | * @return string |
89 | 89 | */ |
90 | 90 | static function genFolderPaths($code, $folder, $classPath) |
@@ -216,6 +216,7 @@ |
||
216 | 216 | * @param $number Integer Число на основе которого нужно сформировать окончание |
217 | 217 | * @param $endingsArray Array Массив слов или окончаний для чисел (1, 4, 5), |
218 | 218 | * например array('яблоко', 'яблока', 'яблок') |
219 | + * @param string[] $endingArray |
|
219 | 220 | * @return String |
220 | 221 | */ |
221 | 222 | static function getNumEnding($number, $endingArray) |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | static function uriParse($uri) |
39 | 39 | { |
40 | 40 | $answerPos = strpos($uri, '?'); |
41 | - $params = array_slice(explode('/', substr($uri, 0, $answerPos ? $answerPos : strlen($uri) )), 1); |
|
41 | + $params = array_slice(explode('/', substr($uri, 0, $answerPos ? $answerPos : strlen($uri))), 1); |
|
42 | 42 | |
43 | 43 | foreach ($params as $key => $param) { |
44 | 44 | if ($param != '') { |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | static function resizeImage($img_path, $max_width = 1000, $max_height = 1000, $crop = false, $pos = 'center') |
86 | 86 | { |
87 | 87 | ini_set("gd.jpeg_ignore_warning", 1); |
88 | - list( $img_width, $img_height, $img_type, $img_tag ) = getimagesize($img_path); |
|
88 | + list($img_width, $img_height, $img_type, $img_tag) = getimagesize($img_path); |
|
89 | 89 | switch ($img_type) { |
90 | 90 | case 1: |
91 | 91 | $img_type = 'gif'; |
@@ -108,14 +108,14 @@ discard block |
||
108 | 108 | |
109 | 109 | if ($crop === true || $crop == 'q') { |
110 | 110 | if ($img_width > $img_height) { |
111 | - $imgX = floor(( $img_width - $img_height ) / 2); |
|
111 | + $imgX = floor(($img_width - $img_height) / 2); |
|
112 | 112 | $imgY = 0; |
113 | 113 | $img_width = $img_height; |
114 | 114 | $new_width = $max_width; |
115 | 115 | $new_height = $max_height; |
116 | 116 | } else { |
117 | 117 | $imgX = 0; |
118 | - $imgY = floor(( $img_height - $img_width ) / 2); |
|
118 | + $imgY = floor(($img_height - $img_width) / 2); |
|
119 | 119 | $img_height = $img_width; |
120 | 120 | $new_width = $max_width; |
121 | 121 | $new_height = $max_height; |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $new_width = $max_width; |
137 | 137 | $new_height = $max_height; |
138 | 138 | //Находим начальные координаты (центрируем новое изображение) |
139 | - $imgX = (int) (($ow / 2) - ($img_width / 2) ); |
|
139 | + $imgX = (int) (($ow / 2) - ($img_width / 2)); |
|
140 | 140 | if ($pos == 'center') { |
141 | 141 | $imgY = (int) (($oh / 2) - ($img_height / 2)); |
142 | 142 | } else { |
@@ -58,8 +58,9 @@ discard block |
||
58 | 58 | */ |
59 | 59 | static function createDir($path) |
60 | 60 | { |
61 | - if (file_exists($path)) |
|
62 | - return true; |
|
61 | + if (file_exists($path)) { |
|
62 | + return true; |
|
63 | + } |
|
63 | 64 | |
64 | 65 | $path = explode('/', $path); |
65 | 66 | $cur = ''; |
@@ -101,10 +102,11 @@ discard block |
||
101 | 102 | $imagecreatefromX = "imagecreatefrom{$img_type}"; |
102 | 103 | $src_res = $imagecreatefromX($img_path); |
103 | 104 | |
104 | - if ($img_width / $max_width > $img_height / $max_height) |
|
105 | - $separator = $img_width / $max_width; |
|
106 | - else |
|
107 | - $separator = $img_height / $max_height; |
|
105 | + if ($img_width / $max_width > $img_height / $max_height) { |
|
106 | + $separator = $img_width / $max_width; |
|
107 | + } else { |
|
108 | + $separator = $img_height / $max_height; |
|
109 | + } |
|
108 | 110 | |
109 | 111 | if ($crop === true || $crop == 'q') { |
110 | 112 | if ($img_width > $img_height) { |
@@ -14,6 +14,9 @@ |
||
14 | 14 | public $model = null; |
15 | 15 | public $type = 'string'; |
16 | 16 | |
17 | + /** |
|
18 | + * @param Model $model |
|
19 | + */ |
|
17 | 20 | function __construct($model, $key) |
18 | 21 | { |
19 | 22 | $this->model = $model; |
@@ -64,8 +64,8 @@ |
||
64 | 64 | ?> |
65 | 65 | <div class="filter_form_field filter_select"> |
66 | 66 | <?php |
67 | - $form->input('select', "datamanagerFilters[{$col}][value]", $colInfo['label'], ['value' => $value, 'values' => $values, 'noContainer' => true]) |
|
68 | - ?> |
|
67 | + $form->input('select', "datamanagerFilters[{$col}][value]", $colInfo['label'], ['value' => $value, 'values' => $values, 'noContainer' => true]) |
|
68 | + ?> |
|
69 | 69 | </div> |
70 | 70 | <?php |
71 | 71 | break; |