@@ -32,7 +32,7 @@ |
||
| 32 | 32 | |
| 33 | 33 | |
| 34 | 34 | $options = []; |
| 35 | - $itemParams = \Ecommerce\Item\Param::getList(['where' => ['item_id', $this->model->id],'key'=>'item_option_id']); |
|
| 35 | + $itemParams = \Ecommerce\Item\Param::getList(['where' => ['item_id', $this->model->id], 'key'=>'item_option_id']); |
|
| 36 | 36 | foreach ($this->object->object->params as $param) { |
| 37 | 37 | if ($param->type == 'paramValue' && isset($itemParams[$param->value])) { |
| 38 | 38 | $options[$param->value] = $itemParams[$param->value]->value; |
@@ -1958,7 +1958,7 @@ |
||
| 1958 | 1958 | } |
| 1959 | 1959 | } |
| 1960 | 1960 | if (!$params) { |
| 1961 | - return FALSE; |
|
| 1961 | + return false; |
|
| 1962 | 1962 | } |
| 1963 | 1963 | return new $model($params); |
| 1964 | 1964 | } |
@@ -967,12 +967,12 @@ discard block |
||
| 967 | 967 | static::$needJoin = []; |
| 968 | 968 | |
| 969 | 969 | if (!empty($options['limit'])) { |
| 970 | - $limit = (int)$options['limit']; |
|
| 970 | + $limit = (int) $options['limit']; |
|
| 971 | 971 | } else { |
| 972 | 972 | $limit = 0; |
| 973 | 973 | } |
| 974 | 974 | if (!empty($options['start'])) { |
| 975 | - $start = (int)$options['start']; |
|
| 975 | + $start = (int) $options['start']; |
|
| 976 | 976 | } else { |
| 977 | 977 | $start = 0; |
| 978 | 978 | } |
@@ -1261,12 +1261,12 @@ discard block |
||
| 1261 | 1261 | $query->order($options['order']); |
| 1262 | 1262 | } |
| 1263 | 1263 | if (!empty($options['limit'])) { |
| 1264 | - $limit = (int)$options['limit']; |
|
| 1264 | + $limit = (int) $options['limit']; |
|
| 1265 | 1265 | } else { |
| 1266 | 1266 | $limit = 0; |
| 1267 | 1267 | } |
| 1268 | 1268 | if (!empty($options['start'])) { |
| 1269 | - $start = (int)$options['start']; |
|
| 1269 | + $start = (int) $options['start']; |
|
| 1270 | 1270 | } else { |
| 1271 | 1271 | $start = 0; |
| 1272 | 1272 | } |
@@ -1991,13 +1991,13 @@ discard block |
||
| 1991 | 1991 | if (!empty($className::$cols[$shortName])) { |
| 1992 | 1992 | switch ($className::$cols[$shortName]['type']) { |
| 1993 | 1993 | case 'decimal': |
| 1994 | - $value = (float)$value; |
|
| 1994 | + $value = (float) $value; |
|
| 1995 | 1995 | break; |
| 1996 | 1996 | case 'number': |
| 1997 | - $value = (int)$value; |
|
| 1997 | + $value = (int) $value; |
|
| 1998 | 1998 | break; |
| 1999 | 1999 | case 'bool': |
| 2000 | - $value = (bool)$value; |
|
| 2000 | + $value = (bool) $value; |
|
| 2001 | 2001 | break; |
| 2002 | 2002 | } |
| 2003 | 2003 | } |
@@ -31,25 +31,25 @@ |
||
| 31 | 31 | <span class="caption">Вид:</span> |
| 32 | 32 | <span class="group"> |
| 33 | 33 | <?php |
| 34 | - for ($i = 2; $i < 5; $i++) { |
|
| 35 | - $curLimit = $limit * $i; |
|
| 36 | - $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 37 | - echo " <a rel=\"nofollow\" href='{$path}?{$curQuery}'>"; |
|
| 38 | - echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '<b>' : ''; |
|
| 39 | - echo $curLimit; |
|
| 40 | - echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '</b>' : ''; |
|
| 41 | - echo "</a> "; |
|
| 42 | - } |
|
| 43 | - if (!empty(App::$cur->ecommerce->config['list_all'])) { |
|
| 44 | - $curLimit = 'all'; |
|
| 45 | - $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 46 | - echo " <a rel=\"nofollow\" href='{$path}?{$curQuery}'>"; |
|
| 47 | - echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '<b>' : ''; |
|
| 48 | - echo 'Все'; |
|
| 49 | - echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '</b>' : ''; |
|
| 50 | - echo "</a> "; |
|
| 51 | - } |
|
| 52 | - ?> |
|
| 34 | + for ($i = 2; $i < 5; $i++) { |
|
| 35 | + $curLimit = $limit * $i; |
|
| 36 | + $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 37 | + echo " <a rel=\"nofollow\" href='{$path}?{$curQuery}'>"; |
|
| 38 | + echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '<b>' : ''; |
|
| 39 | + echo $curLimit; |
|
| 40 | + echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '</b>' : ''; |
|
| 41 | + echo "</a> "; |
|
| 42 | + } |
|
| 43 | + if (!empty(App::$cur->ecommerce->config['list_all'])) { |
|
| 44 | + $curLimit = 'all'; |
|
| 45 | + $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 46 | + echo " <a rel=\"nofollow\" href='{$path}?{$curQuery}'>"; |
|
| 47 | + echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '<b>' : ''; |
|
| 48 | + echo 'Все'; |
|
| 49 | + echo!empty($_GET['limit']) && $_GET['limit'] == $curLimit ? '</b>' : ''; |
|
| 50 | + echo "</a> "; |
|
| 51 | + } |
|
| 52 | + ?> |
|
| 53 | 53 | </span> |
| 54 | 54 | <span class="group"> |
| 55 | 55 | <a rel="nofollow" href ='#' onclick="inji.onLoad(function () { |
@@ -17,12 +17,12 @@ |
||
| 17 | 17 | <div class="row"> |
| 18 | 18 | <div class="col-sm-6 ecommerce-showoptions-sort"> |
| 19 | 19 | <span class="caption">Сортировка:</span> |
| 20 | - <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['price' => sortToggler('price','asc')]])); ?>">По цене<?= sortDirectionIcon('price'); ?></a> |
|
| 21 | - <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['sales' => sortToggler('sales','desc')]])); ?>">По популярности<?= sortDirectionIcon('sales'); ?></a> |
|
| 20 | + <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['price' => sortToggler('price', 'asc')]])); ?>">По цене<?= sortDirectionIcon('price'); ?></a> |
|
| 21 | + <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['sales' => sortToggler('sales', 'desc')]])); ?>">По популярности<?= sortDirectionIcon('sales'); ?></a> |
|
| 22 | 22 | <?php |
| 23 | 23 | if (!empty(App::$cur->ecommerce->config['isset_sort'])) { |
| 24 | 24 | ?> |
| 25 | - <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['isset' => sortToggler('isset','desc')]])); ?>">По наличию<?= sortDirectionIcon('isset'); ?></a> |
|
| 25 | + <a rel="nofollow" href="<?= $path; ?>?<?= http_build_query(array_merge($query, ['sort' => ['isset' => sortToggler('isset', 'desc')]])); ?>">По наличию<?= sortDirectionIcon('isset'); ?></a> |
|
| 26 | 26 | <?php |
| 27 | 27 | } |
| 28 | 28 | ?> |
@@ -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 | |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | public function submitReviewAction() { |
| 14 | 14 | $result = new \Server\Result(); |
| 15 | 15 | if (!empty($_POST['review']['item_id']) && !empty($_POST['review']['name']) && !empty($_POST['review']['text'])) { |
| 16 | - $item = Ecommerce\Item::get((int)$_POST['review']['item_id']); |
|
| 16 | + $item = Ecommerce\Item::get((int) $_POST['review']['item_id']); |
|
| 17 | 17 | if (!$item) { |
| 18 | 18 | $result->success = false; |
| 19 | 19 | $result->content = ['errorText' => 'Товар не найден']; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | 'item_id' => $item->id, |
| 24 | 24 | 'user_id' => \Users\User::$cur->id, |
| 25 | 25 | 'name' => htmlspecialchars($_POST['review']['name']), |
| 26 | - 'rating' => (int)$_POST['review']['rating'], |
|
| 26 | + 'rating' => (int) $_POST['review']['rating'], |
|
| 27 | 27 | 'text' => htmlspecialchars($_POST['review']['text']), |
| 28 | 28 | 'mail' => !empty($_POST['review']['email']) ? htmlspecialchars($_POST['review']['email']) : '', |
| 29 | 29 | 'file_id' => !empty($_FILES['review']['tmp_name']['file']) ? App::$cur->files->upload([ |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $user = Users\User::$cur; |
| 48 | 48 | if (!empty($_POST) && !empty($_POST['card_id'])) { |
| 49 | 49 | $error = false; |
| 50 | - $card = \Ecommerce\Card::get((int)$_POST['card_id']); |
|
| 50 | + $card = \Ecommerce\Card::get((int) $_POST['card_id']); |
|
| 51 | 51 | if (!$card) { |
| 52 | 52 | $error = true; |
| 53 | 53 | Msg::add('Такой карты не существует', 'danger'); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | //search |
| 134 | 134 | if (!empty($_GET['search'])) { |
| 135 | 135 | if (!empty($_GET['inCatalog'])) { |
| 136 | - $category_id = (int)$_GET['inCatalog']; |
|
| 136 | + $category_id = (int) $_GET['inCatalog']; |
|
| 137 | 137 | } |
| 138 | 138 | $search = $_GET['search']; |
| 139 | 139 | } else { |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | public function viewAction($id = '', $quick = 0) { |
| 278 | - $item = \Ecommerce\Item::get((int)$id); |
|
| 278 | + $item = \Ecommerce\Item::get((int) $id); |
|
| 279 | 279 | if (!$item) { |
| 280 | 280 | Tools::redirect('/ecommerce/', 'Такой товар не найден'); |
| 281 | 281 | } |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | |
| 324 | 324 | public function toggleFavAction($itemId) { |
| 325 | 325 | $result = new Server\Result(); |
| 326 | - $item = \Ecommerce\Item::get((int)$itemId); |
|
| 326 | + $item = \Ecommerce\Item::get((int) $itemId); |
|
| 327 | 327 | if (!$item) { |
| 328 | 328 | $result->success = false; |
| 329 | 329 | $result->content = 'Товар не найден'; |
@@ -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' => '', |