@@ -30,11 +30,11 @@ discard block |
||
| 30 | 30 | * @param \Aimeos\MShop\Context\Item\Iface $context Object storing the required instances for manaing databases |
| 31 | 31 | * connections, logger, session, etc. |
| 32 | 32 | */ |
| 33 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 33 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context) |
|
| 34 | 34 | { |
| 35 | - parent::__construct( $context ); |
|
| 35 | + parent::__construct($context); |
|
| 36 | 36 | |
| 37 | - $this->domainManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base' ); |
|
| 37 | + $this->domainManager = \Aimeos\MShop\Factory::createManager($context, 'order/base'); |
|
| 38 | 38 | $this->basket = $this->domainManager->getSession(); |
| 39 | 39 | |
| 40 | 40 | $this->checkLocale(); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | public function clear() |
| 48 | 48 | { |
| 49 | 49 | $this->basket = $this->domainManager->createItem(); |
| 50 | - $this->domainManager->setSession( $this->basket ); |
|
| 50 | + $this->domainManager->setSession($this->basket); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | |
@@ -82,48 +82,48 @@ discard block |
||
| 82 | 82 | * @param string $warehouse Unique code of the warehouse to deliver the products from |
| 83 | 83 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
| 84 | 84 | */ |
| 85 | - public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 85 | + public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 86 | 86 | array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(), |
| 87 | - $warehouse = 'default' ) |
|
| 87 | + $warehouse = 'default') |
|
| 88 | 88 | { |
| 89 | 89 | $context = $this->getContext(); |
| 90 | 90 | |
| 91 | - $productItem = $this->getDomainItem( 'product', 'product.id', $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ) ); |
|
| 91 | + $productItem = $this->getDomainItem('product', 'product.id', $prodid, array('media', 'supplier', 'price', 'product', 'text')); |
|
| 92 | 92 | |
| 93 | - $orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem(); |
|
| 94 | - $orderBaseProductItem->copyFrom( $productItem ); |
|
| 95 | - $orderBaseProductItem->setQuantity( $quantity ); |
|
| 96 | - $orderBaseProductItem->setWarehouseCode( $warehouse ); |
|
| 93 | + $orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem(); |
|
| 94 | + $orderBaseProductItem->copyFrom($productItem); |
|
| 95 | + $orderBaseProductItem->setQuantity($quantity); |
|
| 96 | + $orderBaseProductItem->setWarehouseCode($warehouse); |
|
| 97 | 97 | |
| 98 | 98 | $attr = array(); |
| 99 | - $prices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
| 99 | + $prices = $productItem->getRefItems('price', 'default', 'default'); |
|
| 100 | 100 | |
| 101 | - switch( $productItem->getType() ) |
|
| 101 | + switch ($productItem->getType()) |
|
| 102 | 102 | { |
| 103 | 103 | case 'select': |
| 104 | - $attr = $this->getVariantDetails( $orderBaseProductItem, $productItem, $prices, $variantAttributeIds, $options ); |
|
| 104 | + $attr = $this->getVariantDetails($orderBaseProductItem, $productItem, $prices, $variantAttributeIds, $options); |
|
| 105 | 105 | break; |
| 106 | 106 | case 'bundle': |
| 107 | - $this->addBundleProducts( $orderBaseProductItem, $productItem, $variantAttributeIds, $warehouse ); |
|
| 107 | + $this->addBundleProducts($orderBaseProductItem, $productItem, $variantAttributeIds, $warehouse); |
|
| 108 | 108 | break; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
| 112 | - $price = $priceManager->getLowestPrice( $prices, $quantity ); |
|
| 111 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
| 112 | + $price = $priceManager->getLowestPrice($prices, $quantity); |
|
| 113 | 113 | |
| 114 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $configAttributeIds, 'config' ) ); |
|
| 115 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $hiddenAttributeIds, 'hidden' ) ); |
|
| 116 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) ); |
|
| 114 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $configAttributeIds, 'config')); |
|
| 115 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $hiddenAttributeIds, 'hidden')); |
|
| 116 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues)); |
|
| 117 | 117 | |
| 118 | 118 | // remove product rebate of original price in favor to rebates granted for the order |
| 119 | - $price->setRebate( '0.00' ); |
|
| 119 | + $price->setRebate('0.00'); |
|
| 120 | 120 | |
| 121 | - $orderBaseProductItem->setPrice( $price ); |
|
| 122 | - $orderBaseProductItem->setAttributes( $attr ); |
|
| 121 | + $orderBaseProductItem->setPrice($price); |
|
| 122 | + $orderBaseProductItem->setAttributes($attr); |
|
| 123 | 123 | |
| 124 | - $this->addProductInStock( $orderBaseProductItem, $productItem->getId(), $quantity, $options, $warehouse ); |
|
| 124 | + $this->addProductInStock($orderBaseProductItem, $productItem->getId(), $quantity, $options, $warehouse); |
|
| 125 | 125 | |
| 126 | - $this->domainManager->setSession( $this->basket ); |
|
| 126 | + $this->domainManager->setSession($this->basket); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | |
@@ -132,18 +132,18 @@ discard block |
||
| 132 | 132 | * |
| 133 | 133 | * @param integer $position Position number (key) of the order product item |
| 134 | 134 | */ |
| 135 | - public function deleteProduct( $position ) |
|
| 135 | + public function deleteProduct($position) |
|
| 136 | 136 | { |
| 137 | - $product = $this->basket->getProduct( $position ); |
|
| 137 | + $product = $this->basket->getProduct($position); |
|
| 138 | 138 | |
| 139 | - if( $product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE ) |
|
| 139 | + if ($product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE) |
|
| 140 | 140 | { |
| 141 | - $msg = sprintf( 'Basket item at position "%1$d" cannot be deleted manually', $position ); |
|
| 142 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 141 | + $msg = sprintf('Basket item at position "%1$d" cannot be deleted manually', $position); |
|
| 142 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - $this->basket->deleteProduct( $position ); |
|
| 146 | - $this->domainManager->setSession( $this->basket ); |
|
| 145 | + $this->basket->deleteProduct($position); |
|
| 146 | + $this->domainManager->setSession($this->basket); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | |
@@ -156,35 +156,35 @@ discard block |
||
| 156 | 156 | * The 'stock'=>false option allows adding products without being in stock. |
| 157 | 157 | * @param string[] $configAttributeCodes Codes of the product config attributes that should be REMOVED |
| 158 | 158 | */ |
| 159 | - public function editProduct( $position, $quantity, array $options = array(), |
|
| 160 | - array $configAttributeCodes = array() ) |
|
| 159 | + public function editProduct($position, $quantity, array $options = array(), |
|
| 160 | + array $configAttributeCodes = array()) |
|
| 161 | 161 | { |
| 162 | - $product = $this->basket->getProduct( $position ); |
|
| 163 | - $product->setQuantity( $quantity ); // Enforce check immediately |
|
| 162 | + $product = $this->basket->getProduct($position); |
|
| 163 | + $product->setQuantity($quantity); // Enforce check immediately |
|
| 164 | 164 | |
| 165 | - if( $product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE ) |
|
| 165 | + if ($product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE) |
|
| 166 | 166 | { |
| 167 | - $msg = sprintf( 'Basket item at position "%1$d" cannot be changed', $position ); |
|
| 168 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 167 | + $msg = sprintf('Basket item at position "%1$d" cannot be changed', $position); |
|
| 168 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | $attributes = $product->getAttributes(); |
| 172 | - foreach( $attributes as $key => $attribute ) |
|
| 172 | + foreach ($attributes as $key => $attribute) |
|
| 173 | 173 | { |
| 174 | - if( in_array( $attribute->getCode(), $configAttributeCodes ) ) { |
|
| 175 | - unset( $attributes[$key] ); |
|
| 174 | + if (in_array($attribute->getCode(), $configAttributeCodes)) { |
|
| 175 | + unset($attributes[$key]); |
|
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | - $product->setAttributes( $attributes ); |
|
| 178 | + $product->setAttributes($attributes); |
|
| 179 | 179 | |
| 180 | - $productItem = $this->getDomainItem( 'product', 'product.code', $product->getProductCode(), array( 'price', 'text' ) ); |
|
| 181 | - $prices = $productItem->getRefItems( 'price', 'default' ); |
|
| 180 | + $productItem = $this->getDomainItem('product', 'product.code', $product->getProductCode(), array('price', 'text')); |
|
| 181 | + $prices = $productItem->getRefItems('price', 'default'); |
|
| 182 | 182 | |
| 183 | - $product->setPrice( $this->calcPrice( $product, $prices, $quantity ) ); |
|
| 183 | + $product->setPrice($this->calcPrice($product, $prices, $quantity)); |
|
| 184 | 184 | |
| 185 | - $this->editProductInStock( $product, $productItem, $quantity, $position, $options ); |
|
| 185 | + $this->editProductInStock($product, $productItem, $quantity, $position, $options); |
|
| 186 | 186 | |
| 187 | - $this->domainManager->setSession( $this->basket ); |
|
| 187 | + $this->domainManager->setSession($this->basket); |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | |
@@ -194,50 +194,50 @@ discard block |
||
| 194 | 194 | * @param string $code Coupon code entered by the user |
| 195 | 195 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
| 196 | 196 | */ |
| 197 | - public function addCoupon( $code ) |
|
| 197 | + public function addCoupon($code) |
|
| 198 | 198 | { |
| 199 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' ); |
|
| 200 | - $codeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon/code' ); |
|
| 199 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon'); |
|
| 200 | + $codeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon/code'); |
|
| 201 | 201 | |
| 202 | 202 | |
| 203 | - $search = $codeManager->createSearch( true ); |
|
| 203 | + $search = $codeManager->createSearch(true); |
|
| 204 | 204 | $expr = array( |
| 205 | - $search->compare( '==', 'coupon.code.code', $code ), |
|
| 205 | + $search->compare('==', 'coupon.code.code', $code), |
|
| 206 | 206 | $search->getConditions(), |
| 207 | 207 | ); |
| 208 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 209 | - $search->setSlice( 0, 1 ); |
|
| 208 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 209 | + $search->setSlice(0, 1); |
|
| 210 | 210 | |
| 211 | - $result = $codeManager->searchItems( $search ); |
|
| 211 | + $result = $codeManager->searchItems($search); |
|
| 212 | 212 | |
| 213 | - if( ( $codeItem = reset( $result ) ) === false ) { |
|
| 214 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid or not available any more', $code ) ); |
|
| 213 | + if (($codeItem = reset($result)) === false) { |
|
| 214 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid or not available any more', $code)); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | |
| 218 | - $search = $manager->createSearch( true ); |
|
| 218 | + $search = $manager->createSearch(true); |
|
| 219 | 219 | $expr = array( |
| 220 | - $search->compare( '==', 'coupon.id', $codeItem->getParentId() ), |
|
| 220 | + $search->compare('==', 'coupon.id', $codeItem->getParentId()), |
|
| 221 | 221 | $search->getConditions(), |
| 222 | 222 | ); |
| 223 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 224 | - $search->setSlice( 0, 1 ); |
|
| 223 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 224 | + $search->setSlice(0, 1); |
|
| 225 | 225 | |
| 226 | - $result = $manager->searchItems( $search ); |
|
| 226 | + $result = $manager->searchItems($search); |
|
| 227 | 227 | |
| 228 | - if( ( $item = reset( $result ) ) === false ) { |
|
| 229 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon for code "%1$s" is not available any more', $code ) ); |
|
| 228 | + if (($item = reset($result)) === false) { |
|
| 229 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon for code "%1$s" is not available any more', $code)); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | |
| 233 | - $provider = $manager->getProvider( $item, $code ); |
|
| 233 | + $provider = $manager->getProvider($item, $code); |
|
| 234 | 234 | |
| 235 | - if( $provider->isAvailable( $this->basket ) !== true ) { |
|
| 236 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Requirements for coupon code "%1$s" aren\'t met', $code ) ); |
|
| 235 | + if ($provider->isAvailable($this->basket) !== true) { |
|
| 236 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Requirements for coupon code "%1$s" aren\'t met', $code)); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | - $provider->addCoupon( $this->basket ); |
|
| 240 | - $this->domainManager->setSession( $this->basket ); |
|
| 239 | + $provider->addCoupon($this->basket); |
|
| 240 | + $this->domainManager->setSession($this->basket); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | |
@@ -247,22 +247,22 @@ discard block |
||
| 247 | 247 | * @param string $code Coupon code entered by the user |
| 248 | 248 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
| 249 | 249 | */ |
| 250 | - public function deleteCoupon( $code ) |
|
| 250 | + public function deleteCoupon($code) |
|
| 251 | 251 | { |
| 252 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' ); |
|
| 252 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon'); |
|
| 253 | 253 | |
| 254 | 254 | $search = $manager->createSearch(); |
| 255 | - $search->setConditions( $search->compare( '==', 'coupon.code.code', $code ) ); |
|
| 256 | - $search->setSlice( 0, 1 ); |
|
| 255 | + $search->setConditions($search->compare('==', 'coupon.code.code', $code)); |
|
| 256 | + $search->setSlice(0, 1); |
|
| 257 | 257 | |
| 258 | - $result = $manager->searchItems( $search ); |
|
| 258 | + $result = $manager->searchItems($search); |
|
| 259 | 259 | |
| 260 | - if( ( $item = reset( $result ) ) === false ) { |
|
| 261 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid', $code ) ); |
|
| 260 | + if (($item = reset($result)) === false) { |
|
| 261 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid', $code)); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - $manager->getProvider( $item, $code )->deleteCoupon( $this->basket ); |
|
| 265 | - $this->domainManager->setSession( $this->basket ); |
|
| 264 | + $manager->getProvider($item, $code)->deleteCoupon($this->basket); |
|
| 265 | + $this->domainManager->setSession($this->basket); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | |
@@ -274,31 +274,31 @@ discard block |
||
| 274 | 274 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the billing or delivery address is not of any required type of |
| 275 | 275 | * if one of the keys is invalid when using an array with key/value pairs |
| 276 | 276 | */ |
| 277 | - public function setAddress( $type, $value ) |
|
| 277 | + public function setAddress($type, $value) |
|
| 278 | 278 | { |
| 279 | - $address = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/address' )->createItem(); |
|
| 280 | - $address->setType( $type ); |
|
| 279 | + $address = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/address')->createItem(); |
|
| 280 | + $address->setType($type); |
|
| 281 | 281 | |
| 282 | - if( $value instanceof \Aimeos\MShop\Common\Item\Address\Iface ) |
|
| 282 | + if ($value instanceof \Aimeos\MShop\Common\Item\Address\Iface) |
|
| 283 | 283 | { |
| 284 | - $address->copyFrom( $value ); |
|
| 285 | - $this->basket->setAddress( $address, $type ); |
|
| 284 | + $address->copyFrom($value); |
|
| 285 | + $this->basket->setAddress($address, $type); |
|
| 286 | 286 | } |
| 287 | - else if( is_array( $value ) ) |
|
| 287 | + else if (is_array($value)) |
|
| 288 | 288 | { |
| 289 | - $this->setAddressFromArray( $address, $value ); |
|
| 290 | - $this->basket->setAddress( $address, $type ); |
|
| 289 | + $this->setAddressFromArray($address, $value); |
|
| 290 | + $this->basket->setAddress($address, $type); |
|
| 291 | 291 | } |
| 292 | - else if( $value === null ) |
|
| 292 | + else if ($value === null) |
|
| 293 | 293 | { |
| 294 | - $this->basket->deleteAddress( $type ); |
|
| 294 | + $this->basket->deleteAddress($type); |
|
| 295 | 295 | } |
| 296 | 296 | else |
| 297 | 297 | { |
| 298 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Invalid value for address type "%1$s"', $type ) ); |
|
| 298 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Invalid value for address type "%1$s"', $type)); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - $this->domainManager->setSession( $this->basket ); |
|
| 301 | + $this->domainManager->setSession($this->basket); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | |
@@ -311,43 +311,43 @@ discard block |
||
| 311 | 311 | * entered by the customer when choosing one of the delivery or payment options |
| 312 | 312 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
| 313 | 313 | */ |
| 314 | - public function setService( $type, $id, array $attributes = array() ) |
|
| 314 | + public function setService($type, $id, array $attributes = array()) |
|
| 315 | 315 | { |
| 316 | 316 | $context = $this->getContext(); |
| 317 | 317 | |
| 318 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $context, 'service' ); |
|
| 319 | - $serviceItem = $this->getDomainItem( 'service', 'service.id', $id, array( 'media', 'price', 'text' ) ); |
|
| 318 | + $serviceManager = \Aimeos\MShop\Factory::createManager($context, 'service'); |
|
| 319 | + $serviceItem = $this->getDomainItem('service', 'service.id', $id, array('media', 'price', 'text')); |
|
| 320 | 320 | |
| 321 | - $provider = $serviceManager->getProvider( $serviceItem ); |
|
| 322 | - $result = $provider->checkConfigFE( $attributes ); |
|
| 323 | - $unknown = array_diff_key( $attributes, $result ); |
|
| 321 | + $provider = $serviceManager->getProvider($serviceItem); |
|
| 322 | + $result = $provider->checkConfigFE($attributes); |
|
| 323 | + $unknown = array_diff_key($attributes, $result); |
|
| 324 | 324 | |
| 325 | - if( count( $unknown ) > 0 ) |
|
| 325 | + if (count($unknown) > 0) |
|
| 326 | 326 | { |
| 327 | - $msg = sprintf( 'Unknown attributes "%1$s"', implode( '","', array_keys( $unknown ) ) ); |
|
| 328 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 327 | + $msg = sprintf('Unknown attributes "%1$s"', implode('","', array_keys($unknown))); |
|
| 328 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 329 | 329 | } |
| 330 | 330 | |
| 331 | - foreach( $result as $key => $value ) |
|
| 331 | + foreach ($result as $key => $value) |
|
| 332 | 332 | { |
| 333 | - if( $value !== null ) { |
|
| 334 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $value ); |
|
| 333 | + if ($value !== null) { |
|
| 334 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($value); |
|
| 335 | 335 | } |
| 336 | 336 | } |
| 337 | 337 | |
| 338 | - $orderBaseServiceManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base/service' ); |
|
| 338 | + $orderBaseServiceManager = \Aimeos\MShop\Factory::createManager($context, 'order/base/service'); |
|
| 339 | 339 | $orderServiceItem = $orderBaseServiceManager->createItem(); |
| 340 | - $orderServiceItem->copyFrom( $serviceItem ); |
|
| 340 | + $orderServiceItem->copyFrom($serviceItem); |
|
| 341 | 341 | |
| 342 | - $price = $provider->calcPrice( $this->basket ); |
|
| 342 | + $price = $provider->calcPrice($this->basket); |
|
| 343 | 343 | // remove service rebate of original price |
| 344 | - $price->setRebate( '0.00' ); |
|
| 345 | - $orderServiceItem->setPrice( $price ); |
|
| 344 | + $price->setRebate('0.00'); |
|
| 345 | + $orderServiceItem->setPrice($price); |
|
| 346 | 346 | |
| 347 | - $provider->setConfigFE( $orderServiceItem, $attributes ); |
|
| 347 | + $provider->setConfigFE($orderServiceItem, $attributes); |
|
| 348 | 348 | |
| 349 | - $this->basket->setService( $orderServiceItem, $type ); |
|
| 350 | - $this->domainManager->setSession( $this->basket ); |
|
| 349 | + $this->basket->setService($orderServiceItem, $type); |
|
| 350 | + $this->domainManager->setSession($this->basket); |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | 353 | |
@@ -359,44 +359,44 @@ discard block |
||
| 359 | 359 | * @param array $variantAttributeIds List of product variant attribute IDs |
| 360 | 360 | * @param string $warehouse |
| 361 | 361 | */ |
| 362 | - protected function addBundleProducts( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 363 | - \Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $warehouse ) |
|
| 362 | + protected function addBundleProducts(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 363 | + \Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $warehouse) |
|
| 364 | 364 | { |
| 365 | 365 | $quantity = $orderBaseProductItem->getQuantity(); |
| 366 | 366 | $products = $subProductIds = $orderProducts = array(); |
| 367 | - $orderProductManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/product' ); |
|
| 367 | + $orderProductManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/product'); |
|
| 368 | 368 | |
| 369 | - foreach( $productItem->getRefItems( 'product', null, 'default' ) as $item ) { |
|
| 369 | + foreach ($productItem->getRefItems('product', null, 'default') as $item) { |
|
| 370 | 370 | $subProductIds[] = $item->getId(); |
| 371 | 371 | } |
| 372 | 372 | |
| 373 | - if( count( $subProductIds ) > 0 ) |
|
| 373 | + if (count($subProductIds) > 0) |
|
| 374 | 374 | { |
| 375 | - $productManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' ); |
|
| 375 | + $productManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product'); |
|
| 376 | 376 | |
| 377 | - $search = $productManager->createSearch( true ); |
|
| 377 | + $search = $productManager->createSearch(true); |
|
| 378 | 378 | $expr = array( |
| 379 | - $search->compare( '==', 'product.id', $subProductIds ), |
|
| 379 | + $search->compare('==', 'product.id', $subProductIds), |
|
| 380 | 380 | $search->getConditions(), |
| 381 | 381 | ); |
| 382 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 382 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 383 | 383 | |
| 384 | - $products = $productManager->searchItems( $search, array( 'attribute', 'media', 'price', 'text' ) ); |
|
| 384 | + $products = $productManager->searchItems($search, array('attribute', 'media', 'price', 'text')); |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | - foreach( $products as $product ) |
|
| 387 | + foreach ($products as $product) |
|
| 388 | 388 | { |
| 389 | - $prices = $product->getRefItems( 'price', 'default', 'default' ); |
|
| 389 | + $prices = $product->getRefItems('price', 'default', 'default'); |
|
| 390 | 390 | |
| 391 | 391 | $orderProduct = $orderProductManager->createItem(); |
| 392 | - $orderProduct->copyFrom( $product ); |
|
| 393 | - $orderProduct->setWarehouseCode( $warehouse ); |
|
| 394 | - $orderProduct->setPrice( $this->calcPrice( $orderProduct, $prices, $quantity ) ); |
|
| 392 | + $orderProduct->copyFrom($product); |
|
| 393 | + $orderProduct->setWarehouseCode($warehouse); |
|
| 394 | + $orderProduct->setPrice($this->calcPrice($orderProduct, $prices, $quantity)); |
|
| 395 | 395 | |
| 396 | 396 | $orderProducts[] = $orderProduct; |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | - $orderBaseProductItem->setProducts( $orderProducts ); |
|
| 399 | + $orderBaseProductItem->setProducts($orderProducts); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | |
@@ -408,18 +408,18 @@ discard block |
||
| 408 | 408 | * an address item. |
| 409 | 409 | * @throws \Aimeos\Controller\Frontend\Basket\Exception |
| 410 | 410 | */ |
| 411 | - protected function setAddressFromArray( \Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map ) |
|
| 411 | + protected function setAddressFromArray(\Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map) |
|
| 412 | 412 | { |
| 413 | - foreach( $map as $key => $value ) { |
|
| 414 | - $map[$key] = strip_tags( $value ); // prevent XSS |
|
| 413 | + foreach ($map as $key => $value) { |
|
| 414 | + $map[$key] = strip_tags($value); // prevent XSS |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | - $errors = $address->fromArray( $map ); |
|
| 417 | + $errors = $address->fromArray($map); |
|
| 418 | 418 | |
| 419 | - if( count( $errors ) > 0 ) |
|
| 419 | + if (count($errors) > 0) |
|
| 420 | 420 | { |
| 421 | - $msg = sprintf( 'Invalid address properties, please check your input' ); |
|
| 422 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg, 0, null, $errors ); |
|
| 421 | + $msg = sprintf('Invalid address properties, please check your input'); |
|
| 422 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg, 0, null, $errors); |
|
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | 425 | |
@@ -434,32 +434,32 @@ discard block |
||
| 434 | 434 | * @param string $warehouse Warehouse code for retrieving the stock level |
| 435 | 435 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there's not enough stock available |
| 436 | 436 | */ |
| 437 | - protected function addProductInStock( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 438 | - $productId, $quantity, array $options, $warehouse ) |
|
| 437 | + protected function addProductInStock(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 438 | + $productId, $quantity, array $options, $warehouse) |
|
| 439 | 439 | { |
| 440 | 440 | $stocklevel = null; |
| 441 | - if( !isset( $options['stock'] ) || $options['stock'] != false ) { |
|
| 442 | - $stocklevel = $this->getStockLevel( $productId, $warehouse ); |
|
| 441 | + if (!isset($options['stock']) || $options['stock'] != false) { |
|
| 442 | + $stocklevel = $this->getStockLevel($productId, $warehouse); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | - if( $stocklevel === null || $stocklevel > 0 ) |
|
| 445 | + if ($stocklevel === null || $stocklevel > 0) |
|
| 446 | 446 | { |
| 447 | - $position = $this->get()->addProduct( $orderBaseProductItem ); |
|
| 448 | - $orderBaseProductItem = clone $this->get()->getProduct( $position ); |
|
| 447 | + $position = $this->get()->addProduct($orderBaseProductItem); |
|
| 448 | + $orderBaseProductItem = clone $this->get()->getProduct($position); |
|
| 449 | 449 | $quantity = $orderBaseProductItem->getQuantity(); |
| 450 | 450 | |
| 451 | - if( $stocklevel > 0 && $stocklevel < $quantity ) |
|
| 451 | + if ($stocklevel > 0 && $stocklevel < $quantity) |
|
| 452 | 452 | { |
| 453 | - $this->get()->deleteProduct( $position ); |
|
| 454 | - $orderBaseProductItem->setQuantity( $stocklevel ); |
|
| 455 | - $this->get()->addProduct( $orderBaseProductItem, $position ); |
|
| 453 | + $this->get()->deleteProduct($position); |
|
| 454 | + $orderBaseProductItem->setQuantity($stocklevel); |
|
| 455 | + $this->get()->addProduct($orderBaseProductItem, $position); |
|
| 456 | 456 | } |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | - if( $stocklevel !== null && $stocklevel < $quantity ) |
|
| 459 | + if ($stocklevel !== null && $stocklevel < $quantity) |
|
| 460 | 460 | { |
| 461 | - $msg = sprintf( 'There are not enough products "%1$s" in stock', $orderBaseProductItem->getName() ); |
|
| 462 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 461 | + $msg = sprintf('There are not enough products "%1$s" in stock', $orderBaseProductItem->getName()); |
|
| 462 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 463 | 463 | } |
| 464 | 464 | } |
| 465 | 465 | |
@@ -474,26 +474,26 @@ discard block |
||
| 474 | 474 | * @param array Associative list of options |
| 475 | 475 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there's not enough stock available |
| 476 | 476 | */ |
| 477 | - protected function editProductInStock( \Aimeos\MShop\Order\Item\Base\Product\Iface $product, |
|
| 478 | - \Aimeos\MShop\Product\Item\Iface $productItem, $quantity, $position, array $options ) |
|
| 477 | + protected function editProductInStock(\Aimeos\MShop\Order\Item\Base\Product\Iface $product, |
|
| 478 | + \Aimeos\MShop\Product\Item\Iface $productItem, $quantity, $position, array $options) |
|
| 479 | 479 | { |
| 480 | 480 | $stocklevel = null; |
| 481 | - if( !isset( $options['stock'] ) || $options['stock'] != false ) { |
|
| 482 | - $stocklevel = $this->getStockLevel( $productItem->getId(), $product->getWarehouseCode() ); |
|
| 481 | + if (!isset($options['stock']) || $options['stock'] != false) { |
|
| 482 | + $stocklevel = $this->getStockLevel($productItem->getId(), $product->getWarehouseCode()); |
|
| 483 | 483 | } |
| 484 | 484 | |
| 485 | - $product->setQuantity( ( $stocklevel !== null && $stocklevel > 0 ? min( $stocklevel, $quantity ) : $quantity ) ); |
|
| 485 | + $product->setQuantity(($stocklevel !== null && $stocklevel > 0 ? min($stocklevel, $quantity) : $quantity)); |
|
| 486 | 486 | |
| 487 | - $this->get()->deleteProduct( $position ); |
|
| 487 | + $this->get()->deleteProduct($position); |
|
| 488 | 488 | |
| 489 | - if( $stocklevel === null || $stocklevel > 0 ) { |
|
| 490 | - $this->get()->addProduct( $product, $position ); |
|
| 489 | + if ($stocklevel === null || $stocklevel > 0) { |
|
| 490 | + $this->get()->addProduct($product, $position); |
|
| 491 | 491 | } |
| 492 | 492 | |
| 493 | - if( $stocklevel !== null && $stocklevel < $quantity ) |
|
| 493 | + if ($stocklevel !== null && $stocklevel < $quantity) |
|
| 494 | 494 | { |
| 495 | - $msg = sprintf( 'There are not enough products "%1$s" in stock', $productItem->getName() ); |
|
| 496 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 495 | + $msg = sprintf('There are not enough products "%1$s" in stock', $productItem->getName()); |
|
| 496 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 497 | 497 | } |
| 498 | 498 | } |
| 499 | 499 | |
@@ -509,44 +509,44 @@ discard block |
||
| 509 | 509 | * @return \Aimeos\MShop\Order\Item\Base\Product\Attribute\Iface[] List of order product attributes |
| 510 | 510 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If no product variant is found |
| 511 | 511 | */ |
| 512 | - protected function getVariantDetails( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 513 | - \Aimeos\MShop\Product\Item\Iface &$productItem, array &$prices, array $variantAttributeIds, array $options ) |
|
| 512 | + protected function getVariantDetails(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
| 513 | + \Aimeos\MShop\Product\Item\Iface & $productItem, array &$prices, array $variantAttributeIds, array $options) |
|
| 514 | 514 | { |
| 515 | 515 | $attr = array(); |
| 516 | - $productItems = $this->getProductVariants( $productItem, $variantAttributeIds ); |
|
| 516 | + $productItems = $this->getProductVariants($productItem, $variantAttributeIds); |
|
| 517 | 517 | |
| 518 | - if( count( $productItems ) > 1 ) |
|
| 518 | + if (count($productItems) > 1) |
|
| 519 | 519 | { |
| 520 | - $msg = sprintf( 'No unique article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
|
| 521 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 520 | + $msg = sprintf('No unique article found for selected attributes and product ID "%1$s"', $productItem->getId()); |
|
| 521 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 522 | 522 | } |
| 523 | - else if( ( $result = reset( $productItems ) ) !== false ) // count == 1 |
|
| 523 | + else if (($result = reset($productItems)) !== false) // count == 1 |
|
| 524 | 524 | { |
| 525 | 525 | $productItem = $result; |
| 526 | - $orderBaseProductItem->setProductCode( $productItem->getCode() ); |
|
| 526 | + $orderBaseProductItem->setProductCode($productItem->getCode()); |
|
| 527 | 527 | |
| 528 | - $subprices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
| 528 | + $subprices = $productItem->getRefItems('price', 'default', 'default'); |
|
| 529 | 529 | |
| 530 | - if( count( $subprices ) > 0 ) { |
|
| 530 | + if (count($subprices) > 0) { |
|
| 531 | 531 | $prices = $subprices; |
| 532 | 532 | } |
| 533 | 533 | |
| 534 | - $orderProductAttrManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/product/attribute' ); |
|
| 535 | - $variantAttributes = $productItem->getRefItems( 'attribute', null, 'variant' ); |
|
| 534 | + $orderProductAttrManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/product/attribute'); |
|
| 535 | + $variantAttributes = $productItem->getRefItems('attribute', null, 'variant'); |
|
| 536 | 536 | |
| 537 | - foreach( $this->getAttributes( array_keys( $variantAttributes ), array( 'text' ) ) as $attrItem ) |
|
| 537 | + foreach ($this->getAttributes(array_keys($variantAttributes), array('text')) as $attrItem) |
|
| 538 | 538 | { |
| 539 | 539 | $orderAttributeItem = $orderProductAttrManager->createItem(); |
| 540 | - $orderAttributeItem->copyFrom( $attrItem ); |
|
| 541 | - $orderAttributeItem->setType( 'variant' ); |
|
| 540 | + $orderAttributeItem->copyFrom($attrItem); |
|
| 541 | + $orderAttributeItem->setType('variant'); |
|
| 542 | 542 | |
| 543 | 543 | $attr[] = $orderAttributeItem; |
| 544 | 544 | } |
| 545 | 545 | } |
| 546 | - else if( !isset( $options['variant'] ) || $options['variant'] != false ) // count == 0 |
|
| 546 | + else if (!isset($options['variant']) || $options['variant'] != false) // count == 0 |
|
| 547 | 547 | { |
| 548 | - $msg = sprintf( 'No article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
|
| 549 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 548 | + $msg = sprintf('No article found for selected attributes and product ID "%1$s"', $productItem->getId()); |
|
| 549 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | return $attr; |
@@ -283,17 +283,14 @@ discard block |
||
| 283 | 283 | { |
| 284 | 284 | $address->copyFrom( $value ); |
| 285 | 285 | $this->basket->setAddress( $address, $type ); |
| 286 | - } |
|
| 287 | - else if( is_array( $value ) ) |
|
| 286 | + } else if( is_array( $value ) ) |
|
| 288 | 287 | { |
| 289 | 288 | $this->setAddressFromArray( $address, $value ); |
| 290 | 289 | $this->basket->setAddress( $address, $type ); |
| 291 | - } |
|
| 292 | - else if( $value === null ) |
|
| 290 | + } else if( $value === null ) |
|
| 293 | 291 | { |
| 294 | 292 | $this->basket->deleteAddress( $type ); |
| 295 | - } |
|
| 296 | - else |
|
| 293 | + } else |
|
| 297 | 294 | { |
| 298 | 295 | throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Invalid value for address type "%1$s"', $type ) ); |
| 299 | 296 | } |
@@ -519,10 +516,11 @@ discard block |
||
| 519 | 516 | { |
| 520 | 517 | $msg = sprintf( 'No unique article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
| 521 | 518 | throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
| 522 | - } |
|
| 523 | - else if( ( $result = reset( $productItems ) ) !== false ) // count == 1 |
|
| 519 | + } else if( ( $result = reset( $productItems ) ) !== false ) { |
|
| 520 | + // count == 1 |
|
| 524 | 521 | { |
| 525 | 522 | $productItem = $result; |
| 523 | + } |
|
| 526 | 524 | $orderBaseProductItem->setProductCode( $productItem->getCode() ); |
| 527 | 525 | |
| 528 | 526 | $subprices = $productItem->getRefItems( 'price', 'default', 'default' ); |
@@ -542,10 +540,11 @@ discard block |
||
| 542 | 540 | |
| 543 | 541 | $attr[] = $orderAttributeItem; |
| 544 | 542 | } |
| 545 | - } |
|
| 546 | - else if( !isset( $options['variant'] ) || $options['variant'] != false ) // count == 0 |
|
| 543 | + } else if( !isset( $options['variant'] ) || $options['variant'] != false ) { |
|
| 544 | + // count == 0 |
|
| 547 | 545 | { |
| 548 | 546 | $msg = sprintf( 'No article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
| 547 | + } |
|
| 549 | 548 | throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
| 550 | 549 | } |
| 551 | 550 | |
@@ -31,32 +31,32 @@ discard block |
||
| 31 | 31 | * @param integer $quantity New product quantity |
| 32 | 32 | * @return \Aimeos\MShop\Price\Item\Iface Price item with calculated price |
| 33 | 33 | */ |
| 34 | - protected function calcPrice( \Aimeos\MShop\Order\Item\Base\Product\Iface $product, array $prices, $quantity ) |
|
| 34 | + protected function calcPrice(\Aimeos\MShop\Order\Item\Base\Product\Iface $product, array $prices, $quantity) |
|
| 35 | 35 | { |
| 36 | 36 | $context = $this->getContext(); |
| 37 | 37 | |
| 38 | - if( empty( $prices ) ) |
|
| 38 | + if (empty($prices)) |
|
| 39 | 39 | { |
| 40 | - $parentItem = $this->getDomainItem( 'product', 'product.id', $product->getProductId(), array( 'price' ) ); |
|
| 41 | - $prices = $parentItem->getRefItems( 'price', 'default' ); |
|
| 40 | + $parentItem = $this->getDomainItem('product', 'product.id', $product->getProductId(), array('price')); |
|
| 41 | + $prices = $parentItem->getRefItems('price', 'default'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
| 45 | - $price = $priceManager->getLowestPrice( $prices, $quantity ); |
|
| 44 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
| 45 | + $price = $priceManager->getLowestPrice($prices, $quantity); |
|
| 46 | 46 | |
| 47 | - foreach( $this->getAttributeItems( $product->getAttributes() ) as $attrItem ) |
|
| 47 | + foreach ($this->getAttributeItems($product->getAttributes()) as $attrItem) |
|
| 48 | 48 | { |
| 49 | - $prices = $attrItem->getRefItems( 'price', 'default' ); |
|
| 49 | + $prices = $attrItem->getRefItems('price', 'default'); |
|
| 50 | 50 | |
| 51 | - if( count( $prices ) > 0 ) |
|
| 51 | + if (count($prices) > 0) |
|
| 52 | 52 | { |
| 53 | - $attrPrice = $priceManager->getLowestPrice( $prices, $quantity ); |
|
| 54 | - $price->addItem( $attrPrice ); |
|
| 53 | + $attrPrice = $priceManager->getLowestPrice($prices, $quantity); |
|
| 54 | + $price->addItem($attrPrice); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // remove product rebate of original price in favor to rebates granted for the order |
| 59 | - $price->setRebate( '0.00' ); |
|
| 59 | + $price->setRebate('0.00'); |
|
| 60 | 60 | |
| 61 | 61 | return $price; |
| 62 | 62 | } |
@@ -71,34 +71,34 @@ discard block |
||
| 71 | 71 | * @param array $refIds List of IDs that must be associated to the product |
| 72 | 72 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If one or more of the IDs are not associated |
| 73 | 73 | */ |
| 74 | - protected function checkReferences( $prodId, $domain, $listTypeId, array $refIds ) |
|
| 74 | + protected function checkReferences($prodId, $domain, $listTypeId, array $refIds) |
|
| 75 | 75 | { |
| 76 | - $productManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' ); |
|
| 77 | - $search = $productManager->createSearch( true ); |
|
| 76 | + $productManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product'); |
|
| 77 | + $search = $productManager->createSearch(true); |
|
| 78 | 78 | |
| 79 | 79 | $expr = array( |
| 80 | - $search->compare( '==', 'product.id', $prodId ), |
|
| 80 | + $search->compare('==', 'product.id', $prodId), |
|
| 81 | 81 | $search->getConditions(), |
| 82 | 82 | ); |
| 83 | 83 | |
| 84 | - if( count( $refIds ) > 0 ) |
|
| 84 | + if (count($refIds) > 0) |
|
| 85 | 85 | { |
| 86 | - foreach( $refIds as $key => $refId ) { |
|
| 86 | + foreach ($refIds as $key => $refId) { |
|
| 87 | 87 | $refIds[$key] = (string) $refId; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $param = array( $domain, $listTypeId, $refIds ); |
|
| 91 | - $cmpfunc = $search->createFunction( 'product.contains', $param ); |
|
| 90 | + $param = array($domain, $listTypeId, $refIds); |
|
| 91 | + $cmpfunc = $search->createFunction('product.contains', $param); |
|
| 92 | 92 | |
| 93 | - $expr[] = $search->compare( '==', $cmpfunc, count( $refIds ) ); |
|
| 93 | + $expr[] = $search->compare('==', $cmpfunc, count($refIds)); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 96 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 97 | 97 | |
| 98 | - if( count( $productManager->searchItems( $search, array() ) ) === 0 ) |
|
| 98 | + if (count($productManager->searchItems($search, array())) === 0) |
|
| 99 | 99 | { |
| 100 | - $msg = sprintf( 'Invalid "%1$s" references for product with ID "%2$s"', $domain, $prodId ); |
|
| 101 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 100 | + $msg = sprintf('Invalid "%1$s" references for product with ID "%2$s"', $domain, $prodId); |
|
| 101 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 102 | 102 | } |
| 103 | 103 | } |
| 104 | 104 | |
@@ -113,34 +113,34 @@ discard block |
||
| 113 | 113 | $session = $context->getSession(); |
| 114 | 114 | $locale = $this->get()->getLocale(); |
| 115 | 115 | |
| 116 | - $localeStr = $session->get( 'aimeos/basket/locale' ); |
|
| 116 | + $localeStr = $session->get('aimeos/basket/locale'); |
|
| 117 | 117 | $localeKey = $locale->getSite()->getCode() . '|' . $locale->getLanguageId() . '|' . $locale->getCurrencyId(); |
| 118 | 118 | |
| 119 | - if( $localeStr !== null && $localeStr !== $localeKey ) |
|
| 119 | + if ($localeStr !== null && $localeStr !== $localeKey) |
|
| 120 | 120 | { |
| 121 | - $locParts = explode( '|', $localeStr ); |
|
| 122 | - $locSite = ( isset( $locParts[0] ) ? $locParts[0] : '' ); |
|
| 123 | - $locLanguage = ( isset( $locParts[1] ) ? $locParts[1] : '' ); |
|
| 124 | - $locCurrency = ( isset( $locParts[2] ) ? $locParts[2] : '' ); |
|
| 121 | + $locParts = explode('|', $localeStr); |
|
| 122 | + $locSite = (isset($locParts[0]) ? $locParts[0] : ''); |
|
| 123 | + $locLanguage = (isset($locParts[1]) ? $locParts[1] : ''); |
|
| 124 | + $locCurrency = (isset($locParts[2]) ? $locParts[2] : ''); |
|
| 125 | 125 | |
| 126 | - $localeManager = \Aimeos\MShop\Factory::createManager( $context, 'locale' ); |
|
| 127 | - $locale = $localeManager->bootstrap( $locSite, $locLanguage, $locCurrency, false ); |
|
| 126 | + $localeManager = \Aimeos\MShop\Factory::createManager($context, 'locale'); |
|
| 127 | + $locale = $localeManager->bootstrap($locSite, $locLanguage, $locCurrency, false); |
|
| 128 | 128 | |
| 129 | 129 | $context = clone $context; |
| 130 | - $context->setLocale( $locale ); |
|
| 130 | + $context->setLocale($locale); |
|
| 131 | 131 | |
| 132 | - $manager = \Aimeos\MShop\Order\Manager\Factory::createManager( $context )->getSubManager( 'base' ); |
|
| 132 | + $manager = \Aimeos\MShop\Order\Manager\Factory::createManager($context)->getSubManager('base'); |
|
| 133 | 133 | $basket = $manager->getSession(); |
| 134 | 134 | |
| 135 | - $this->copyAddresses( $basket, $errors, $localeKey ); |
|
| 136 | - $this->copyServices( $basket, $errors ); |
|
| 137 | - $this->copyProducts( $basket, $errors, $localeKey ); |
|
| 138 | - $this->copyCoupons( $basket, $errors, $localeKey ); |
|
| 135 | + $this->copyAddresses($basket, $errors, $localeKey); |
|
| 136 | + $this->copyServices($basket, $errors); |
|
| 137 | + $this->copyProducts($basket, $errors, $localeKey); |
|
| 138 | + $this->copyCoupons($basket, $errors, $localeKey); |
|
| 139 | 139 | |
| 140 | - $manager->setSession( $basket ); |
|
| 140 | + $manager->setSession($basket); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - $session->set( 'aimeos/basket/locale', $localeKey ); |
|
| 143 | + $session->set('aimeos/basket/locale', $localeKey); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | |
@@ -152,20 +152,20 @@ discard block |
||
| 152 | 152 | * @param string $localeKey Unique identifier of the site, language and currency |
| 153 | 153 | * @return array Associative list of errors occured |
| 154 | 154 | */ |
| 155 | - protected function copyAddresses( \Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey ) |
|
| 155 | + protected function copyAddresses(\Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey) |
|
| 156 | 156 | { |
| 157 | - foreach( $basket->getAddresses() as $type => $item ) |
|
| 157 | + foreach ($basket->getAddresses() as $type => $item) |
|
| 158 | 158 | { |
| 159 | 159 | try |
| 160 | 160 | { |
| 161 | - $this->setAddress( $type, $item->toArray() ); |
|
| 162 | - $basket->deleteAddress( $type ); |
|
| 161 | + $this->setAddress($type, $item->toArray()); |
|
| 162 | + $basket->deleteAddress($type); |
|
| 163 | 163 | } |
| 164 | - catch( \Exception $e ) |
|
| 164 | + catch (\Exception $e) |
|
| 165 | 165 | { |
| 166 | 166 | $logger = $this->getContext()->getLogger(); |
| 167 | 167 | $str = 'Error migrating address with type "%1$s" in basket to locale "%2$s": %3$s'; |
| 168 | - $logger->log( sprintf( $str, $type, $localeKey, $e->getMessage() ), \Aimeos\MW\Logger\Base::INFO ); |
|
| 168 | + $logger->log(sprintf($str, $type, $localeKey, $e->getMessage()), \Aimeos\MW\Logger\Base::INFO); |
|
| 169 | 169 | $errors['address'][$type] = $e->getMessage(); |
| 170 | 170 | } |
| 171 | 171 | } |
@@ -182,20 +182,20 @@ discard block |
||
| 182 | 182 | * @param string $localeKey Unique identifier of the site, language and currency |
| 183 | 183 | * @return array Associative list of errors occured |
| 184 | 184 | */ |
| 185 | - protected function copyCoupons( \Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey ) |
|
| 185 | + protected function copyCoupons(\Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey) |
|
| 186 | 186 | { |
| 187 | - foreach( $basket->getCoupons() as $code => $list ) |
|
| 187 | + foreach ($basket->getCoupons() as $code => $list) |
|
| 188 | 188 | { |
| 189 | 189 | try |
| 190 | 190 | { |
| 191 | - $this->addCoupon( $code ); |
|
| 192 | - $basket->deleteCoupon( $code, true ); |
|
| 191 | + $this->addCoupon($code); |
|
| 192 | + $basket->deleteCoupon($code, true); |
|
| 193 | 193 | } |
| 194 | - catch( \Exception $e ) |
|
| 194 | + catch (\Exception $e) |
|
| 195 | 195 | { |
| 196 | 196 | $logger = $this->getContext()->getLogger(); |
| 197 | 197 | $str = 'Error migrating coupon with code "%1$s" in basket to locale "%2$s": %3$s'; |
| 198 | - $logger->log( sprintf( $str, $code, $localeKey, $e->getMessage() ), \Aimeos\MW\Logger\Base::INFO ); |
|
| 198 | + $logger->log(sprintf($str, $code, $localeKey, $e->getMessage()), \Aimeos\MW\Logger\Base::INFO); |
|
| 199 | 199 | $errors['coupon'][$code] = $e->getMessage(); |
| 200 | 200 | } |
| 201 | 201 | } |
@@ -212,11 +212,11 @@ discard block |
||
| 212 | 212 | * @param string $localeKey Unique identifier of the site, language and currency |
| 213 | 213 | * @return array Associative list of errors occured |
| 214 | 214 | */ |
| 215 | - protected function copyProducts( \Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey ) |
|
| 215 | + protected function copyProducts(\Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors, $localeKey) |
|
| 216 | 216 | { |
| 217 | - foreach( $basket->getProducts() as $pos => $product ) |
|
| 217 | + foreach ($basket->getProducts() as $pos => $product) |
|
| 218 | 218 | { |
| 219 | - if( $product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE ) { |
|
| 219 | + if ($product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE) { |
|
| 220 | 220 | continue; |
| 221 | 221 | } |
| 222 | 222 | |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | { |
| 225 | 225 | $attrIds = array(); |
| 226 | 226 | |
| 227 | - foreach( $product->getAttributes() as $attrItem ) { |
|
| 227 | + foreach ($product->getAttributes() as $attrItem) { |
|
| 228 | 228 | $attrIds[$attrItem->getType()][] = $attrItem->getAttributeId(); |
| 229 | 229 | } |
| 230 | 230 | |
@@ -232,21 +232,21 @@ discard block |
||
| 232 | 232 | $product->getProductId(), |
| 233 | 233 | $product->getQuantity(), |
| 234 | 234 | array(), |
| 235 | - $this->getValue( $attrIds, 'variant', array() ), |
|
| 236 | - $this->getValue( $attrIds, 'config', array() ), |
|
| 237 | - $this->getValue( $attrIds, 'hidden', array() ), |
|
| 238 | - $this->getValue( $attrIds, 'custom', array() ), |
|
| 235 | + $this->getValue($attrIds, 'variant', array()), |
|
| 236 | + $this->getValue($attrIds, 'config', array()), |
|
| 237 | + $this->getValue($attrIds, 'hidden', array()), |
|
| 238 | + $this->getValue($attrIds, 'custom', array()), |
|
| 239 | 239 | $product->getWarehouseCode() |
| 240 | 240 | ); |
| 241 | 241 | |
| 242 | - $basket->deleteProduct( $pos ); |
|
| 242 | + $basket->deleteProduct($pos); |
|
| 243 | 243 | } |
| 244 | - catch( \Exception $e ) |
|
| 244 | + catch (\Exception $e) |
|
| 245 | 245 | { |
| 246 | 246 | $code = $product->getProductCode(); |
| 247 | 247 | $logger = $this->getContext()->getLogger(); |
| 248 | 248 | $str = 'Error migrating product with code "%1$s" in basket to locale "%2$s": %3$s'; |
| 249 | - $logger->log( sprintf( $str, $code, $localeKey, $e->getMessage() ), \Aimeos\MW\Logger\Base::INFO ); |
|
| 249 | + $logger->log(sprintf($str, $code, $localeKey, $e->getMessage()), \Aimeos\MW\Logger\Base::INFO); |
|
| 250 | 250 | $errors['product'][$pos] = $e->getMessage(); |
| 251 | 251 | } |
| 252 | 252 | } |
@@ -262,22 +262,22 @@ discard block |
||
| 262 | 262 | * @param array $errors Associative list of previous errors |
| 263 | 263 | * @return array Associative list of errors occured |
| 264 | 264 | */ |
| 265 | - protected function copyServices( \Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors ) |
|
| 265 | + protected function copyServices(\Aimeos\MShop\Order\Item\Base\Iface $basket, array $errors) |
|
| 266 | 266 | { |
| 267 | - foreach( $basket->getServices() as $type => $item ) |
|
| 267 | + foreach ($basket->getServices() as $type => $item) |
|
| 268 | 268 | { |
| 269 | 269 | try |
| 270 | 270 | { |
| 271 | 271 | $attributes = array(); |
| 272 | 272 | |
| 273 | - foreach( $item->getAttributes() as $attrItem ) { |
|
| 273 | + foreach ($item->getAttributes() as $attrItem) { |
|
| 274 | 274 | $attributes[$attrItem->getCode()] = $attrItem->getValue(); |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | - $this->setService( $type, $item->getServiceId(), $attributes ); |
|
| 278 | - $basket->deleteService( $type ); |
|
| 277 | + $this->setService($type, $item->getServiceId(), $attributes); |
|
| 278 | + $basket->deleteService($type); |
|
| 279 | 279 | } |
| 280 | - catch( \Exception $e ) { ; } // Don't notify the user as appropriate services can be added automatically |
|
| 280 | + catch (\Exception $e) {; } // Don't notify the user as appropriate services can be added automatically |
|
| 281 | 281 | } |
| 282 | 282 | |
| 283 | 283 | return $errors; |
@@ -295,36 +295,36 @@ discard block |
||
| 295 | 295 | * @param array $attributeValues Associative list of attribute IDs as keys and their codes as values |
| 296 | 296 | * @return array List of items implementing \Aimeos\MShop\Order\Item\Product\Attribute\Iface |
| 297 | 297 | */ |
| 298 | - protected function createOrderProductAttributes( \Aimeos\MShop\Price\Item\Iface $price, $prodid, $quantity, |
|
| 299 | - array $attributeIds, $type, array $attributeValues = array() ) |
|
| 298 | + protected function createOrderProductAttributes(\Aimeos\MShop\Price\Item\Iface $price, $prodid, $quantity, |
|
| 299 | + array $attributeIds, $type, array $attributeValues = array()) |
|
| 300 | 300 | { |
| 301 | - if( empty( $attributeIds ) ) { |
|
| 301 | + if (empty($attributeIds)) { |
|
| 302 | 302 | return array(); |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - $attrTypeId = $this->getProductListTypeItem( 'attribute', $type )->getId(); |
|
| 306 | - $this->checkReferences( $prodid, 'attribute', $attrTypeId, $attributeIds ); |
|
| 305 | + $attrTypeId = $this->getProductListTypeItem('attribute', $type)->getId(); |
|
| 306 | + $this->checkReferences($prodid, 'attribute', $attrTypeId, $attributeIds); |
|
| 307 | 307 | |
| 308 | 308 | $list = array(); |
| 309 | 309 | $context = $this->getContext(); |
| 310 | 310 | |
| 311 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
| 312 | - $orderProductAttributeManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product/attribute' ); |
|
| 311 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
| 312 | + $orderProductAttributeManager = \Aimeos\MShop\Factory::createManager($context, 'order/base/product/attribute'); |
|
| 313 | 313 | |
| 314 | - foreach( $this->getAttributes( $attributeIds ) as $id => $attrItem ) |
|
| 314 | + foreach ($this->getAttributes($attributeIds) as $id => $attrItem) |
|
| 315 | 315 | { |
| 316 | - $prices = $attrItem->getRefItems( 'price', 'default', 'default' ); |
|
| 316 | + $prices = $attrItem->getRefItems('price', 'default', 'default'); |
|
| 317 | 317 | |
| 318 | - if( !empty( $prices ) ) { |
|
| 319 | - $price->addItem( $priceManager->getLowestPrice( $prices, $quantity ) ); |
|
| 318 | + if (!empty($prices)) { |
|
| 319 | + $price->addItem($priceManager->getLowestPrice($prices, $quantity)); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | $item = $orderProductAttributeManager->createItem(); |
| 323 | - $item->copyFrom( $attrItem ); |
|
| 324 | - $item->setType( $type ); |
|
| 323 | + $item->copyFrom($attrItem); |
|
| 324 | + $item->setType($type); |
|
| 325 | 325 | |
| 326 | - if( isset( $attributeValues[$id] ) ) { |
|
| 327 | - $item->setValue( $attributeValues[$id] ); |
|
| 326 | + if (isset($attributeValues[$id])) { |
|
| 327 | + $item->setValue($attributeValues[$id]); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | $list[] = $item; |
@@ -342,31 +342,31 @@ discard block |
||
| 342 | 342 | * @return array List of items implementing \Aimeos\MShop\Attribute\Item\Iface |
| 343 | 343 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the actual attribute number doesn't match the expected one |
| 344 | 344 | */ |
| 345 | - protected function getAttributes( array $attributeIds, array $domains = array( 'price', 'text' ) ) |
|
| 345 | + protected function getAttributes(array $attributeIds, array $domains = array('price', 'text')) |
|
| 346 | 346 | { |
| 347 | - if( empty( $attributeIds ) ) { |
|
| 347 | + if (empty($attributeIds)) { |
|
| 348 | 348 | return array(); |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'attribute' ); |
|
| 351 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'attribute'); |
|
| 352 | 352 | |
| 353 | - $search = $attributeManager->createSearch( true ); |
|
| 353 | + $search = $attributeManager->createSearch(true); |
|
| 354 | 354 | $expr = array( |
| 355 | - $search->compare( '==', 'attribute.id', $attributeIds ), |
|
| 355 | + $search->compare('==', 'attribute.id', $attributeIds), |
|
| 356 | 356 | $search->getConditions(), |
| 357 | 357 | ); |
| 358 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 359 | - $search->setSlice( 0, 0x7fffffff ); |
|
| 358 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 359 | + $search->setSlice(0, 0x7fffffff); |
|
| 360 | 360 | |
| 361 | - $attrItems = $attributeManager->searchItems( $search, $domains ); |
|
| 361 | + $attrItems = $attributeManager->searchItems($search, $domains); |
|
| 362 | 362 | |
| 363 | - if( count( $attrItems ) !== count( $attributeIds ) ) |
|
| 363 | + if (count($attrItems) !== count($attributeIds)) |
|
| 364 | 364 | { |
| 365 | - $expected = implode( ',', $attributeIds ); |
|
| 366 | - $actual = implode( ',', array_keys( $attrItems ) ); |
|
| 367 | - $msg = sprintf( 'Available attribute IDs "%1$s" do not match the given attribute IDs "%2$s"', $actual, $expected ); |
|
| 365 | + $expected = implode(',', $attributeIds); |
|
| 366 | + $actual = implode(',', array_keys($attrItems)); |
|
| 367 | + $msg = sprintf('Available attribute IDs "%1$s" do not match the given attribute IDs "%2$s"', $actual, $expected); |
|
| 368 | 368 | |
| 369 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 369 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | return $attrItems; |
@@ -379,31 +379,31 @@ discard block |
||
| 379 | 379 | * @param \Aimeos\MShop\Order\Item\Base\Product\Attribute\Item[] $orderAttributes List of order product attribute items |
| 380 | 380 | * @return \Aimeos\MShop\Attribute\Item\Iface[] Associative list of attribute IDs as key and attribute items as values |
| 381 | 381 | */ |
| 382 | - protected function getAttributeItems( array $orderAttributes ) |
|
| 382 | + protected function getAttributeItems(array $orderAttributes) |
|
| 383 | 383 | { |
| 384 | - if( empty( $orderAttributes ) ) { |
|
| 384 | + if (empty($orderAttributes)) { |
|
| 385 | 385 | return array(); |
| 386 | 386 | } |
| 387 | 387 | |
| 388 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'attribute' ); |
|
| 389 | - $search = $attributeManager->createSearch( true ); |
|
| 388 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'attribute'); |
|
| 389 | + $search = $attributeManager->createSearch(true); |
|
| 390 | 390 | $expr = array(); |
| 391 | 391 | |
| 392 | - foreach( $orderAttributes as $item ) |
|
| 392 | + foreach ($orderAttributes as $item) |
|
| 393 | 393 | { |
| 394 | 394 | $tmp = array( |
| 395 | - $search->compare( '==', 'attribute.domain', 'product' ), |
|
| 396 | - $search->compare( '==', 'attribute.code', $item->getValue() ), |
|
| 397 | - $search->compare( '==', 'attribute.type.domain', 'product' ), |
|
| 398 | - $search->compare( '==', 'attribute.type.code', $item->getCode() ), |
|
| 399 | - $search->compare( '>', 'attribute.type.status', 0 ), |
|
| 395 | + $search->compare('==', 'attribute.domain', 'product'), |
|
| 396 | + $search->compare('==', 'attribute.code', $item->getValue()), |
|
| 397 | + $search->compare('==', 'attribute.type.domain', 'product'), |
|
| 398 | + $search->compare('==', 'attribute.type.code', $item->getCode()), |
|
| 399 | + $search->compare('>', 'attribute.type.status', 0), |
|
| 400 | 400 | $search->getConditions(), |
| 401 | 401 | ); |
| 402 | - $expr[] = $search->combine( '&&', $tmp ); |
|
| 402 | + $expr[] = $search->combine('&&', $tmp); |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | - $search->setConditions( $search->combine( '||', $expr ) ); |
|
| 406 | - return $attributeManager->searchItems( $search, array( 'price' ) ); |
|
| 405 | + $search->setConditions($search->combine('||', $expr)); |
|
| 406 | + return $attributeManager->searchItems($search, array('price')); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | |
@@ -417,23 +417,23 @@ discard block |
||
| 417 | 417 | * @return \Aimeos\MShop\Common\Item\Iface Domain item object |
| 418 | 418 | * @throws \Aimeos\Controller\Frontend\Basket\Exception |
| 419 | 419 | */ |
| 420 | - protected function getDomainItem( $domain, $key, $value, array $ref ) |
|
| 420 | + protected function getDomainItem($domain, $key, $value, array $ref) |
|
| 421 | 421 | { |
| 422 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $domain ); |
|
| 422 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $domain); |
|
| 423 | 423 | |
| 424 | - $search = $manager->createSearch( true ); |
|
| 424 | + $search = $manager->createSearch(true); |
|
| 425 | 425 | $expr = array( |
| 426 | - $search->compare( '==', $key, $value ), |
|
| 426 | + $search->compare('==', $key, $value), |
|
| 427 | 427 | $search->getConditions(), |
| 428 | 428 | ); |
| 429 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 429 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 430 | 430 | |
| 431 | - $result = $manager->searchItems( $search, $ref ); |
|
| 431 | + $result = $manager->searchItems($search, $ref); |
|
| 432 | 432 | |
| 433 | - if( ( $item = reset( $result ) ) === false ) |
|
| 433 | + if (($item = reset($result)) === false) |
|
| 434 | 434 | { |
| 435 | - $msg = sprintf( 'No item for "%1$s" (%2$s) found', $value, $key ); |
|
| 436 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 435 | + $msg = sprintf('No item for "%1$s" (%2$s) found', $value, $key); |
|
| 436 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | return $item; |
@@ -447,26 +447,26 @@ discard block |
||
| 447 | 447 | * @param string $code Code of the list type |
| 448 | 448 | * @return \Aimeos\MShop\Common\Item\Type\Iface List type item |
| 449 | 449 | */ |
| 450 | - protected function getProductListTypeItem( $domain, $code ) |
|
| 450 | + protected function getProductListTypeItem($domain, $code) |
|
| 451 | 451 | { |
| 452 | - if( !isset( $this->listTypeAttributes[$domain][$code] ) ) |
|
| 452 | + if (!isset($this->listTypeAttributes[$domain][$code])) |
|
| 453 | 453 | { |
| 454 | - $listTypeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product/lists/type' ); |
|
| 454 | + $listTypeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product/lists/type'); |
|
| 455 | 455 | |
| 456 | - $listTypeSearch = $listTypeManager->createSearch( true ); |
|
| 456 | + $listTypeSearch = $listTypeManager->createSearch(true); |
|
| 457 | 457 | $expr = array( |
| 458 | - $listTypeSearch->compare( '==', 'product.lists.type.domain', $domain ), |
|
| 459 | - $listTypeSearch->compare( '==', 'product.lists.type.code', $code ), |
|
| 458 | + $listTypeSearch->compare('==', 'product.lists.type.domain', $domain), |
|
| 459 | + $listTypeSearch->compare('==', 'product.lists.type.code', $code), |
|
| 460 | 460 | $listTypeSearch->getConditions(), |
| 461 | 461 | ); |
| 462 | - $listTypeSearch->setConditions( $listTypeSearch->combine( '&&', $expr ) ); |
|
| 462 | + $listTypeSearch->setConditions($listTypeSearch->combine('&&', $expr)); |
|
| 463 | 463 | |
| 464 | - $listTypeItems = $listTypeManager->searchItems( $listTypeSearch ); |
|
| 464 | + $listTypeItems = $listTypeManager->searchItems($listTypeSearch); |
|
| 465 | 465 | |
| 466 | - if( ( $listTypeItem = reset( $listTypeItems ) ) === false ) |
|
| 466 | + if (($listTypeItem = reset($listTypeItems)) === false) |
|
| 467 | 467 | { |
| 468 | - $msg = sprintf( 'List type for domain "%1$s" and code "%2$s" not found', $domain, $code ); |
|
| 469 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 468 | + $msg = sprintf('List type for domain "%1$s" and code "%2$s" not found', $domain, $code); |
|
| 469 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | $this->listTypeAttributes[$domain][$code] = $listTypeItem; |
@@ -484,43 +484,43 @@ discard block |
||
| 484 | 484 | * @param array $domains Names of the domain items that should be fetched too |
| 485 | 485 | * @return array List of products matching the given attributes |
| 486 | 486 | */ |
| 487 | - protected function getProductVariants( \Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, |
|
| 488 | - array $domains = array( 'attribute', 'media', 'price', 'text' ) ) |
|
| 487 | + protected function getProductVariants(\Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, |
|
| 488 | + array $domains = array('attribute', 'media', 'price', 'text')) |
|
| 489 | 489 | { |
| 490 | 490 | $subProductIds = array(); |
| 491 | - foreach( $productItem->getRefItems( 'product', 'default', 'default' ) as $item ) { |
|
| 491 | + foreach ($productItem->getRefItems('product', 'default', 'default') as $item) { |
|
| 492 | 492 | $subProductIds[] = $item->getId(); |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - if( count( $subProductIds ) === 0 ) { |
|
| 495 | + if (count($subProductIds) === 0) { |
|
| 496 | 496 | return array(); |
| 497 | 497 | } |
| 498 | 498 | |
| 499 | - $productManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' ); |
|
| 500 | - $search = $productManager->createSearch( true ); |
|
| 499 | + $productManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product'); |
|
| 500 | + $search = $productManager->createSearch(true); |
|
| 501 | 501 | |
| 502 | 502 | $expr = array( |
| 503 | - $search->compare( '==', 'product.id', $subProductIds ), |
|
| 503 | + $search->compare('==', 'product.id', $subProductIds), |
|
| 504 | 504 | $search->getConditions(), |
| 505 | 505 | ); |
| 506 | 506 | |
| 507 | - if( count( $variantAttributeIds ) > 0 ) |
|
| 507 | + if (count($variantAttributeIds) > 0) |
|
| 508 | 508 | { |
| 509 | - foreach( $variantAttributeIds as $key => $id ) { |
|
| 509 | + foreach ($variantAttributeIds as $key => $id) { |
|
| 510 | 510 | $variantAttributeIds[$key] = (string) $id; |
| 511 | 511 | } |
| 512 | 512 | |
| 513 | - $listTypeItem = $this->getProductListTypeItem( 'attribute', 'variant' ); |
|
| 513 | + $listTypeItem = $this->getProductListTypeItem('attribute', 'variant'); |
|
| 514 | 514 | |
| 515 | - $param = array( 'attribute', $listTypeItem->getId(), $variantAttributeIds ); |
|
| 516 | - $cmpfunc = $search->createFunction( 'product.contains', $param ); |
|
| 515 | + $param = array('attribute', $listTypeItem->getId(), $variantAttributeIds); |
|
| 516 | + $cmpfunc = $search->createFunction('product.contains', $param); |
|
| 517 | 517 | |
| 518 | - $expr[] = $search->compare( '==', $cmpfunc, count( $variantAttributeIds ) ); |
|
| 518 | + $expr[] = $search->compare('==', $cmpfunc, count($variantAttributeIds)); |
|
| 519 | 519 | } |
| 520 | 520 | |
| 521 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 521 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 522 | 522 | |
| 523 | - return $productManager->searchItems( $search, $domains ); |
|
| 523 | + return $productManager->searchItems($search, $domains); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | |
@@ -532,9 +532,9 @@ discard block |
||
| 532 | 532 | * @param mixed $default Default value if no value is available for the given name |
| 533 | 533 | * @return mixed Value from the array or default value |
| 534 | 534 | */ |
| 535 | - protected function getValue( array $values, $name, $default = null ) |
|
| 535 | + protected function getValue(array $values, $name, $default = null) |
|
| 536 | 536 | { |
| 537 | - if( isset( $values[$name] ) ) { |
|
| 537 | + if (isset($values[$name])) { |
|
| 538 | 538 | return $values[$name]; |
| 539 | 539 | } |
| 540 | 540 | |
@@ -549,24 +549,24 @@ discard block |
||
| 549 | 549 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If product is not associated to at least one category |
| 550 | 550 | * @deprecated 2016.05 |
| 551 | 551 | */ |
| 552 | - protected function checkCategory( $prodid ) |
|
| 552 | + protected function checkCategory($prodid) |
|
| 553 | 553 | { |
| 554 | - $catalogListManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog/lists' ); |
|
| 554 | + $catalogListManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog/lists'); |
|
| 555 | 555 | |
| 556 | - $search = $catalogListManager->createSearch( true ); |
|
| 556 | + $search = $catalogListManager->createSearch(true); |
|
| 557 | 557 | $expr = array( |
| 558 | - $search->compare( '==', 'catalog.lists.refid', $prodid ), |
|
| 558 | + $search->compare('==', 'catalog.lists.refid', $prodid), |
|
| 559 | 559 | $search->getConditions() |
| 560 | 560 | ); |
| 561 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 562 | - $search->setSlice( 0, 1 ); |
|
| 561 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 562 | + $search->setSlice(0, 1); |
|
| 563 | 563 | |
| 564 | - $result = $catalogListManager->searchItems( $search ); |
|
| 564 | + $result = $catalogListManager->searchItems($search); |
|
| 565 | 565 | |
| 566 | - if( reset( $result ) === false ) |
|
| 566 | + if (reset($result) === false) |
|
| 567 | 567 | { |
| 568 | - $msg = sprintf( 'Adding product with ID "%1$s" is not allowed', $prodid ); |
|
| 569 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 568 | + $msg = sprintf('Adding product with ID "%1$s" is not allowed', $prodid); |
|
| 569 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 570 | 570 | } |
| 571 | 571 | } |
| 572 | 572 | |
@@ -578,35 +578,35 @@ discard block |
||
| 578 | 578 | * @param string $warehouse Unique code of the warehouse |
| 579 | 579 | * @return integer|null Number of available items in stock (null for unlimited stock) |
| 580 | 580 | */ |
| 581 | - protected function getStockLevel( $prodid, $warehouse ) |
|
| 581 | + protected function getStockLevel($prodid, $warehouse) |
|
| 582 | 582 | { |
| 583 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product/stock' ); |
|
| 583 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product/stock'); |
|
| 584 | 584 | |
| 585 | - $search = $manager->createSearch( true ); |
|
| 585 | + $search = $manager->createSearch(true); |
|
| 586 | 586 | $expr = array( |
| 587 | - $search->compare( '==', 'product.stock.parentid', $prodid ), |
|
| 587 | + $search->compare('==', 'product.stock.parentid', $prodid), |
|
| 588 | 588 | $search->getConditions(), |
| 589 | - $search->compare( '==', 'product.stock.warehouse.code', $warehouse ), |
|
| 589 | + $search->compare('==', 'product.stock.warehouse.code', $warehouse), |
|
| 590 | 590 | ); |
| 591 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 591 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 592 | 592 | |
| 593 | - $result = $manager->searchItems( $search ); |
|
| 593 | + $result = $manager->searchItems($search); |
|
| 594 | 594 | |
| 595 | - if( empty( $result ) ) |
|
| 595 | + if (empty($result)) |
|
| 596 | 596 | { |
| 597 | - $msg = sprintf( 'No stock for product ID "%1$s" and warehouse "%2$s" available', $prodid, $warehouse ); |
|
| 598 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 597 | + $msg = sprintf('No stock for product ID "%1$s" and warehouse "%2$s" available', $prodid, $warehouse); |
|
| 598 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | $stocklevel = null; |
| 602 | 602 | |
| 603 | - foreach( $result as $item ) |
|
| 603 | + foreach ($result as $item) |
|
| 604 | 604 | { |
| 605 | - if( ( $stock = $item->getStockLevel() ) === null ) { |
|
| 605 | + if (($stock = $item->getStockLevel()) === null) { |
|
| 606 | 606 | return null; |
| 607 | 607 | } |
| 608 | 608 | |
| 609 | - $stocklevel = max( (int) $stocklevel, $item->getStockLevel() ); |
|
| 609 | + $stocklevel = max((int) $stocklevel, $item->getStockLevel()); |
|
| 610 | 610 | } |
| 611 | 611 | |
| 612 | 612 | return $stocklevel; |
@@ -160,8 +160,7 @@ discard block |
||
| 160 | 160 | { |
| 161 | 161 | $this->setAddress( $type, $item->toArray() ); |
| 162 | 162 | $basket->deleteAddress( $type ); |
| 163 | - } |
|
| 164 | - catch( \Exception $e ) |
|
| 163 | + } catch( \Exception $e ) |
|
| 165 | 164 | { |
| 166 | 165 | $logger = $this->getContext()->getLogger(); |
| 167 | 166 | $str = 'Error migrating address with type "%1$s" in basket to locale "%2$s": %3$s'; |
@@ -190,8 +189,7 @@ discard block |
||
| 190 | 189 | { |
| 191 | 190 | $this->addCoupon( $code ); |
| 192 | 191 | $basket->deleteCoupon( $code, true ); |
| 193 | - } |
|
| 194 | - catch( \Exception $e ) |
|
| 192 | + } catch( \Exception $e ) |
|
| 195 | 193 | { |
| 196 | 194 | $logger = $this->getContext()->getLogger(); |
| 197 | 195 | $str = 'Error migrating coupon with code "%1$s" in basket to locale "%2$s": %3$s'; |
@@ -240,8 +238,7 @@ discard block |
||
| 240 | 238 | ); |
| 241 | 239 | |
| 242 | 240 | $basket->deleteProduct( $pos ); |
| 243 | - } |
|
| 244 | - catch( \Exception $e ) |
|
| 241 | + } catch( \Exception $e ) |
|
| 245 | 242 | { |
| 246 | 243 | $code = $product->getProductCode(); |
| 247 | 244 | $logger = $this->getContext()->getLogger(); |
@@ -276,8 +273,7 @@ discard block |
||
| 276 | 273 | |
| 277 | 274 | $this->setService( $type, $item->getServiceId(), $attributes ); |
| 278 | 275 | $basket->deleteService( $type ); |
| 279 | - } |
|
| 280 | - catch( \Exception $e ) { ; } // Don't notify the user as appropriate services can be added automatically |
|
| 276 | + } catch( \Exception $e ) { ; } // Don't notify the user as appropriate services can be added automatically |
|
| 281 | 277 | } |
| 282 | 278 | |
| 283 | 279 | return $errors; |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
| 62 | 62 | * @return void |
| 63 | 63 | */ |
| 64 | - public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 64 | + public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 65 | 65 | array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(), |
| 66 | - $warehouse = 'default' ) |
|
| 66 | + $warehouse = 'default') |
|
| 67 | 67 | { |
| 68 | 68 | $this->getController()->addProduct( |
| 69 | 69 | $prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds, |
@@ -78,9 +78,9 @@ discard block |
||
| 78 | 78 | * @param integer $position Position number (key) of the order product item |
| 79 | 79 | * @return void |
| 80 | 80 | */ |
| 81 | - public function deleteProduct( $position ) |
|
| 81 | + public function deleteProduct($position) |
|
| 82 | 82 | { |
| 83 | - $this->getController()->deleteProduct( $position ); |
|
| 83 | + $this->getController()->deleteProduct($position); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED |
| 93 | 93 | * @return void |
| 94 | 94 | */ |
| 95 | - public function editProduct( $position, $quantity, array $configAttributeCodes = array() ) |
|
| 95 | + public function editProduct($position, $quantity, array $configAttributeCodes = array()) |
|
| 96 | 96 | { |
| 97 | - $this->getController()->editProduct( $position, $quantity, $configAttributeCodes ); |
|
| 97 | + $this->getController()->editProduct($position, $quantity, $configAttributeCodes); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | |
@@ -105,9 +105,9 @@ discard block |
||
| 105 | 105 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
| 106 | 106 | * @return void |
| 107 | 107 | */ |
| 108 | - public function addCoupon( $code ) |
|
| 108 | + public function addCoupon($code) |
|
| 109 | 109 | { |
| 110 | - $this->getController()->addCoupon( $code ); |
|
| 110 | + $this->getController()->addCoupon($code); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | |
@@ -118,9 +118,9 @@ discard block |
||
| 118 | 118 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
| 119 | 119 | * @return void |
| 120 | 120 | */ |
| 121 | - public function deleteCoupon( $code ) |
|
| 121 | + public function deleteCoupon($code) |
|
| 122 | 122 | { |
| 123 | - $this->getController()->deleteCoupon( $code ); |
|
| 123 | + $this->getController()->deleteCoupon($code); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | * if one of the keys is invalid when using an array with key/value pairs |
| 134 | 134 | * @return void |
| 135 | 135 | */ |
| 136 | - public function setAddress( $type, $value ) |
|
| 136 | + public function setAddress($type, $value) |
|
| 137 | 137 | { |
| 138 | - $this->getController()->setAddress( $type, $value ); |
|
| 138 | + $this->getController()->setAddress($type, $value); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | |
@@ -149,8 +149,8 @@ discard block |
||
| 149 | 149 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
| 150 | 150 | * @return void |
| 151 | 151 | */ |
| 152 | - public function setService( $type, $id, array $attributes = array() ) |
|
| 152 | + public function setService($type, $id, array $attributes = array()) |
|
| 153 | 153 | { |
| 154 | - $this->getController()->setService( $type, $id, $attributes ); |
|
| 154 | + $this->getController()->setService($type, $id, $attributes); |
|
| 155 | 155 | } |
| 156 | 156 | } |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | 'frontend' => array( |
| 5 | 5 | 'basket' => array( |
| 6 | 6 | 'decorators' => array( |
| 7 | - 'local' => array( 'Category' ), |
|
| 7 | + 'local' => array('Category'), |
|
| 8 | 8 | ), |
| 9 | 9 | ), |
| 10 | 10 | ), |
@@ -15,15 +15,15 @@ discard block |
||
| 15 | 15 | public static function bootstrap() |
| 16 | 16 | { |
| 17 | 17 | self::getAimeos(); |
| 18 | - \Aimeos\MShop\Factory::setCache( false ); |
|
| 19 | - \Aimeos\Controller\Frontend\Factory::setCache( false ); |
|
| 18 | + \Aimeos\MShop\Factory::setCache(false); |
|
| 19 | + \Aimeos\Controller\Frontend\Factory::setCache(false); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | |
| 23 | - public static function getContext( $site = 'unittest' ) |
|
| 23 | + public static function getContext($site = 'unittest') |
|
| 24 | 24 | { |
| 25 | - if( !isset( self::$context[$site] ) ) { |
|
| 26 | - self::$context[$site] = self::createContext( $site ); |
|
| 25 | + if (!isset(self::$context[$site])) { |
|
| 26 | + self::$context[$site] = self::createContext($site); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | return clone self::$context[$site]; |
@@ -32,13 +32,13 @@ discard block |
||
| 32 | 32 | |
| 33 | 33 | private static function getAimeos() |
| 34 | 34 | { |
| 35 | - if( !isset( self::$aimeos ) ) |
|
| 35 | + if (!isset(self::$aimeos)) |
|
| 36 | 36 | { |
| 37 | 37 | require_once 'Bootstrap.php'; |
| 38 | - spl_autoload_register( 'Aimeos\\Bootstrap::autoload' ); |
|
| 38 | + spl_autoload_register('Aimeos\\Bootstrap::autoload'); |
|
| 39 | 39 | |
| 40 | - $extdir = dirname( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) ); |
|
| 41 | - self::$aimeos = new \Aimeos\Bootstrap( array( $extdir ), true ); |
|
| 40 | + $extdir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); |
|
| 41 | + self::$aimeos = new \Aimeos\Bootstrap(array($extdir), true); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | return self::$aimeos; |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | /** |
| 49 | 49 | * @param string $site |
| 50 | 50 | */ |
| 51 | - private static function createContext( $site ) |
|
| 51 | + private static function createContext($site) |
|
| 52 | 52 | { |
| 53 | 53 | $ctx = new \Aimeos\MShop\Context\Item\Standard(); |
| 54 | 54 | $aimeos = self::getAimeos(); |
@@ -58,34 +58,34 @@ discard block |
||
| 58 | 58 | $paths[] = __DIR__ . DIRECTORY_SEPARATOR . 'config'; |
| 59 | 59 | $file = __DIR__ . DIRECTORY_SEPARATOR . 'confdoc.ser'; |
| 60 | 60 | |
| 61 | - $conf = new \Aimeos\MW\Config\PHPArray( array(), $paths ); |
|
| 62 | - $conf = new \Aimeos\MW\Config\Decorator\Memory( $conf ); |
|
| 63 | - $conf = new \Aimeos\MW\Config\Decorator\Documentor( $conf, $file ); |
|
| 64 | - $ctx->setConfig( $conf ); |
|
| 61 | + $conf = new \Aimeos\MW\Config\PHPArray(array(), $paths); |
|
| 62 | + $conf = new \Aimeos\MW\Config\Decorator\Memory($conf); |
|
| 63 | + $conf = new \Aimeos\MW\Config\Decorator\Documentor($conf, $file); |
|
| 64 | + $ctx->setConfig($conf); |
|
| 65 | 65 | |
| 66 | 66 | |
| 67 | - $dbm = new \Aimeos\MW\DB\Manager\PDO( $conf ); |
|
| 68 | - $ctx->setDatabaseManager( $dbm ); |
|
| 67 | + $dbm = new \Aimeos\MW\DB\Manager\PDO($conf); |
|
| 68 | + $ctx->setDatabaseManager($dbm); |
|
| 69 | 69 | |
| 70 | 70 | |
| 71 | - $logger = new \Aimeos\MW\Logger\File( 'unittest.log', \Aimeos\MW\Logger\Base::DEBUG ); |
|
| 72 | - $ctx->setLogger( $logger ); |
|
| 71 | + $logger = new \Aimeos\MW\Logger\File('unittest.log', \Aimeos\MW\Logger\Base::DEBUG); |
|
| 72 | + $ctx->setLogger($logger); |
|
| 73 | 73 | |
| 74 | 74 | |
| 75 | - $i18n = new \Aimeos\MW\Translation\None( 'de' ); |
|
| 76 | - $ctx->setI18n( array( 'de' => $i18n ) ); |
|
| 75 | + $i18n = new \Aimeos\MW\Translation\None('de'); |
|
| 76 | + $ctx->setI18n(array('de' => $i18n)); |
|
| 77 | 77 | |
| 78 | 78 | |
| 79 | 79 | $session = new \Aimeos\MW\Session\None(); |
| 80 | - $ctx->setSession( $session ); |
|
| 80 | + $ctx->setSession($session); |
|
| 81 | 81 | |
| 82 | 82 | |
| 83 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $ctx ); |
|
| 84 | - $locale = $localeManager->bootstrap( $site, '', '', false ); |
|
| 85 | - $ctx->setLocale( $locale ); |
|
| 83 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($ctx); |
|
| 84 | + $locale = $localeManager->bootstrap($site, '', '', false); |
|
| 85 | + $ctx->setLocale($locale); |
|
| 86 | 86 | |
| 87 | 87 | |
| 88 | - $ctx->setEditor( 'core:controller/frontend' ); |
|
| 88 | + $ctx->setEditor('core:controller/frontend'); |
|
| 89 | 89 | |
| 90 | 90 | return $ctx; |
| 91 | 91 | } |