@@ -11,7 +11,7 @@ |
||
11 | 11 | class ServerController extends Controller { |
12 | 12 | function csrfAction($key = '') { |
13 | 13 | $result = new \Server\Result(); |
14 | - $key = (string)$key; |
|
14 | + $key = (string) $key; |
|
15 | 15 | if (!$key) { |
16 | 16 | $result->success = false; |
17 | 17 | return $result->send(); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | ini_set('memory_limit', '2000M'); |
15 | 15 | ignore_user_abort(true); |
16 | 16 | set_time_limit(0); |
17 | - $reExchange = Exchange1c\Exchange::get((int)$_GET['item_pk']); |
|
17 | + $reExchange = Exchange1c\Exchange::get((int) $_GET['item_pk']); |
|
18 | 18 | |
19 | 19 | $exchange = new \Exchange1c\Exchange(); |
20 | 20 | $exchange->type = $reExchange->type; |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | $new_width = $max_width; |
149 | 149 | $new_height = $max_height; |
150 | 150 | //Находим начальные координаты (центрируем новое изображение) |
151 | - $imgX = (int)(($ow / 2) - ($img_width / 2)); |
|
151 | + $imgX = (int) (($ow / 2) - ($img_width / 2)); |
|
152 | 152 | if ($pos == 'center') { |
153 | - $imgY = (int)(($oh / 2) - ($img_height / 2)); |
|
153 | + $imgY = (int) (($oh / 2) - ($img_height / 2)); |
|
154 | 154 | } else { |
155 | 155 | $imgY = 0; |
156 | 156 | } |
@@ -292,9 +292,9 @@ discard block |
||
292 | 292 | * @return string |
293 | 293 | */ |
294 | 294 | public static function toRusDate($date) { |
295 | - $yy = (int)substr($date, 0, 4); |
|
296 | - $mm = (int)substr($date, 5, 2); |
|
297 | - $dd = (int)substr($date, 8, 2); |
|
295 | + $yy = (int) substr($date, 0, 4); |
|
296 | + $mm = (int) substr($date, 5, 2); |
|
297 | + $dd = (int) substr($date, 8, 2); |
|
298 | 298 | |
299 | 299 | $hours = substr($date, 11, 5); |
300 | 300 |
@@ -364,7 +364,7 @@ |
||
364 | 364 | public function inFav() { |
365 | 365 | if (\Users\User::$cur->id) { |
366 | 366 | $fav = \Ecommerce\Favorite::get([['user_id', \Users\User::$cur->id], ['item_id', $this->id]]); |
367 | - return (bool)$fav; |
|
367 | + return (bool) $fav; |
|
368 | 368 | } else { |
369 | 369 | $favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : []; |
370 | 370 | return in_array($this->id, $favs); |
@@ -27,6 +27,9 @@ |
||
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | + /** |
|
31 | + * @param \Model[] $params |
|
32 | + */ |
|
30 | 33 | private function parseData(&$data, $params) { |
31 | 34 | $objectParamValue = [ |
32 | 35 | 'col' => '', |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $inputOptions = [ |
22 | 22 | 'value' => $this->value(), |
23 | 23 | 'disabled' => $this->readOnly(), |
24 | - 'values' => \Ui\ActiveForm::getOptionsList($this->colParams, $this->activeFormParams, !empty($this->modelName)?$this->modelName:$this->activeForm->modelName, $inputName) |
|
24 | + 'values' => \Ui\ActiveForm::getOptionsList($this->colParams, $this->activeFormParams, !empty($this->modelName) ? $this->modelName : $this->activeForm->modelName, $inputName) |
|
25 | 25 | ]; |
26 | 26 | $modelName = ''; |
27 | 27 | switch ($inputParams['source']) { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | 'label' => 'Комментарий', |
67 | 67 | ], |
68 | 68 | ] |
69 | - ],], |
|
69 | + ], ], |
|
70 | 70 | ] |
71 | 71 | ]; |
72 | 72 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } |
86 | 86 | |
87 | 87 | public function diff($amount, $comment = '') { |
88 | - $amount = (float)$amount; |
|
88 | + $amount = (float) $amount; |
|
89 | 89 | $query = \App::$cur->db->newQuery(); |
90 | 90 | $string = 'UPDATE ' . \App::$cur->db->table_prefix . $this->table() . ' SET `' . $this->colPrefix() . 'amount`=`' . $this->colPrefix() . 'amount`+' . $amount . ' where `' . $this->index() . '` = ' . $this->id; |
91 | 91 | $query->query($string); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | public function showAmount() { |
106 | 106 | switch ($this->currency->round_type) { |
107 | 107 | case 'floor': |
108 | - $dif = (float)('1' . str_repeat('0', $this->currency->round_precision)); |
|
108 | + $dif = (float) ('1' . str_repeat('0', $this->currency->round_precision)); |
|
109 | 109 | return floor($this->amount * $dif) / $dif; |
110 | 110 | default: |
111 | 111 | return $this->amount; |
@@ -1,21 +1,21 @@ |
||
1 | 1 | <h1>Установка модулей</h1> |
2 | 2 | <form> |
3 | 3 | <?php |
4 | - $config = Config::app(App::$primary ? App::$primary : App::$cur); |
|
5 | - $modules = array_flip(Module::getInstalled(App::$cur)); |
|
6 | - if (file_exists(App::$primary->path . '/modules')) { |
|
7 | - $appModules = array_slice(scandir(App::$primary->path . '/modules'), 2); |
|
8 | - } |
|
9 | - else { |
|
10 | - $appModules=[]; |
|
11 | - } |
|
12 | - $systemModules = array_merge(array_slice(scandir(INJI_SYSTEM_DIR . '/modules'), 2), $appModules); |
|
13 | - foreach ($systemModules as $module) { |
|
14 | - $info = Module::getInfo($module); |
|
15 | - if (!$info || isset($modules[$module])) { |
|
16 | - continue; |
|
17 | - } |
|
18 | - ?> |
|
4 | + $config = Config::app(App::$primary ? App::$primary : App::$cur); |
|
5 | + $modules = array_flip(Module::getInstalled(App::$cur)); |
|
6 | + if (file_exists(App::$primary->path . '/modules')) { |
|
7 | + $appModules = array_slice(scandir(App::$primary->path . '/modules'), 2); |
|
8 | + } |
|
9 | + else { |
|
10 | + $appModules=[]; |
|
11 | + } |
|
12 | + $systemModules = array_merge(array_slice(scandir(INJI_SYSTEM_DIR . '/modules'), 2), $appModules); |
|
13 | + foreach ($systemModules as $module) { |
|
14 | + $info = Module::getInfo($module); |
|
15 | + if (!$info || isset($modules[$module])) { |
|
16 | + continue; |
|
17 | + } |
|
18 | + ?> |
|
19 | 19 | <div class ="form-group"> |
20 | 20 | <div class="checkbox"> |
21 | 21 | <label> |
@@ -7,7 +7,7 @@ |
||
7 | 7 | $appModules = array_slice(scandir(App::$primary->path . '/modules'), 2); |
8 | 8 | } |
9 | 9 | else { |
10 | - $appModules=[]; |
|
10 | + $appModules = []; |
|
11 | 11 | } |
12 | 12 | $systemModules = array_merge(array_slice(scandir(INJI_SYSTEM_DIR . '/modules'), 2), $appModules); |
13 | 13 | foreach ($systemModules as $module) { |
@@ -5,8 +5,7 @@ |
||
5 | 5 | $modules = array_flip(Module::getInstalled(App::$cur)); |
6 | 6 | if (file_exists(App::$primary->path . '/modules')) { |
7 | 7 | $appModules = array_slice(scandir(App::$primary->path . '/modules'), 2); |
8 | - } |
|
9 | - else { |
|
8 | + } else { |
|
10 | 9 | $appModules=[]; |
11 | 10 | } |
12 | 11 | $systemModules = array_merge(array_slice(scandir(INJI_SYSTEM_DIR . '/modules'), 2), $appModules); |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | echo 'form not found'; |
5 | 5 | return; |
6 | 6 | } |
7 | -$userForm = \UserForms\Form::get((int)$formId); |
|
7 | +$userForm = \UserForms\Form::get((int) $formId); |
|
8 | 8 | if (!$userForm) { |
9 | 9 | echo 'form not found'; |
10 | 10 | return; |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | echo "<p class = 'text-center'>{$userForm->description}</p>"; |
19 | 19 | } |
20 | 20 | foreach ($userForm->inputs(['order' => ['weight']]) as $input) { |
21 | - $form->input($input->type, 'UserForms[' . (int)$formId . '][input' . $input->id . ']', $input->label, ['required' => $input->required]); |
|
21 | + $form->input($input->type, 'UserForms[' . (int) $formId . '][input' . $input->id . ']', $input->label, ['required' => $input->required]); |
|
22 | 22 | } |
23 | 23 | ?> |
24 | 24 | <button class='btn btn-success btn-block'><?= urldecode($btnText); ?></button> |