@@ -19,7 +19,7 @@ |
||
| 19 | 19 | echo "<p class = 'text-center'>{$userForm->description}</p>";
|
| 20 | 20 | } |
| 21 | 21 | foreach ($userForm->inputs(['order' => ['weight']]) as $input) {
|
| 22 | - $form->input($input->type, 'UserForms[' . (int) $form_id . '][input' . $input->id . ']', $input->label, ['required' => $input->required]); |
|
| 22 | + $form->input($input->type, 'UserForms['.(int) $form_id.'][input'.$input->id.']', $input->label, ['required' => $input->required]); |
|
| 23 | 23 | } |
| 24 | 24 | ?> |
| 25 | 25 | <button class = 'btn btn-success btn-block'>Отправить</button> |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | $inputs = json_decode($params[0]->fr_data, true); |
| 4 | 4 | foreach ($params[0]->form->inputs as $input) { |
| 5 | - if (isset($inputs['input' . $input->fi_id])) { |
|
| 6 | - echo "{$input->fi_label}: " . htmlspecialchars($inputs['input' . $input->fi_id]) . "<br />"; |
|
| 5 | + if (isset($inputs['input'.$input->fi_id])) { |
|
| 6 | + echo "{$input->fi_label}: ".htmlspecialchars($inputs['input'.$input->fi_id])."<br />"; |
|
| 7 | 7 | } |
| 8 | 8 | } |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | |
| 80 | 80 | public function name() |
| 81 | 81 | { |
| 82 | - return $this->code ? $this->code : $this->id . ' - ' . $this->user->name(); |
|
| 82 | + return $this->code ? $this->code : $this->id.' - '.$this->user->name(); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | } |
@@ -112,17 +112,17 @@ discard block |
||
| 112 | 112 | { |
| 113 | 113 | |
| 114 | 114 | if ($this->id) { |
| 115 | - $this->search_index = $this->name . ' '; |
|
| 115 | + $this->search_index = $this->name.' '; |
|
| 116 | 116 | if ($this->category) { |
| 117 | - $this->search_index .= $this->category->name . ' '; |
|
| 117 | + $this->search_index .= $this->category->name.' '; |
|
| 118 | 118 | } |
| 119 | 119 | if ($this->options) { |
| 120 | 120 | foreach ($this->options as $option) { |
| 121 | 121 | if ($option->item_option_searchable && $option->value) { |
| 122 | 122 | if ($option->item_option_type != 'select') { |
| 123 | - $this->search_index .= $option->value . ' '; |
|
| 123 | + $this->search_index .= $option->value.' '; |
|
| 124 | 124 | } elseif (!empty($option->option->items[$option->value])) { |
| 125 | - $option->option->items[$option->value]->value . ' '; |
|
| 125 | + $option->option->items[$option->value]->value.' '; |
|
| 126 | 126 | } |
| 127 | 127 | } |
| 128 | 128 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | 'col' => 'item_id', |
| 145 | 145 | //'resultKey' => 'code', |
| 146 | 146 | 'resultKey' => 'item_option_id', |
| 147 | - 'join' => [Item\Option::table(), Item\Option::index() . ' = ' . Item\Param::colPrefix() . Item\Option::index()] |
|
| 147 | + 'join' => [Item\Option::table(), Item\Option::index().' = '.Item\Param::colPrefix().Item\Option::index()] |
|
| 148 | 148 | ], |
| 149 | 149 | 'offers' => [ |
| 150 | 150 | 'type' => 'many', |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | $curPrice = $price; |
| 182 | 182 | } elseif ( |
| 183 | 183 | (!$price->type->roles && !$curPrice) || |
| 184 | - ($price->type->roles && !$curPrice && strpos($price->type->roles, "|" . \Users\User::$cur->role_id . "|") !== false) |
|
| 184 | + ($price->type->roles && !$curPrice && strpos($price->type->roles, "|".\Users\User::$cur->role_id."|") !== false) |
|
| 185 | 185 | ) { |
| 186 | 186 | $curPrice = $price; |
| 187 | 187 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $event->save(); |
| 32 | 32 | } |
| 33 | 33 | if ($cur->count != $this->count) { |
| 34 | - $event = new Event(['cart_id' => $this->cart->cart_id, 'user_id' => \Users\User::$cur->id, 'cart_event_type_id' => 4, 'info' => $this->item_offer_price_id . "|" . ($this->count - $cur->count)]); |
|
| 34 | + $event = new Event(['cart_id' => $this->cart->cart_id, 'user_id' => \Users\User::$cur->id, 'cart_event_type_id' => 4, 'info' => $this->item_offer_price_id."|".($this->count - $cur->count)]); |
|
| 35 | 35 | $event->save(); |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -74,8 +74,8 @@ |
||
| 74 | 74 | unset($items[$key]); |
| 75 | 75 | unset($item); |
| 76 | 76 | } |
| 77 | - echo 'Происходит процесс индексации: проиндексировано ' . $i * $count; |
|
| 78 | - Tools::redirect('/admin/ecommerce/reSearchIndex/' . $i); |
|
| 77 | + echo 'Происходит процесс индексации: проиндексировано '.$i * $count; |
|
| 78 | + Tools::redirect('/admin/ecommerce/reSearchIndex/'.$i); |
|
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
@@ -16,11 +16,11 @@ |
||
| 16 | 16 | "mode": "", |
| 17 | 17 | "all": false, |
| 18 | 18 | "relation": "infos"} |
| 19 | - )'><?= $count . ' ' . Tools::getNumEnding($count, ['Элемент', 'Элемента', 'Элементов']); ?></a> |
|
| 19 | + )'><?= $count.' '.Tools::getNumEnding($count, ['Элемент', 'Элемента', 'Элементов']); ?></a> |
|
| 20 | 20 | <?php |
| 21 | 21 | } else { |
| 22 | 22 | foreach ($item->infos as $info) { |
| 23 | - echo $info->value . ' '; |
|
| 23 | + echo $info->value.' '; |
|
| 24 | 24 | } |
| 25 | 25 | } |
| 26 | 26 | ?> |
| 27 | 27 | \ No newline at end of file |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | $userCards = \Ecommerce\Card\Item::getList(['where' => ['user_id', \Users\User::$cur->id]]); |
| 4 | 4 | foreach ($userCards as $userCard) { |
| 5 | 5 | $checked = $cart->card_item_id == $userCard->id; |
| 6 | - $form->input('radio', "discounts[card_item_id]", $userCard->card->name, ['value' => $userCard->id, 'checked' => $checked, 'helpText' => $userCard->level->name . ' (' . $userCard->level->discount->name . ')<br />Сумма накоплений: ' . $userCard->sum . ' руб.']); |
|
| 6 | + $form->input('radio', "discounts[card_item_id]", $userCard->card->name, ['value' => $userCard->id, 'checked' => $checked, 'helpText' => $userCard->level->name.' ('.$userCard->level->discount->name.')<br />Сумма накоплений: '.$userCard->sum.' руб.']); |
|
| 7 | 7 | } |
| 8 | 8 | if (!$userCards) { |
| 9 | 9 | echo '<p>У вас нет <b>дисконтной карты</b>, вы можете её оформить и сразу начать пльзоваться её приемуществами.</p>'; |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | $cart->save(); |
| 50 | 50 | } |
| 51 | 51 | $count = count($carts); |
| 52 | - return 'Завершено <b>' . $count . '</b> ' . \Tools::getNumEnding($count, ['корзина', 'корзины', 'корзин']); |
|
| 52 | + return 'Завершено <b>'.$count.'</b> '.\Tools::getNumEnding($count, ['корзина', 'корзины', 'корзин']); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | } |