@@ -30,18 +30,18 @@ discard block |
||
30 | 30 | * @param \Aimeos\Controller\Frontend\Iface $controller Controller object |
31 | 31 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
32 | 32 | */ |
33 | - public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context ) |
|
33 | + public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context) |
|
34 | 34 | { |
35 | 35 | $iface = '\Aimeos\Controller\Frontend\Basket\Iface'; |
36 | - if( !( $controller instanceof $iface ) ) |
|
36 | + if (!($controller instanceof $iface)) |
|
37 | 37 | { |
38 | - $msg = sprintf( 'Class "%1$s" does not implement interface "%2$s"', get_class( $controller ), $iface ); |
|
39 | - throw new \Aimeos\Controller\Frontend\Exception( $msg ); |
|
38 | + $msg = sprintf('Class "%1$s" does not implement interface "%2$s"', get_class($controller), $iface); |
|
39 | + throw new \Aimeos\Controller\Frontend\Exception($msg); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $this->controller = $controller; |
43 | 43 | |
44 | - parent::__construct( $context ); |
|
44 | + parent::__construct($context); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @return mixed Returns the value of the called method |
54 | 54 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
55 | 55 | */ |
56 | - public function __call( $name, array $param ) |
|
56 | + public function __call($name, array $param) |
|
57 | 57 | { |
58 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
58 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -97,9 +97,9 @@ discard block |
||
97 | 97 | * @param string $type Basket type |
98 | 98 | * @return \Aimeos\Controller\Frontend\Basket\Iface Basket frontend object |
99 | 99 | */ |
100 | - public function setType( $type ) |
|
100 | + public function setType($type) |
|
101 | 101 | { |
102 | - $this->controller->setType( $type ); |
|
102 | + $this->controller->setType($type); |
|
103 | 103 | return $this; |
104 | 104 | } |
105 | 105 | |
@@ -123,9 +123,9 @@ discard block |
||
123 | 123 | * @param boolean $default True to add default criteria (user logged in), false if not |
124 | 124 | * @return \Aimeos\MShop\Order\Item\Base\Iface Order base object including the given parts |
125 | 125 | */ |
126 | - public function load( $id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true ) |
|
126 | + public function load($id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true) |
|
127 | 127 | { |
128 | - return $this->controller->load( $id, $parts, $default ); |
|
128 | + return $this->controller->load($id, $parts, $default); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
151 | 151 | * @return void |
152 | 152 | */ |
153 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
153 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
154 | 154 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
155 | - $stocktype = 'default' ) |
|
155 | + $stocktype = 'default') |
|
156 | 156 | { |
157 | 157 | $this->controller->addProduct( |
158 | 158 | $prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds, |
@@ -167,9 +167,9 @@ discard block |
||
167 | 167 | * @param integer $position Position number (key) of the order product item |
168 | 168 | * @return void |
169 | 169 | */ |
170 | - public function deleteProduct( $position ) |
|
170 | + public function deleteProduct($position) |
|
171 | 171 | { |
172 | - $this->controller->deleteProduct( $position ); |
|
172 | + $this->controller->deleteProduct($position); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | |
@@ -182,9 +182,9 @@ discard block |
||
182 | 182 | * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED |
183 | 183 | * @return void |
184 | 184 | */ |
185 | - public function editProduct( $position, $quantity, array $options = [], array $configAttributeCodes = [] ) |
|
185 | + public function editProduct($position, $quantity, array $options = [], array $configAttributeCodes = []) |
|
186 | 186 | { |
187 | - $this->controller->editProduct( $position, $quantity, $options, $configAttributeCodes ); |
|
187 | + $this->controller->editProduct($position, $quantity, $options, $configAttributeCodes); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
196 | 196 | * @return void |
197 | 197 | */ |
198 | - public function addCoupon( $code ) |
|
198 | + public function addCoupon($code) |
|
199 | 199 | { |
200 | - $this->controller->addCoupon( $code ); |
|
200 | + $this->controller->addCoupon($code); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | |
@@ -208,9 +208,9 @@ discard block |
||
208 | 208 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
209 | 209 | * @return void |
210 | 210 | */ |
211 | - public function deleteCoupon( $code ) |
|
211 | + public function deleteCoupon($code) |
|
212 | 212 | { |
213 | - $this->controller->deleteCoupon( $code ); |
|
213 | + $this->controller->deleteCoupon($code); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | |
@@ -223,9 +223,9 @@ discard block |
||
223 | 223 | * if one of the keys is invalid when using an array with key/value pairs |
224 | 224 | * @return void |
225 | 225 | */ |
226 | - public function setAddress( $type, $value ) |
|
226 | + public function setAddress($type, $value) |
|
227 | 227 | { |
228 | - $this->controller->setAddress( $type, $value ); |
|
228 | + $this->controller->setAddress($type, $value); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | |
@@ -239,9 +239,9 @@ discard block |
||
239 | 239 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
240 | 240 | * @return void |
241 | 241 | */ |
242 | - public function setService( $type, $id, array $attributes = [] ) |
|
242 | + public function setService($type, $id, array $attributes = []) |
|
243 | 243 | { |
244 | - $this->controller->setService( $type, $id, $attributes ); |
|
244 | + $this->controller->setService($type, $id, $attributes); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | * @return \Aimeos\MShop\Common\Manager\Iface Manager object |
30 | 30 | * @since 2015.08 |
31 | 31 | */ |
32 | - public function createManager( $name ) |
|
32 | + public function createManager($name) |
|
33 | 33 | { |
34 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), $name ); |
|
34 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), $name); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function createFilter() |
45 | 45 | { |
46 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->createSearch( true ); |
|
46 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->createSearch(true); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | * @return array Associative list of items implementing \Aimeos\MShop\Catalog\Item\Iface with their IDs as keys |
56 | 56 | * @since 2017.03 |
57 | 57 | */ |
58 | - public function getPath( $id, array $domains = array( 'text', 'media' ) ) |
|
58 | + public function getPath($id, array $domains = array('text', 'media')) |
|
59 | 59 | { |
60 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->getPath( $id, $domains ); |
|
60 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->getPath($id, $domains); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | * @return \Aimeos\MShop\Catalog\Item\Iface Catalog node, maybe with children depending on the level constant |
73 | 73 | * @since 2017.03 |
74 | 74 | */ |
75 | - public function getTree( $id = null, array $domains = array( 'text', 'media' ), |
|
76 | - $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null ) |
|
75 | + public function getTree($id = null, array $domains = array('text', 'media'), |
|
76 | + $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null) |
|
77 | 77 | { |
78 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->getTree( $id, $domains, $level, $search ); |
|
78 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->getTree($id, $domains, $level, $search); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @since 2015.08 |
88 | 88 | * @deprecated Use createFilter() instead |
89 | 89 | */ |
90 | - public function createCatalogFilter( $default = true ) |
|
90 | + public function createCatalogFilter($default = true) |
|
91 | 91 | { |
92 | 92 | return $this->createFilter(); |
93 | 93 | } |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | * @since 2015.08 |
103 | 103 | * @deprecated Use getPath() instead |
104 | 104 | */ |
105 | - public function getCatalogPath( $id, array $domains = array( 'text', 'media' ) ) |
|
105 | + public function getCatalogPath($id, array $domains = array('text', 'media')) |
|
106 | 106 | { |
107 | - return $this->getPath( $id, $domains ); |
|
107 | + return $this->getPath($id, $domains); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | |
@@ -120,10 +120,10 @@ discard block |
||
120 | 120 | * @since 2015.08 |
121 | 121 | * @deprecated Use getTree() instead |
122 | 122 | */ |
123 | - public function getCatalogTree( $id = null, array $domains = array( 'text', 'media' ), |
|
124 | - $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null ) |
|
123 | + public function getCatalogTree($id = null, array $domains = array('text', 'media'), |
|
124 | + $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null) |
|
125 | 125 | { |
126 | - return $this->getTree( $id, $domains, $level, $search ); |
|
126 | + return $this->getTree($id, $domains, $level, $search); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | * @since 2015.08 |
138 | 138 | * @deprecated Use getItems() method in index controller instead |
139 | 139 | */ |
140 | - public function getProductItems( array $ids, array $domains = array( 'media', 'price', 'text' ) ) |
|
140 | + public function getProductItems(array $ids, array $domains = array('media', 'price', 'text')) |
|
141 | 141 | { |
142 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
143 | - return $cntl->getItems( $ids, $domains ); |
|
142 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
143 | + return $cntl->getItems($ids, $domains); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -153,10 +153,10 @@ discard block |
||
153 | 153 | * @since 2015.08 |
154 | 154 | * @deprecated Use method in index controller instead |
155 | 155 | */ |
156 | - public function aggregateIndex( \Aimeos\MW\Criteria\Iface $filter, $key ) |
|
156 | + public function aggregateIndex(\Aimeos\MW\Criteria\Iface $filter, $key) |
|
157 | 157 | { |
158 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
159 | - return $cntl->aggregate( $filter, $key ); |
|
158 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
159 | + return $cntl->aggregate($filter, $key); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | |
@@ -172,10 +172,10 @@ discard block |
||
172 | 172 | * @since 2015.08 |
173 | 173 | * @deprecated Use method in index controller instead |
174 | 174 | */ |
175 | - public function createIndexFilter( $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
175 | + public function createIndexFilter($sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
176 | 176 | { |
177 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
178 | - return $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
177 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
178 | + return $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | |
@@ -192,12 +192,12 @@ discard block |
||
192 | 192 | * @since 2015.08 |
193 | 193 | * @deprecated Use createIndexFilter() and addIndexFilterCategory() instead |
194 | 194 | */ |
195 | - public function createIndexFilterCategory( $catid, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
195 | + public function createIndexFilterCategory($catid, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
196 | 196 | { |
197 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
197 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
198 | 198 | |
199 | - $filter = $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
200 | - $filter = $cntl->addFilterCategory( $filter, $catid, \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort, $direction, $listtype ); |
|
199 | + $filter = $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
200 | + $filter = $cntl->addFilterCategory($filter, $catid, \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort, $direction, $listtype); |
|
201 | 201 | |
202 | 202 | return $filter; |
203 | 203 | } |
@@ -216,12 +216,12 @@ discard block |
||
216 | 216 | * @since 2015.08 |
217 | 217 | * @deprecated Use createIndexFilter() and addIndexFilterText() instead |
218 | 218 | */ |
219 | - public function createIndexFilterText( $input, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
219 | + public function createIndexFilterText($input, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
220 | 220 | { |
221 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
221 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
222 | 222 | |
223 | - $filter = $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
224 | - $filter = $cntl->addFilterText( $filter, $input, $sort, $direction, $listtype ); |
|
223 | + $filter = $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
224 | + $filter = $cntl->addFilterText($filter, $input, $sort, $direction, $listtype); |
|
225 | 225 | |
226 | 226 | return $filter; |
227 | 227 | } |
@@ -236,10 +236,10 @@ discard block |
||
236 | 236 | * @since 2015.08 |
237 | 237 | * @deprecated Use method in index controller instead |
238 | 238 | */ |
239 | - public function addIndexFilterCategory( \Aimeos\MW\Criteria\Iface $search, $catid ) |
|
239 | + public function addIndexFilterCategory(\Aimeos\MW\Criteria\Iface $search, $catid) |
|
240 | 240 | { |
241 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
242 | - return $cntl->addFilterCategory( $search, $catid ); |
|
241 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
242 | + return $cntl->addFilterCategory($search, $catid); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | |
@@ -253,10 +253,10 @@ discard block |
||
253 | 253 | * @since 2015.08 |
254 | 254 | * @deprecated Use method in index controller instead |
255 | 255 | */ |
256 | - public function addIndexFilterText( \Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default' ) |
|
256 | + public function addIndexFilterText(\Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default') |
|
257 | 257 | { |
258 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
259 | - return $cntl->addFilterText( $search, $input, $listtype ); |
|
258 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
259 | + return $cntl->addFilterText($search, $input, $listtype); |
|
260 | 260 | } |
261 | 261 | |
262 | 262 | |
@@ -270,10 +270,10 @@ discard block |
||
270 | 270 | * @since 2015.08 |
271 | 271 | * @deprecated Use method in index controller instead |
272 | 272 | */ |
273 | - public function getIndexItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = array( 'media', 'price', 'text' ), &$total = null ) |
|
273 | + public function getIndexItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = array('media', 'price', 'text'), &$total = null) |
|
274 | 274 | { |
275 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
276 | - return $cntl->searchItems( $filter, $domains, $total ); |
|
275 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
276 | + return $cntl->searchItems($filter, $domains, $total); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | |
@@ -290,37 +290,37 @@ discard block |
||
290 | 290 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
291 | 291 | * @deprecated Use createFilter() method in index controller instead |
292 | 292 | */ |
293 | - public function createTextFilter( $input, $sort = null, $direction = '+', $start = 0, $size = 25, $listtype = 'default', $type = 'name' ) |
|
293 | + public function createTextFilter($input, $sort = null, $direction = '+', $start = 0, $size = 25, $listtype = 'default', $type = 'name') |
|
294 | 294 | { |
295 | 295 | $locale = $this->getContext()->getLocale(); |
296 | 296 | $langid = $locale->getLanguageId(); |
297 | 297 | |
298 | - $search = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index/text' )->createSearch( true ); |
|
298 | + $search = \Aimeos\MShop\Factory::createManager($this->getContext(), 'index/text')->createSearch(true); |
|
299 | 299 | |
300 | 300 | $expr = array( |
301 | - $search->compare( '>', $search->createFunction( 'index.text.relevance', array( $listtype, $langid, $input ) ), 0 ), |
|
302 | - $search->compare( '>', $search->createFunction( 'index.text.value', array( $listtype, $langid, $type, 'product' ) ), '' ), |
|
301 | + $search->compare('>', $search->createFunction('index.text.relevance', array($listtype, $langid, $input)), 0), |
|
302 | + $search->compare('>', $search->createFunction('index.text.value', array($listtype, $langid, $type, 'product')), ''), |
|
303 | 303 | ); |
304 | 304 | |
305 | 305 | $sortations = []; |
306 | 306 | |
307 | - switch( $sort ) |
|
307 | + switch ($sort) |
|
308 | 308 | { |
309 | 309 | case 'name': |
310 | - $cmpfunc = $search->createFunction( 'index.text.value', array( $listtype, $langid, 'name', 'product' ) ); |
|
311 | - $expr[] = $search->compare( '>=', $cmpfunc, '' ); |
|
310 | + $cmpfunc = $search->createFunction('index.text.value', array($listtype, $langid, 'name', 'product')); |
|
311 | + $expr[] = $search->compare('>=', $cmpfunc, ''); |
|
312 | 312 | |
313 | - $sortfunc = $search->createFunction( 'sort:index.text.value', array( $listtype, $langid, 'name' ) ); |
|
314 | - $sortations[] = $search->sort( $direction, $sortfunc ); |
|
313 | + $sortfunc = $search->createFunction('sort:index.text.value', array($listtype, $langid, 'name')); |
|
314 | + $sortations[] = $search->sort($direction, $sortfunc); |
|
315 | 315 | break; |
316 | 316 | |
317 | 317 | case 'relevance': |
318 | 318 | // we don't need to sort by 'sort:index.text.relevance' because it's a boolean match (relevance is either 0 or 1) |
319 | 319 | } |
320 | 320 | |
321 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
322 | - $search->setSortations( $sortations ); |
|
323 | - $search->setSlice( $start, $size ); |
|
321 | + $search->setConditions($search->combine('&&', $expr)); |
|
322 | + $search->setSortations($sortations); |
|
323 | + $search->setSlice($start, $size); |
|
324 | 324 | |
325 | 325 | return $search; |
326 | 326 | } |
@@ -333,8 +333,8 @@ discard block |
||
333 | 333 | * @return array Associative list of the product ID as key and the product text as value |
334 | 334 | * @deprecated Use searchItems() method in index controller to retrieve product items instead |
335 | 335 | */ |
336 | - public function getTextList( \Aimeos\MW\Criteria\Iface $filter ) |
|
336 | + public function getTextList(\Aimeos\MW\Criteria\Iface $filter) |
|
337 | 337 | { |
338 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index/text' )->searchTexts( $filter ); |
|
338 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'index/text')->searchTexts($filter); |
|
339 | 339 | } |
340 | 340 | } |
@@ -31,42 +31,42 @@ discard block |
||
31 | 31 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
32 | 32 | * @since 2017.03 |
33 | 33 | */ |
34 | - public function addFilterAttribute( \Aimeos\MW\Criteria\Iface $filter, array $attrIds, array $optIds, array $oneIds ) |
|
34 | + public function addFilterAttribute(\Aimeos\MW\Criteria\Iface $filter, array $attrIds, array $optIds, array $oneIds) |
|
35 | 35 | { |
36 | - if( !empty( $attrIds ) ) |
|
36 | + if (!empty($attrIds)) |
|
37 | 37 | { |
38 | - $attrIds = $this->validateIds( $attrIds ); |
|
38 | + $attrIds = $this->validateIds($attrIds); |
|
39 | 39 | |
40 | - $func = $filter->createFunction( 'index.attributeaggregate', array( $attrIds ) ); |
|
40 | + $func = $filter->createFunction('index.attributeaggregate', array($attrIds)); |
|
41 | 41 | $expr = array( |
42 | - $filter->compare( '==', $func, count( $attrIds ) ), |
|
42 | + $filter->compare('==', $func, count($attrIds)), |
|
43 | 43 | $filter->getConditions(), |
44 | 44 | ); |
45 | - $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
45 | + $filter->setConditions($filter->combine('&&', $expr)); |
|
46 | 46 | } |
47 | 47 | |
48 | - if( !empty( $optIds ) ) |
|
48 | + if (!empty($optIds)) |
|
49 | 49 | { |
50 | - $optIds = $this->validateIds( $optIds ); |
|
50 | + $optIds = $this->validateIds($optIds); |
|
51 | 51 | |
52 | - $func = $filter->createFunction( 'index.attributeaggregate', array( $optIds ) ); |
|
52 | + $func = $filter->createFunction('index.attributeaggregate', array($optIds)); |
|
53 | 53 | $expr = array( |
54 | - $filter->compare( '>', $func, 0 ), |
|
54 | + $filter->compare('>', $func, 0), |
|
55 | 55 | $filter->getConditions(), |
56 | 56 | ); |
57 | - $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
57 | + $filter->setConditions($filter->combine('&&', $expr)); |
|
58 | 58 | } |
59 | 59 | |
60 | - foreach( $oneIds as $type => $list ) |
|
60 | + foreach ($oneIds as $type => $list) |
|
61 | 61 | { |
62 | - if( ( $list = $this->validateIds( (array) $list ) ) !== [] ) |
|
62 | + if (($list = $this->validateIds((array) $list)) !== []) |
|
63 | 63 | { |
64 | - $func = $filter->createFunction( 'index.attributeaggregate', array( $list ) ); |
|
64 | + $func = $filter->createFunction('index.attributeaggregate', array($list)); |
|
65 | 65 | $expr = array( |
66 | - $filter->compare( '>', $func, 0 ), |
|
66 | + $filter->compare('>', $func, 0), |
|
67 | 67 | $filter->getConditions(), |
68 | 68 | ); |
69 | - $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
69 | + $filter->setConditions($filter->combine('&&', $expr)); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
@@ -86,38 +86,38 @@ discard block |
||
86 | 86 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
87 | 87 | * @since 2017.03 |
88 | 88 | */ |
89 | - public function addFilterCategory( \Aimeos\MW\Criteria\Iface $filter, $catId, |
|
90 | - $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort = null, $direction = '+', $listtype = 'default' ) |
|
89 | + public function addFilterCategory(\Aimeos\MW\Criteria\Iface $filter, $catId, |
|
90 | + $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort = null, $direction = '+', $listtype = 'default') |
|
91 | 91 | { |
92 | - $catIds = ( !is_array( $catId ) ? explode( ',', $catId ) : $catId ); |
|
92 | + $catIds = (!is_array($catId) ? explode(',', $catId) : $catId); |
|
93 | 93 | |
94 | - if( $level != \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ) |
|
94 | + if ($level != \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE) |
|
95 | 95 | { |
96 | 96 | $list = []; |
97 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'catalog' ); |
|
97 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'catalog'); |
|
98 | 98 | |
99 | - foreach( $catIds as $catId ) |
|
99 | + foreach ($catIds as $catId) |
|
100 | 100 | { |
101 | - $tree = $cntl->getCatalogTree( $catId, [], $level ); |
|
102 | - $list = array_merge( $list, $this->getCatalogIdsFromTree( $tree ) ); |
|
101 | + $tree = $cntl->getCatalogTree($catId, [], $level); |
|
102 | + $list = array_merge($list, $this->getCatalogIdsFromTree($tree)); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | $catIds = $list; |
106 | 106 | } |
107 | 107 | |
108 | - $expr = array( $filter->compare( '==', 'index.catalog.id', array_unique( $catIds ) ) ); |
|
108 | + $expr = array($filter->compare('==', 'index.catalog.id', array_unique($catIds))); |
|
109 | 109 | $expr[] = $filter->getConditions(); |
110 | 110 | |
111 | - if( $sort === 'relevance' ) |
|
111 | + if ($sort === 'relevance') |
|
112 | 112 | { |
113 | - $cmpfunc = $filter->createFunction( 'index.catalog.position', array( $listtype, $catIds ) ); |
|
114 | - $expr[] = $filter->compare( '>=', $cmpfunc, 0 ); |
|
113 | + $cmpfunc = $filter->createFunction('index.catalog.position', array($listtype, $catIds)); |
|
114 | + $expr[] = $filter->compare('>=', $cmpfunc, 0); |
|
115 | 115 | |
116 | - $sortfunc = $filter->createFunction( 'sort:index.catalog.position', array( $listtype, $catIds ) ); |
|
117 | - $filter->setSortations( array( $filter->sort( $direction, $sortfunc ) ) ); |
|
116 | + $sortfunc = $filter->createFunction('sort:index.catalog.position', array($listtype, $catIds)); |
|
117 | + $filter->setSortations(array($filter->sort($direction, $sortfunc))); |
|
118 | 118 | } |
119 | 119 | |
120 | - $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
120 | + $filter->setConditions($filter->combine('&&', $expr)); |
|
121 | 121 | |
122 | 122 | return $filter; |
123 | 123 | } |
@@ -134,13 +134,13 @@ discard block |
||
134 | 134 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
135 | 135 | * @since 2017.03 |
136 | 136 | */ |
137 | - public function addFilterText( \Aimeos\MW\Criteria\Iface $filter, $input, $sort = null, $direction = '+', $listtype = 'default' ) |
|
137 | + public function addFilterText(\Aimeos\MW\Criteria\Iface $filter, $input, $sort = null, $direction = '+', $listtype = 'default') |
|
138 | 138 | { |
139 | 139 | $langid = $this->getContext()->getLocale()->getLanguageId(); |
140 | - $cmpfunc = $filter->createFunction( 'index.text.relevance', array( $listtype, $langid, $input ) ); |
|
141 | - $expr = array( $filter->compare( '>', $cmpfunc, 0 ), $filter->getConditions() ); |
|
140 | + $cmpfunc = $filter->createFunction('index.text.relevance', array($listtype, $langid, $input)); |
|
141 | + $expr = array($filter->compare('>', $cmpfunc, 0), $filter->getConditions()); |
|
142 | 142 | |
143 | - return $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
143 | + return $filter->setConditions($filter->combine('&&', $expr)); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -152,9 +152,9 @@ discard block |
||
152 | 152 | * @return array Associative list of key values as key and the product count for this key as value |
153 | 153 | * @since 2017.03 |
154 | 154 | */ |
155 | - public function aggregate( \Aimeos\MW\Criteria\Iface $filter, $key ) |
|
155 | + public function aggregate(\Aimeos\MW\Criteria\Iface $filter, $key) |
|
156 | 156 | { |
157 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index' )->aggregate( $filter, $key ); |
|
157 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'index')->aggregate($filter, $key); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | |
@@ -169,46 +169,46 @@ discard block |
||
169 | 169 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
170 | 170 | * @since 2017.03 |
171 | 171 | */ |
172 | - public function createFilter( $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
172 | + public function createFilter($sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
173 | 173 | { |
174 | 174 | $sortations = []; |
175 | 175 | $context = $this->getContext(); |
176 | 176 | |
177 | - $search = \Aimeos\MShop\Factory::createManager( $context, 'index' )->createSearch( true ); |
|
178 | - $expr = array( $search->compare( '!=', 'index.catalog.id', null ) ); |
|
177 | + $search = \Aimeos\MShop\Factory::createManager($context, 'index')->createSearch(true); |
|
178 | + $expr = array($search->compare('!=', 'index.catalog.id', null)); |
|
179 | 179 | |
180 | - switch( $sort ) |
|
180 | + switch ($sort) |
|
181 | 181 | { |
182 | 182 | case 'code': |
183 | - $sortations[] = $search->sort( $direction, 'product.code' ); |
|
183 | + $sortations[] = $search->sort($direction, 'product.code'); |
|
184 | 184 | break; |
185 | 185 | |
186 | 186 | case 'name': |
187 | 187 | $langid = $context->getLocale()->getLanguageId(); |
188 | 188 | |
189 | - $cmpfunc = $search->createFunction( 'index.text.value', array( $listtype, $langid, 'name', 'product' ) ); |
|
190 | - $expr[] = $search->compare( '>=', $cmpfunc, '' ); |
|
189 | + $cmpfunc = $search->createFunction('index.text.value', array($listtype, $langid, 'name', 'product')); |
|
190 | + $expr[] = $search->compare('>=', $cmpfunc, ''); |
|
191 | 191 | |
192 | - $sortfunc = $search->createFunction( 'sort:index.text.value', array( $listtype, $langid, 'name' ) ); |
|
193 | - $sortations[] = $search->sort( $direction, $sortfunc ); |
|
192 | + $sortfunc = $search->createFunction('sort:index.text.value', array($listtype, $langid, 'name')); |
|
193 | + $sortations[] = $search->sort($direction, $sortfunc); |
|
194 | 194 | break; |
195 | 195 | |
196 | 196 | case 'price': |
197 | 197 | $currencyid = $context->getLocale()->getCurrencyId(); |
198 | 198 | |
199 | - $cmpfunc = $search->createFunction( 'index.price.value', array( $listtype, $currencyid, 'default' ) ); |
|
200 | - $expr[] = $search->compare( '>=', $cmpfunc, '0.00' ); |
|
199 | + $cmpfunc = $search->createFunction('index.price.value', array($listtype, $currencyid, 'default')); |
|
200 | + $expr[] = $search->compare('>=', $cmpfunc, '0.00'); |
|
201 | 201 | |
202 | - $sortfunc = $search->createFunction( 'sort:index.price.value', array( $listtype, $currencyid, 'default' ) ); |
|
203 | - $sortations[] = $search->sort( $direction, $sortfunc ); |
|
202 | + $sortfunc = $search->createFunction('sort:index.price.value', array($listtype, $currencyid, 'default')); |
|
203 | + $sortations[] = $search->sort($direction, $sortfunc); |
|
204 | 204 | break; |
205 | 205 | } |
206 | 206 | |
207 | 207 | $expr[] = $search->getConditions(); |
208 | 208 | |
209 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
210 | - $search->setSortations( $sortations ); |
|
211 | - $search->setSlice( $start, $size ); |
|
209 | + $search->setConditions($search->combine('&&', $expr)); |
|
210 | + $search->setSortations($sortations); |
|
211 | + $search->setSlice($start, $size); |
|
212 | 212 | |
213 | 213 | return $search; |
214 | 214 | } |
@@ -222,9 +222,9 @@ discard block |
||
222 | 222 | * @return \Aimeos\MShop\Product\Item\Iface Product item including the referenced domains items |
223 | 223 | * @since 2017.03 |
224 | 224 | */ |
225 | - public function getItem( $productId, array $domains = array( 'attribute', 'media', 'price', 'product', 'product/property', 'text' ) ) |
|
225 | + public function getItem($productId, array $domains = array('attribute', 'media', 'price', 'product', 'product/property', 'text')) |
|
226 | 226 | { |
227 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' )->getItem( $productId, $domains, true ); |
|
227 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'product')->getItem($productId, $domains, true); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | |
@@ -236,19 +236,19 @@ discard block |
||
236 | 236 | * @return \Aimeos\MShop\Product\Item\Iface[] Associative list of product IDs as keys and product items as values |
237 | 237 | * @since 2017.03 |
238 | 238 | */ |
239 | - public function getItems( array $productIds, array $domains = array( 'media', 'price', 'text' ) ) |
|
239 | + public function getItems(array $productIds, array $domains = array('media', 'price', 'text')) |
|
240 | 240 | { |
241 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' ); |
|
241 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product'); |
|
242 | 242 | |
243 | - $search = $manager->createSearch( true ); |
|
243 | + $search = $manager->createSearch(true); |
|
244 | 244 | $expr = array( |
245 | - $search->compare( '==', 'product.id', $productIds ), |
|
245 | + $search->compare('==', 'product.id', $productIds), |
|
246 | 246 | $search->getConditions(), |
247 | 247 | ); |
248 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
249 | - $search->setSlice( 0, count( $productIds ) ); |
|
248 | + $search->setConditions($search->combine('&&', $expr)); |
|
249 | + $search->setSlice(0, count($productIds)); |
|
250 | 250 | |
251 | - return $manager->searchItems( $search, $domains ); |
|
251 | + return $manager->searchItems($search, $domains); |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | |
@@ -261,9 +261,9 @@ discard block |
||
261 | 261 | * @return array Ordered list of product items implementing \Aimeos\MShop\Product\Item\Iface |
262 | 262 | * @since 2017.03 |
263 | 263 | */ |
264 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = array( 'media', 'price', 'text' ), &$total = null ) |
|
264 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = array('media', 'price', 'text'), &$total = null) |
|
265 | 265 | { |
266 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index' )->searchItems( $filter, $domains, $total ); |
|
266 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'index')->searchItems($filter, $domains, $total); |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | |
@@ -273,12 +273,12 @@ discard block |
||
273 | 273 | * @param \Aimeos\MShop\Catalog\Item\Iface $item Catalog item with children |
274 | 274 | * @return array List of catalog IDs |
275 | 275 | */ |
276 | - protected function getCatalogIdsFromTree( \Aimeos\MShop\Catalog\Item\Iface $item ) |
|
276 | + protected function getCatalogIdsFromTree(\Aimeos\MShop\Catalog\Item\Iface $item) |
|
277 | 277 | { |
278 | - $list = array( $item->getId() ); |
|
278 | + $list = array($item->getId()); |
|
279 | 279 | |
280 | - foreach( $item->getChildren() as $child ) { |
|
281 | - $list = array_merge( $list, $this->getCatalogIdsFromTree( $child ) ); |
|
280 | + foreach ($item->getChildren() as $child) { |
|
281 | + $list = array_merge($list, $this->getCatalogIdsFromTree($child)); |
|
282 | 282 | } |
283 | 283 | |
284 | 284 | return $list; |
@@ -291,13 +291,13 @@ discard block |
||
291 | 291 | * @param array $ids List of IDs to validate |
292 | 292 | * @return array List of validated IDs |
293 | 293 | */ |
294 | - protected function validateIds( array $ids ) |
|
294 | + protected function validateIds(array $ids) |
|
295 | 295 | { |
296 | 296 | $list = []; |
297 | 297 | |
298 | - foreach( $ids as $id ) |
|
298 | + foreach ($ids as $id) |
|
299 | 299 | { |
300 | - if( $id != '' ) { |
|
300 | + if ($id != '') { |
|
301 | 301 | $list[] = (int) $id; |
302 | 302 | } |
303 | 303 | } |
@@ -32,9 +32,9 @@ |
||
32 | 32 | * @param \Exception $previous The previous exception used for the exception chaining. |
33 | 33 | * @param array $list The associative list of errors and their messages when several errors occured |
34 | 34 | */ |
35 | - public function __construct( $msg = '', $code = 0, \Exception $previous = null, array $list = [] ) |
|
35 | + public function __construct($msg = '', $code = 0, \Exception $previous = null, array $list = []) |
|
36 | 36 | { |
37 | - parent::__construct( $msg, $code, $previous ); |
|
37 | + parent::__construct($msg, $code, $previous); |
|
38 | 38 | |
39 | 39 | $this->list = $list; |
40 | 40 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param string $classname Full name of the class for which the object should be returned |
32 | 32 | * @param \Aimeos\Controller\Frontend\Iface|null $controller Frontend controller object |
33 | 33 | */ |
34 | - public static function injectController( $classname, \Aimeos\Controller\Frontend\Iface $controller = null ) |
|
34 | + public static function injectController($classname, \Aimeos\Controller\Frontend\Iface $controller = null) |
|
35 | 35 | { |
36 | 36 | self::$objects[$classname] = $controller; |
37 | 37 | } |
@@ -46,29 +46,29 @@ discard block |
||
46 | 46 | * @param string $classprefix Decorator class prefix, e.g. "\Aimeos\Controller\Frontend\Basket\Decorator\" |
47 | 47 | * @return \Aimeos\Controller\Frontend\Common\Iface Controller object |
48 | 48 | */ |
49 | - protected static function addDecorators( \Aimeos\MShop\Context\Item\Iface $context, |
|
50 | - \Aimeos\Controller\Frontend\Iface $controller, array $decorators, $classprefix ) |
|
49 | + protected static function addDecorators(\Aimeos\MShop\Context\Item\Iface $context, |
|
50 | + \Aimeos\Controller\Frontend\Iface $controller, array $decorators, $classprefix) |
|
51 | 51 | { |
52 | 52 | $iface = '\\Aimeos\\Controller\\Frontend\\Common\\Decorator\\Iface'; |
53 | 53 | |
54 | - foreach( $decorators as $name ) |
|
54 | + foreach ($decorators as $name) |
|
55 | 55 | { |
56 | - if( ctype_alnum( $name ) === false ) |
|
56 | + if (ctype_alnum($name) === false) |
|
57 | 57 | { |
58 | - $classname = is_string( $name ) ? $classprefix . $name : '<not a string>'; |
|
59 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) ); |
|
58 | + $classname = is_string($name) ? $classprefix . $name : '<not a string>'; |
|
59 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid characters in class name "%1$s"', $classname)); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | $classname = $classprefix . $name; |
63 | 63 | |
64 | - if( class_exists( $classname ) === false ) { |
|
65 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Class "%1$s" not available', $classname ) ); |
|
64 | + if (class_exists($classname) === false) { |
|
65 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Class "%1$s" not available', $classname)); |
|
66 | 66 | } |
67 | 67 | |
68 | - $controller = new $classname( $controller, $context ); |
|
68 | + $controller = new $classname($controller, $context); |
|
69 | 69 | |
70 | - if( !( $controller instanceof $iface ) ) { |
|
71 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Class "%1$s" does not implement interface "%2$s"', $classname, $iface ) ); |
|
70 | + if (!($controller instanceof $iface)) { |
|
71 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Class "%1$s" does not implement interface "%2$s"', $classname, $iface)); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
@@ -84,14 +84,14 @@ discard block |
||
84 | 84 | * @param string $domain Domain name in lower case, e.g. "product" |
85 | 85 | * @return \Aimeos\Controller\Frontend\Common\Iface Controller object |
86 | 86 | */ |
87 | - protected static function addControllerDecorators( \Aimeos\MShop\Context\Item\Iface $context, |
|
88 | - \Aimeos\Controller\Frontend\Iface $controller, $domain ) |
|
87 | + protected static function addControllerDecorators(\Aimeos\MShop\Context\Item\Iface $context, |
|
88 | + \Aimeos\Controller\Frontend\Iface $controller, $domain) |
|
89 | 89 | { |
90 | - if( !is_string( $domain ) || $domain === '' ) { |
|
91 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid domain "%1$s"', $domain ) ); |
|
90 | + if (!is_string($domain) || $domain === '') { |
|
91 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid domain "%1$s"', $domain)); |
|
92 | 92 | } |
93 | 93 | |
94 | - $localClass = str_replace( ' ', '\\', ucwords( str_replace( '/', ' ', $domain ) ) ); |
|
94 | + $localClass = str_replace(' ', '\\', ucwords(str_replace('/', ' ', $domain))); |
|
95 | 95 | $config = $context->getConfig(); |
96 | 96 | |
97 | 97 | /** controller/frontend/common/decorators/default |
@@ -116,26 +116,26 @@ discard block |
||
116 | 116 | * @since 2014.03 |
117 | 117 | * @category Developer |
118 | 118 | */ |
119 | - $decorators = $config->get( 'controller/frontend/common/decorators/default', [] ); |
|
120 | - $excludes = $config->get( 'controller/frontend/' . $domain . '/decorators/excludes', [] ); |
|
119 | + $decorators = $config->get('controller/frontend/common/decorators/default', []); |
|
120 | + $excludes = $config->get('controller/frontend/' . $domain . '/decorators/excludes', []); |
|
121 | 121 | |
122 | - foreach( $decorators as $key => $name ) |
|
122 | + foreach ($decorators as $key => $name) |
|
123 | 123 | { |
124 | - if( in_array( $name, $excludes ) ) { |
|
125 | - unset( $decorators[$key] ); |
|
124 | + if (in_array($name, $excludes)) { |
|
125 | + unset($decorators[$key]); |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
129 | 129 | $classprefix = '\\Aimeos\\Controller\\Frontend\\Common\\Decorator\\'; |
130 | - $controller = self::addDecorators( $context, $controller, $decorators, $classprefix ); |
|
130 | + $controller = self::addDecorators($context, $controller, $decorators, $classprefix); |
|
131 | 131 | |
132 | 132 | $classprefix = '\\Aimeos\\Controller\\Frontend\\Common\\Decorator\\'; |
133 | - $decorators = $config->get( 'controller/frontend/' . $domain . '/decorators/global', [] ); |
|
134 | - $controller = self::addDecorators( $context, $controller, $decorators, $classprefix ); |
|
133 | + $decorators = $config->get('controller/frontend/' . $domain . '/decorators/global', []); |
|
134 | + $controller = self::addDecorators($context, $controller, $decorators, $classprefix); |
|
135 | 135 | |
136 | - $classprefix = '\\Aimeos\\Controller\\Frontend\\' . ucfirst( $localClass ) . '\\Decorator\\'; |
|
137 | - $decorators = $config->get( 'controller/frontend/' . $domain . '/decorators/local', [] ); |
|
138 | - $controller = self::addDecorators( $context, $controller, $decorators, $classprefix ); |
|
136 | + $classprefix = '\\Aimeos\\Controller\\Frontend\\' . ucfirst($localClass) . '\\Decorator\\'; |
|
137 | + $decorators = $config->get('controller/frontend/' . $domain . '/decorators/local', []); |
|
138 | + $controller = self::addDecorators($context, $controller, $decorators, $classprefix); |
|
139 | 139 | |
140 | 140 | return $controller; |
141 | 141 | } |
@@ -149,20 +149,20 @@ discard block |
||
149 | 149 | * @param string $interface Name of the controller interface |
150 | 150 | * @return \Aimeos\Controller\Frontend\Common\Iface Controller object |
151 | 151 | */ |
152 | - protected static function createControllerBase( \Aimeos\MShop\Context\Item\Iface $context, $classname, $interface ) |
|
152 | + protected static function createControllerBase(\Aimeos\MShop\Context\Item\Iface $context, $classname, $interface) |
|
153 | 153 | { |
154 | - if( isset( self::$objects[$classname] ) ) { |
|
154 | + if (isset(self::$objects[$classname])) { |
|
155 | 155 | return self::$objects[$classname]; |
156 | 156 | } |
157 | 157 | |
158 | - if( class_exists( $classname ) === false ) { |
|
159 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Class "%1$s" not available', $classname ) ); |
|
158 | + if (class_exists($classname) === false) { |
|
159 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Class "%1$s" not available', $classname)); |
|
160 | 160 | } |
161 | 161 | |
162 | - $controller = new $classname( $context ); |
|
162 | + $controller = new $classname($context); |
|
163 | 163 | |
164 | - if( !( $controller instanceof $interface ) ) { |
|
165 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Class "%1$s" does not implement interface "%2$s"', $classname, $interface ) ); |
|
164 | + if (!($controller instanceof $interface)) { |
|
165 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Class "%1$s" does not implement interface "%2$s"', $classname, $interface)); |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | return $controller; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
37 | 37 | * @since 2017.03 |
38 | 38 | */ |
39 | - public function getItem( $id, array $domains = [] ); |
|
39 | + public function getItem($id, array $domains = []); |
|
40 | 40 | |
41 | 41 | |
42 | 42 | /** |
@@ -48,5 +48,5 @@ discard block |
||
48 | 48 | * @return array Ordered list of locale items implementing \Aimeos\MShop\Locale\Item\Iface |
49 | 49 | * @since 2017.03 |
50 | 50 | */ |
51 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null ); |
|
51 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null); |
|
52 | 52 | } |
@@ -30,18 +30,18 @@ discard block |
||
30 | 30 | * @param \Aimeos\Controller\Frontend\Iface $controller Controller object |
31 | 31 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
32 | 32 | */ |
33 | - public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context ) |
|
33 | + public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context) |
|
34 | 34 | { |
35 | 35 | $iface = '\Aimeos\Controller\Frontend\Locale\Iface'; |
36 | - if( !( $controller instanceof $iface ) ) |
|
36 | + if (!($controller instanceof $iface)) |
|
37 | 37 | { |
38 | - $msg = sprintf( 'Class "%1$s" does not implement interface "%2$s"', get_class( $controller ), $iface ); |
|
39 | - throw new \Aimeos\Controller\Frontend\Exception( $msg ); |
|
38 | + $msg = sprintf('Class "%1$s" does not implement interface "%2$s"', get_class($controller), $iface); |
|
39 | + throw new \Aimeos\Controller\Frontend\Exception($msg); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $this->controller = $controller; |
43 | 43 | |
44 | - parent::__construct( $context ); |
|
44 | + parent::__construct($context); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @return mixed Returns the value of the called method |
54 | 54 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
55 | 55 | */ |
56 | - public function __call( $name, array $param ) |
|
56 | + public function __call($name, array $param) |
|
57 | 57 | { |
58 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
58 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -80,9 +80,9 @@ discard block |
||
80 | 80 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
81 | 81 | * @since 2017.03 |
82 | 82 | */ |
83 | - public function getItem( $id, array $domains = [] ) |
|
83 | + public function getItem($id, array $domains = []) |
|
84 | 84 | { |
85 | - return $this->controller->getItem( $id, $domains ); |
|
85 | + return $this->controller->getItem($id, $domains); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | * @return array Ordered list of locale items implementing \Aimeos\MShop\Locale\Item\Iface |
96 | 96 | * @since 2017.03 |
97 | 97 | */ |
98 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null ) |
|
98 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null) |
|
99 | 99 | { |
100 | - return $this->controller->searchItems( $filter, $domains, $total ); |
|
100 | + return $this->controller->searchItems($filter, $domains, $total); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 |
@@ -31,15 +31,15 @@ discard block |
||
31 | 31 | public function createFilter() |
32 | 32 | { |
33 | 33 | $context = $this->getContext(); |
34 | - $filter = \Aimeos\MShop\Factory::createManager( $context, 'locale' )->createSearch( true ); |
|
34 | + $filter = \Aimeos\MShop\Factory::createManager($context, 'locale')->createSearch(true); |
|
35 | 35 | |
36 | 36 | $expr = array( |
37 | - $filter->compare( '==', 'locale.siteid', $context->getLocale()->getSitePath() ), |
|
37 | + $filter->compare('==', 'locale.siteid', $context->getLocale()->getSitePath()), |
|
38 | 38 | $filter->getConditions(), |
39 | 39 | ); |
40 | 40 | |
41 | - $filter->setConditions( $filter->combine( '&&', $expr ) ); |
|
42 | - $filter->setSortations( array( $filter->sort( '+', 'locale.position' ) ) ); |
|
41 | + $filter->setConditions($filter->combine('&&', $expr)); |
|
42 | + $filter->setSortations(array($filter->sort('+', 'locale.position'))); |
|
43 | 43 | |
44 | 44 | return $filter; |
45 | 45 | } |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
54 | 54 | * @since 2017.03 |
55 | 55 | */ |
56 | - public function getItem( $id, array $domains = [] ) |
|
56 | + public function getItem($id, array $domains = []) |
|
57 | 57 | { |
58 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'locale' )->getItem( $id, $domains, true ); |
|
58 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'locale')->getItem($id, $domains, true); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | * @return array Ordered list of locale items implementing \Aimeos\MShop\Locale\Item\Iface |
69 | 69 | * @since 2017.03 |
70 | 70 | */ |
71 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null ) |
|
71 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = [], &$total = null) |
|
72 | 72 | { |
73 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'locale' )->searchItems( $filter, $domains, $total ); |
|
73 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'locale')->searchItems($filter, $domains, $total); |
|
74 | 74 | } |
75 | 75 | } |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | * @param integer $id Context ID the objects have been created with (string of \Aimeos\MShop\Context\Item\Iface) |
31 | 31 | * @param string $path Path describing the controller to clear, e.g. "basket" |
32 | 32 | */ |
33 | - static public function clear( $id = null, $path = null ) |
|
33 | + static public function clear($id = null, $path = null) |
|
34 | 34 | { |
35 | - if( $id !== null ) |
|
35 | + if ($id !== null) |
|
36 | 36 | { |
37 | - if( $path !== null ) { |
|
37 | + if ($path !== null) { |
|
38 | 38 | self::$controllers[$id][$path] = null; |
39 | 39 | } else { |
40 | 40 | self::$controllers[$id] = []; |
@@ -62,37 +62,37 @@ discard block |
||
62 | 62 | * @return \Aimeos\Controller\Frontend\Iface New frontend controller |
63 | 63 | * @throws \Aimeos\Controller\Frontend\Exception If the given path is invalid or the manager wasn't found |
64 | 64 | */ |
65 | - static public function createController( \Aimeos\MShop\Context\Item\Iface $context, $path ) |
|
65 | + static public function createController(\Aimeos\MShop\Context\Item\Iface $context, $path) |
|
66 | 66 | { |
67 | - if( empty( $path ) ) { |
|
68 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Controller path is empty' ) ); |
|
67 | + if (empty($path)) { |
|
68 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Controller path is empty')); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | $id = (string) $context; |
72 | 72 | |
73 | - if( self::$cache === false || !isset( self::$controllers[$id][$path] ) ) |
|
73 | + if (self::$cache === false || !isset(self::$controllers[$id][$path])) |
|
74 | 74 | { |
75 | - $parts = explode( '/', $path ); |
|
75 | + $parts = explode('/', $path); |
|
76 | 76 | |
77 | - foreach( $parts as $key => $part ) |
|
77 | + foreach ($parts as $key => $part) |
|
78 | 78 | { |
79 | - if( ctype_alnum( $part ) === false ) { |
|
80 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid characters in controller name "%1$s" in "%2$s"', $part, $path ) ); |
|
79 | + if (ctype_alnum($part) === false) { |
|
80 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid characters in controller name "%1$s" in "%2$s"', $part, $path)); |
|
81 | 81 | } |
82 | 82 | |
83 | - $parts[$key] = ucwords( $part ); |
|
83 | + $parts[$key] = ucwords($part); |
|
84 | 84 | } |
85 | 85 | |
86 | - $factory = '\\Aimeos\\Controller\\Frontend\\' . join( '\\', $parts ) . '\\Factory'; |
|
86 | + $factory = '\\Aimeos\\Controller\\Frontend\\' . join('\\', $parts) . '\\Factory'; |
|
87 | 87 | |
88 | - if( class_exists( $factory ) === false ) { |
|
89 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Class "%1$s" not available', $factory ) ); |
|
88 | + if (class_exists($factory) === false) { |
|
89 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Class "%1$s" not available', $factory)); |
|
90 | 90 | } |
91 | 91 | |
92 | - $manager = call_user_func_array( array( $factory, 'createController' ), array( $context ) ); |
|
92 | + $manager = call_user_func_array(array($factory, 'createController'), array($context)); |
|
93 | 93 | |
94 | - if( $manager === false ) { |
|
95 | - throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid factory "%1$s"', $factory ) ); |
|
94 | + if ($manager === false) { |
|
95 | + throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid factory "%1$s"', $factory)); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | self::$controllers[$id][$path] = $manager; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * @param boolean $value True to enable caching, false to disable it. |
109 | 109 | * @return boolean Previous cache setting |
110 | 110 | */ |
111 | - static public function setCache( $value ) |
|
111 | + static public function setCache($value) |
|
112 | 112 | { |
113 | 113 | $old = self::$cache; |
114 | 114 | self::$cache = (boolean) $value; |