@@ -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) { |
@@ -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> |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | function parseWarehouse($warehouseCount) { |
27 | 27 | $count = $warehouseCount['@attributes']['КоличествоНаСкладе']; |
28 | - $objectId = \App::$cur->migrations->findObject((string)$warehouseCount['@attributes']['ИдСклада'], 'Ecommerce\Warehouse'); |
|
28 | + $objectId = \App::$cur->migrations->findObject((string) $warehouseCount['@attributes']['ИдСклада'], 'Ecommerce\Warehouse'); |
|
29 | 29 | if ($objectId) { |
30 | 30 | $modelName = get_class($this->model); |
31 | 31 | $warehouse = \Ecommerce\Item\Offer\Warehouse::get([[$modelName::index(), $this->model->pk()], [\Ecommerce\Warehouse::index(), $objectId->object_id]]); |
@@ -71,8 +71,8 @@ |
||
71 | 71 | $where[] = ['data', $_GET['data']]; |
72 | 72 | } |
73 | 73 | $pays = Money\Pay::getList(['where' => $where, 'order' => ['date_create', 'DESC']]); |
74 | - if(count($pays)===1){ |
|
75 | - Tools::redirect('/money/merchants/pay/'.current($pays)->id); |
|
74 | + if (count($pays) === 1) { |
|
75 | + Tools::redirect('/money/merchants/pay/' . current($pays)->id); |
|
76 | 76 | } |
77 | 77 | $this->view->page(['content' => 'pays', 'data' => compact('bread', 'pays')]); |
78 | 78 | } else { |
@@ -16,11 +16,11 @@ |
||
16 | 16 | public static $cols = [ |
17 | 17 | 'name' => ['type' => 'text'], |
18 | 18 | 'code' => ['type' => 'text'], |
19 | - 'message' => ['type' => 'dataManager','relation'=>'messages'], |
|
19 | + 'message' => ['type' => 'dataManager', 'relation'=>'messages'], |
|
20 | 20 | ]; |
21 | 21 | public static $dataManagers = [ |
22 | 22 | 'manager' => [ |
23 | - 'cols' => ['name', 'code','message'] |
|
23 | + 'cols' => ['name', 'code', 'message'] |
|
24 | 24 | ] |
25 | 25 | ]; |
26 | 26 | public static $forms = [ |
@@ -8,7 +8,7 @@ |
||
8 | 8 | if (!empty($alias)) { |
9 | 9 | $slider = Sliders\Slider::get($alias, 'alias'); |
10 | 10 | } |
11 | -if(empty($slider)){ |
|
11 | +if (empty($slider)) { |
|
12 | 12 | echo 'Slider not found'; |
13 | 13 | return; |
14 | 14 | } |
@@ -14,13 +14,13 @@ |
||
14 | 14 | \App::$cur->view->customAsset('js', '/static/moduleAsset/UserForms/js/formCatcher.js'); |
15 | 15 | if (!empty($_POST['UserForms'])) { |
16 | 16 | foreach ($_POST['UserForms'] as $form_id => $inputs) { |
17 | - $form = \UserForms\Form::get((int)$form_id); |
|
17 | + $form = \UserForms\Form::get((int) $form_id); |
|
18 | 18 | if (!$form) { |
19 | 19 | continue; |
20 | 20 | } |
21 | 21 | $formRecive = new \UserForms\Recive(); |
22 | - $formRecive->user_id = (int)\Users\User::$cur->id; |
|
23 | - $formRecive->form_id = (int)$form_id; |
|
22 | + $formRecive->user_id = (int) \Users\User::$cur->id; |
|
23 | + $formRecive->form_id = (int) $form_id; |
|
24 | 24 | $data = []; |
25 | 25 | $error = false; |
26 | 26 | foreach ($form->inputs as $input) { |
@@ -19,7 +19,7 @@ |
||
19 | 19 | $type = !empty($colInfo['colParams']['type']) ? $colInfo['colParams']['type'] : 'string'; |
20 | 20 | if ($type != 'dataManager') { |
21 | 21 | $table->addRow([ |
22 | - str_replace(' ',' ',!empty($modelName::$labels[$colName]) ? $modelName::$labels[$colName] : $colName), |
|
22 | + str_replace(' ', ' ', !empty($modelName::$labels[$colName]) ? $modelName::$labels[$colName] : $colName), |
|
23 | 23 | \Model::resloveTypeValue($item, $colName, true) |
24 | 24 | ]); |
25 | 25 | } |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | 'up' => function () { |
5 | - \Ecommerce\Delivery\Field\Item::get(1,'data'); |
|
5 | + \Ecommerce\Delivery\Field\Item::get(1, 'data'); |
|
6 | 6 | $field = new \Ecommerce\Delivery\Field( |
7 | 7 | [ |
8 | 8 | 'name' => 'Город', |