@@ -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(); |
@@ -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; |
@@ -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]]); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $walked = []; |
49 | 49 | foreach ($this->object->params as $param) { |
50 | - if(defined('mdebug')){ |
|
50 | + if (defined('mdebug')) { |
|
51 | 51 | echo " -> param ($param->id,$param->type,$param->value) "; |
52 | 52 | } |
53 | 53 | if ($model && $param->type && $param->type != 'item_key') { |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $parser->parentObject = $this; |
60 | 60 | $parser->parentModel = $model; |
61 | 61 | $parser->walker = $this->walker; |
62 | - if(defined('mdebug')){ |
|
62 | + if (defined('mdebug')) { |
|
63 | 63 | echo " -> objectParse "; |
64 | 64 | } |
65 | 65 | $parser->parse(); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $parser->param = $param; |
75 | 75 | $parser->model = $model; |
76 | 76 | $parser->object = $this; |
77 | - if(defined('mdebug')){ |
|
77 | + if (defined('mdebug')) { |
|
78 | 78 | echo " -> parser ($parserName) "; |
79 | 79 | } |
80 | 80 | $parser->parse(); |
@@ -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 = [ |