@@ -759,8 +759,7 @@ |
||
| 759 | 759 | */ |
| 760 | 760 | $path = 'mshop/product/manager/insert'; |
| 761 | 761 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 762 | - } |
|
| 763 | - else |
|
| 762 | + } else |
|
| 764 | 763 | { |
| 765 | 764 | /** mshop/product/manager/update/mysql |
| 766 | 765 | * Updates an existing product record in the database |
@@ -416,8 +416,7 @@ |
||
| 416 | 416 | */ |
| 417 | 417 | $path = 'mshop/coupon/manager/code/insert'; |
| 418 | 418 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 419 | - } |
|
| 420 | - else |
|
| 419 | + } else |
|
| 421 | 420 | { |
| 422 | 421 | /** mshop/coupon/manager/code/update/mysql |
| 423 | 422 | * Updates an existing coupon code record in the database |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | $this->removeItems( $item->getId(), 'catalog/lists', 'catalog', 'text' ); |
| 64 | 64 | $this->removeListItems( $item->getId(), 'catalog/lists', 'product' ); |
| 65 | 65 | } |
| 66 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 66 | + catch( \Exception $e ) {; } // If no root node was already inserted into the database |
|
| 67 | 67 | |
| 68 | 68 | $search = $manager->filter(); |
| 69 | 69 | $search->add( $search->and( [ |
@@ -63,7 +63,9 @@ |
||
| 63 | 63 | $this->removeItems( $item->getId(), 'catalog/lists', 'catalog', 'text' ); |
| 64 | 64 | $this->removeListItems( $item->getId(), 'catalog/lists', 'product' ); |
| 65 | 65 | } |
| 66 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 66 | + catch( \Exception $e ) |
|
| 67 | + { |
|
| 68 | +; } // If no root node was already inserted into the database |
|
| 67 | 69 | |
| 68 | 70 | $search = $manager->filter(); |
| 69 | 71 | $search->add( $search->and( [ |
@@ -112,9 +112,13 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
| 114 | 114 | { |
| 115 | - try { |
|
| 115 | + try |
|
| 116 | + { |
|
| 116 | 117 | $values['locale.language.siteid'] = $values['locale.language.siteid'] ?? $this->context()->locale()->getSiteId(); |
| 117 | - } catch( \Exception $e ) {} // if no locale item is available |
|
| 118 | + } |
|
| 119 | + catch( \Exception $e ) |
|
| 120 | + { |
|
| 121 | +} // if no locale item is available |
|
| 118 | 122 | |
| 119 | 123 | return $this->createItemBase( $values ); |
| 120 | 124 | } |
@@ -174,8 +178,7 @@ discard block |
||
| 174 | 178 | */ |
| 175 | 179 | $path = 'mshop/locale/manager/language/insert'; |
| 176 | 180 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 177 | - } |
|
| 178 | - else |
|
| 181 | + } else |
|
| 179 | 182 | { |
| 180 | 183 | /** mshop/locale/manager/language/update/mysql |
| 181 | 184 | * Updates an existing language record in the database |
@@ -267,9 +267,13 @@ discard block |
||
| 267 | 267 | */ |
| 268 | 268 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
| 269 | 269 | { |
| 270 | - try { |
|
| 270 | + try |
|
| 271 | + { |
|
| 271 | 272 | $values['locale.siteid'] = $values['locale.siteid'] ?? $this->context()->locale()->getSiteId(); |
| 272 | - } catch( \Exception $e ) {} // if no locale item is available |
|
| 273 | + } |
|
| 274 | + catch( \Exception $e ) |
|
| 275 | + { |
|
| 276 | +} // if no locale item is available |
|
| 273 | 277 | |
| 274 | 278 | return $this->createItemBase( $values ); |
| 275 | 279 | } |
@@ -431,8 +435,7 @@ discard block |
||
| 431 | 435 | */ |
| 432 | 436 | $path = 'mshop/locale/manager/insert'; |
| 433 | 437 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 434 | - } |
|
| 435 | - else |
|
| 438 | + } else |
|
| 436 | 439 | { |
| 437 | 440 | /** mshop/locale/manager/update/mysql |
| 438 | 441 | * Updates an existing locale record in the database |
@@ -60,8 +60,7 @@ |
||
| 60 | 60 | $sort = 'mindte_ft.RANK * mpro."boost"'; |
| 61 | 61 | |
| 62 | 62 | $func = $this->getFunctionRelevance(); |
| 63 | - } |
|
| 64 | - else |
|
| 63 | + } else |
|
| 65 | 64 | { |
| 66 | 65 | $search = ':site AND mindte."langid" = $1 AND CHARINDEX( $2, content )'; |
| 67 | 66 | $sort = '-CHARINDEX( $2, content ) * mpro."boost"'; |
@@ -133,9 +133,11 @@ |
||
| 133 | 133 | $code = $orderProduct->getProductCode(); |
| 134 | 134 | $prodMap[$code] = ( $prodMap[$code] ?? 0 ) + $orderProduct->getQuantity(); |
| 135 | 135 | |
| 136 | - foreach( $orderProduct->getProducts() as $prodItem ) // calculate bundled products |
|
| 136 | + foreach( $orderProduct->getProducts() as $prodItem ) { |
|
| 137 | + // calculate bundled products |
|
| 137 | 138 | { |
| 138 | 139 | $code = $prodItem->getProductCode(); |
| 140 | + } |
|
| 139 | 141 | $prodMap[$code] = ( $prodMap[$code] ?? 0 ) + $prodItem->getQuantity(); |
| 140 | 142 | } |
| 141 | 143 | } |
@@ -253,8 +253,7 @@ |
||
| 253 | 253 | */ |
| 254 | 254 | $path = 'mshop/order/manager/status/insert'; |
| 255 | 255 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 256 | - } |
|
| 257 | - else |
|
| 256 | + } else |
|
| 258 | 257 | { |
| 259 | 258 | /** mshop/order/manager/status/update/mysql |
| 260 | 259 | * Updates an existing order record in the database |
@@ -270,9 +270,13 @@ discard block |
||
| 270 | 270 | */ |
| 271 | 271 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
| 272 | 272 | { |
| 273 | - try { |
|
| 273 | + try |
|
| 274 | + { |
|
| 274 | 275 | $values['log.siteid'] = $values['log.siteid'] ?? $this->context()->locale()->getSiteId(); |
| 275 | - } catch( \Exception $e ) {} // if no locale item is available |
|
| 276 | + } |
|
| 277 | + catch( \Exception $e ) |
|
| 278 | + { |
|
| 279 | +} // if no locale item is available |
|
| 276 | 280 | |
| 277 | 281 | return $this->createItemBase( $values ); |
| 278 | 282 | } |
@@ -449,9 +453,12 @@ discard block |
||
| 449 | 453 | return $item; |
| 450 | 454 | } |
| 451 | 455 | |
| 452 | - try { |
|
| 456 | + try |
|
| 457 | + { |
|
| 453 | 458 | $siteid = $this->context()->locale()->getSiteId(); |
| 454 | - } catch( \Exception $e ) { |
|
| 459 | + } |
|
| 460 | + catch( \Exception $e ) |
|
| 461 | + { |
|
| 455 | 462 | $siteid = ''; |
| 456 | 463 | } |
| 457 | 464 | |
@@ -498,8 +505,7 @@ discard block |
||
| 498 | 505 | */ |
| 499 | 506 | $path = 'madmin/log/manager/insert'; |
| 500 | 507 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 501 | - } |
|
| 502 | - else |
|
| 508 | + } else |
|
| 503 | 509 | { |
| 504 | 510 | /** madmin/log/manager/update/mysql |
| 505 | 511 | * Updates an existing log record in the database |