@@ -16,22 +16,22 @@ discard block |
||
16 | 16 | |
17 | 17 | protected function setUp() |
18 | 18 | { |
19 | - $this->object = new \Aimeos\Controller\Frontend\Product\Standard( \TestHelperFrontend::getContext() ); |
|
19 | + $this->object = new \Aimeos\Controller\Frontend\Product\Standard(\TestHelperFrontend::getContext()); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | |
23 | 23 | protected function tearDown() |
24 | 24 | { |
25 | - unset( $this->object ); |
|
25 | + unset($this->object); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
29 | 29 | public function testAggregate() |
30 | 30 | { |
31 | 31 | $filter = $this->object->createFilter(); |
32 | - $list = $this->object->aggregate( $filter, 'index.attribute.id' ); |
|
32 | + $list = $this->object->aggregate($filter, 'index.attribute.id'); |
|
33 | 33 | |
34 | - $this->assertGreaterThan( 0, count( $list ) ); |
|
34 | + $this->assertGreaterThan(0, count($list)); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -39,103 +39,103 @@ discard block |
||
39 | 39 | { |
40 | 40 | $filter = $this->object->createFilter(); |
41 | 41 | |
42 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
43 | - $this->assertEquals( [], $filter->getSortations() ); |
|
44 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
45 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
42 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
43 | + $this->assertEquals([], $filter->getSortations()); |
|
44 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
45 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | |
49 | 49 | public function testAddFilterAttribute() |
50 | 50 | { |
51 | 51 | $filter = $this->object->createFilter(); |
52 | - $filter = $this->object->addFilterAttribute( $filter, array( 0, 1 ), [], [] ); |
|
52 | + $filter = $this->object->addFilterAttribute($filter, array(0, 1), [], []); |
|
53 | 53 | |
54 | 54 | $list = $filter->getConditions()->getExpressions(); |
55 | 55 | |
56 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
57 | - throw new \RuntimeException( 'Wrong expression' ); |
|
56 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
57 | + throw new \RuntimeException('Wrong expression'); |
|
58 | 58 | } |
59 | 59 | |
60 | - $this->assertEquals( 'index.attributeaggregate([0,1])', $list[0]->getName() ); |
|
61 | - $this->assertEquals( 2, $list[0]->getValue() ); |
|
60 | + $this->assertEquals('index.attributeaggregate([0,1])', $list[0]->getName()); |
|
61 | + $this->assertEquals(2, $list[0]->getValue()); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | |
65 | 65 | public function testAddFilterAttributeOptions() |
66 | 66 | { |
67 | 67 | $filter = $this->object->createFilter(); |
68 | - $filter = $this->object->addFilterAttribute( $filter, [], array( 1 ), [] ); |
|
68 | + $filter = $this->object->addFilterAttribute($filter, [], array(1), []); |
|
69 | 69 | |
70 | 70 | $list = $filter->getConditions()->getExpressions(); |
71 | 71 | |
72 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
73 | - throw new \RuntimeException( 'Wrong expression' ); |
|
72 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
73 | + throw new \RuntimeException('Wrong expression'); |
|
74 | 74 | } |
75 | 75 | |
76 | - $this->assertEquals( 'index.attributeaggregate([1])', $list[0]->getName() ); |
|
77 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
76 | + $this->assertEquals('index.attributeaggregate([1])', $list[0]->getName()); |
|
77 | + $this->assertEquals(0, $list[0]->getValue()); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | |
81 | 81 | public function testAddFilterAttributeOne() |
82 | 82 | { |
83 | 83 | $filter = $this->object->createFilter(); |
84 | - $filter = $this->object->addFilterAttribute( $filter, [], [], array( 'test' => array( 2 ) ) ); |
|
84 | + $filter = $this->object->addFilterAttribute($filter, [], [], array('test' => array(2))); |
|
85 | 85 | |
86 | 86 | $list = $filter->getConditions()->getExpressions(); |
87 | 87 | |
88 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
89 | - throw new \RuntimeException( 'Wrong expression' ); |
|
88 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
89 | + throw new \RuntimeException('Wrong expression'); |
|
90 | 90 | } |
91 | 91 | |
92 | - $this->assertEquals( 'index.attributeaggregate([2])', $list[0]->getName() ); |
|
93 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
92 | + $this->assertEquals('index.attributeaggregate([2])', $list[0]->getName()); |
|
93 | + $this->assertEquals(0, $list[0]->getValue()); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | |
97 | 97 | public function testAddFilterCategory() |
98 | 98 | { |
99 | 99 | $context = \TestHelperFrontend::getContext(); |
100 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'catalog' ); |
|
100 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'catalog'); |
|
101 | 101 | |
102 | - $catId = $manager->findItem( 'root' )->getId(); |
|
102 | + $catId = $manager->findItem('root')->getId(); |
|
103 | 103 | $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST; |
104 | 104 | |
105 | 105 | $filter = $this->object->createFilter(); |
106 | - $filter = $this->object->addFilterCategory( $filter, $catId, $level ); |
|
106 | + $filter = $this->object->addFilterCategory($filter, $catId, $level); |
|
107 | 107 | |
108 | 108 | $list = $filter->getConditions()->getExpressions(); |
109 | 109 | |
110 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
111 | - throw new \RuntimeException( 'Wrong expression' ); |
|
110 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
111 | + throw new \RuntimeException('Wrong expression'); |
|
112 | 112 | } |
113 | 113 | |
114 | - $this->assertEquals( 'index.catalog.id', $list[0]->getName() ); |
|
115 | - $this->assertEquals( 3, count( $list[0]->getValue() ) ); |
|
116 | - $this->assertEquals( [], $filter->getSortations() ); |
|
114 | + $this->assertEquals('index.catalog.id', $list[0]->getName()); |
|
115 | + $this->assertEquals(3, count($list[0]->getValue())); |
|
116 | + $this->assertEquals([], $filter->getSortations()); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | |
120 | 120 | public function testAddFilterText() |
121 | 121 | { |
122 | 122 | $filter = $this->object->createFilter(); |
123 | - $filter = $this->object->addFilterText( $filter, 'Espresso' ); |
|
123 | + $filter = $this->object->addFilterText($filter, 'Espresso'); |
|
124 | 124 | |
125 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
125 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
126 | 126 | |
127 | 127 | $list = $filter->getConditions()->getExpressions(); |
128 | 128 | |
129 | 129 | |
130 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
131 | - throw new \RuntimeException( 'Wrong expression' ); |
|
130 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
131 | + throw new \RuntimeException('Wrong expression'); |
|
132 | 132 | } |
133 | - $this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() ); |
|
134 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
133 | + $this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName()); |
|
134 | + $this->assertEquals(0, $list[0]->getValue()); |
|
135 | 135 | |
136 | - $this->assertEquals( [], $filter->getSortations() ); |
|
137 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
138 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
136 | + $this->assertEquals([], $filter->getSortations()); |
|
137 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
138 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | |
@@ -144,160 +144,160 @@ discard block |
||
144 | 144 | $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE; |
145 | 145 | |
146 | 146 | $filter = $this->object->createFilter(); |
147 | - $filter = $this->object->addFilterCategory( $filter, 0, $level, 'relevance', '-', 'test' ); |
|
147 | + $filter = $this->object->addFilterCategory($filter, 0, $level, 'relevance', '-', 'test'); |
|
148 | 148 | |
149 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
149 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
150 | 150 | |
151 | 151 | $sort = $filter->getSortations(); |
152 | - if( ( $item = reset( $sort ) ) === false ) { |
|
153 | - throw new \RuntimeException( 'Sortation not set' ); |
|
152 | + if (($item = reset($sort)) === false) { |
|
153 | + throw new \RuntimeException('Sortation not set'); |
|
154 | 154 | } |
155 | 155 | |
156 | - $this->assertEquals( 'sort:index.catalog.position("test",["0"])', $item->getName() ); |
|
157 | - $this->assertEquals( '-', $item->getOperator() ); |
|
156 | + $this->assertEquals('sort:index.catalog.position("test",["0"])', $item->getName()); |
|
157 | + $this->assertEquals('-', $item->getOperator()); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | |
161 | 161 | public function testCreateFilterSortRelevanceText() |
162 | 162 | { |
163 | - $filter = $this->object->createFilter( 'relevance', '-', 1, 2, 'test' ); |
|
164 | - $filter = $this->object->addFilterText( $filter, 'Espresso' ); |
|
163 | + $filter = $this->object->createFilter('relevance', '-', 1, 2, 'test'); |
|
164 | + $filter = $this->object->addFilterText($filter, 'Espresso'); |
|
165 | 165 | |
166 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
167 | - $this->assertEquals( [], $filter->getSortations() ); |
|
168 | - $this->assertEquals( 1, $filter->getSliceStart() ); |
|
169 | - $this->assertEquals( 2, $filter->getSliceSize() ); |
|
166 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
167 | + $this->assertEquals([], $filter->getSortations()); |
|
168 | + $this->assertEquals(1, $filter->getSliceStart()); |
|
169 | + $this->assertEquals(2, $filter->getSliceSize()); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | |
173 | 173 | public function testCreateFilterSortCode() |
174 | 174 | { |
175 | - $filter = $this->object->createFilter( 'code' ); |
|
175 | + $filter = $this->object->createFilter('code'); |
|
176 | 176 | |
177 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
177 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
178 | 178 | |
179 | 179 | $sort = $filter->getSortations(); |
180 | - if( ( $item = reset( $sort ) ) === false ) { |
|
181 | - throw new \RuntimeException( 'Sortation not set' ); |
|
180 | + if (($item = reset($sort)) === false) { |
|
181 | + throw new \RuntimeException('Sortation not set'); |
|
182 | 182 | } |
183 | 183 | |
184 | - $this->assertEquals( 'product.code', $item->getName() ); |
|
184 | + $this->assertEquals('product.code', $item->getName()); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | |
188 | 188 | public function testCreateFilterSortName() |
189 | 189 | { |
190 | - $filter = $this->object->createFilter( 'name' ); |
|
190 | + $filter = $this->object->createFilter('name'); |
|
191 | 191 | |
192 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
192 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
193 | 193 | |
194 | 194 | $sort = $filter->getSortations(); |
195 | - if( ( $item = reset( $sort ) ) === false ) { |
|
196 | - throw new \RuntimeException( 'Sortation not set' ); |
|
195 | + if (($item = reset($sort)) === false) { |
|
196 | + throw new \RuntimeException('Sortation not set'); |
|
197 | 197 | } |
198 | 198 | |
199 | - $this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() ); |
|
199 | + $this->assertEquals('sort:index.text.value("default","de","name")', $item->getName()); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
203 | 203 | public function testCreateFilterSortPrice() |
204 | 204 | { |
205 | - $filter = $this->object->createFilter( 'price' ); |
|
205 | + $filter = $this->object->createFilter('price'); |
|
206 | 206 | |
207 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
207 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
208 | 208 | |
209 | 209 | $sort = $filter->getSortations(); |
210 | - if( ( $item = reset( $sort ) ) === false ) { |
|
211 | - throw new \RuntimeException( 'Sortation not set' ); |
|
210 | + if (($item = reset($sort)) === false) { |
|
211 | + throw new \RuntimeException('Sortation not set'); |
|
212 | 212 | } |
213 | 213 | |
214 | - $this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() ); |
|
214 | + $this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName()); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | |
218 | 218 | public function testCreateFilterSortInvalid() |
219 | 219 | { |
220 | - $filter = $this->object->createFilter( '', 'failure' ); |
|
220 | + $filter = $this->object->createFilter('', 'failure'); |
|
221 | 221 | |
222 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
223 | - $this->assertEquals( [], $filter->getSortations() ); |
|
222 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
223 | + $this->assertEquals([], $filter->getSortations()); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | |
227 | 227 | public function testGetItem() |
228 | 228 | { |
229 | 229 | $context = \TestHelperFrontend::getContext(); |
230 | - $id = \Aimeos\MShop\Factory::createManager( $context, 'product' )->findItem( 'CNC' )->getId(); |
|
230 | + $id = \Aimeos\MShop\Factory::createManager($context, 'product')->findItem('CNC')->getId(); |
|
231 | 231 | |
232 | - $result = $this->object->getItem( $id ); |
|
232 | + $result = $this->object->getItem($id); |
|
233 | 233 | |
234 | - $this->assertInstanceOf( '\Aimeos\MShop\Product\Item\Iface', $result ); |
|
235 | - $this->assertGreaterThan( 0, $result->getPropertyItems() ); |
|
236 | - $this->assertGreaterThan( 0, $result->getRefItems( 'attribute' ) ); |
|
237 | - $this->assertGreaterThan( 0, $result->getRefItems( 'media' ) ); |
|
238 | - $this->assertGreaterThan( 0, $result->getRefItems( 'price' ) ); |
|
239 | - $this->assertGreaterThan( 0, $result->getRefItems( 'product' ) ); |
|
240 | - $this->assertGreaterThan( 0, $result->getRefItems( 'text' ) ); |
|
234 | + $this->assertInstanceOf('\Aimeos\MShop\Product\Item\Iface', $result); |
|
235 | + $this->assertGreaterThan(0, $result->getPropertyItems()); |
|
236 | + $this->assertGreaterThan(0, $result->getRefItems('attribute')); |
|
237 | + $this->assertGreaterThan(0, $result->getRefItems('media')); |
|
238 | + $this->assertGreaterThan(0, $result->getRefItems('price')); |
|
239 | + $this->assertGreaterThan(0, $result->getRefItems('product')); |
|
240 | + $this->assertGreaterThan(0, $result->getRefItems('text')); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | |
244 | 244 | public function testGetItems() |
245 | 245 | { |
246 | 246 | $context = \TestHelperFrontend::getContext(); |
247 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'product' ); |
|
247 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'product'); |
|
248 | 248 | |
249 | 249 | $search = $manager->createSearch(); |
250 | - $search->setConditions( $search->compare( '==', 'product.code', array( 'CNC', 'CNE' ) ) ); |
|
250 | + $search->setConditions($search->compare('==', 'product.code', array('CNC', 'CNE'))); |
|
251 | 251 | |
252 | 252 | $ids = []; |
253 | - foreach( $manager->searchItems( $search ) as $productItem ) { |
|
253 | + foreach ($manager->searchItems($search) as $productItem) { |
|
254 | 254 | $ids[] = $productItem->getId(); |
255 | 255 | } |
256 | 256 | |
257 | 257 | |
258 | - $result = $this->object->getItems( $ids ); |
|
258 | + $result = $this->object->getItems($ids); |
|
259 | 259 | |
260 | - $this->assertEquals( 2, count( $result ) ); |
|
260 | + $this->assertEquals(2, count($result)); |
|
261 | 261 | |
262 | - foreach( $result as $productItem ) { |
|
263 | - $this->assertInstanceOf( '\Aimeos\MShop\Product\Item\Iface', $productItem ); |
|
262 | + foreach ($result as $productItem) { |
|
263 | + $this->assertInstanceOf('\Aimeos\MShop\Product\Item\Iface', $productItem); |
|
264 | 264 | } |
265 | 265 | } |
266 | 266 | |
267 | 267 | |
268 | 268 | public function testSearchItemsCategory() |
269 | 269 | { |
270 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
270 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
271 | 271 | $search = $catalogManager->createSearch(); |
272 | 272 | |
273 | - $search->setConditions( $search->compare( '==', 'catalog.code', 'new' ) ); |
|
274 | - $search->setSlice( 0, 1 ); |
|
275 | - $items = $catalogManager->searchItems( $search ); |
|
273 | + $search->setConditions($search->compare('==', 'catalog.code', 'new')); |
|
274 | + $search->setSlice(0, 1); |
|
275 | + $items = $catalogManager->searchItems($search); |
|
276 | 276 | |
277 | - if( ( $item = reset( $items ) ) === false ) { |
|
278 | - throw new \RuntimeException( 'Product item not found' ); |
|
277 | + if (($item = reset($items)) === false) { |
|
278 | + throw new \RuntimeException('Product item not found'); |
|
279 | 279 | } |
280 | 280 | |
281 | - $filter = $this->object->createFilter( 'position', '+', 1, 1 ); |
|
282 | - $filter = $this->object->addFilterCategory( $filter, $item->getId() ); |
|
281 | + $filter = $this->object->createFilter('position', '+', 1, 1); |
|
282 | + $filter = $this->object->addFilterCategory($filter, $item->getId()); |
|
283 | 283 | |
284 | 284 | $total = 0; |
285 | - $results = $this->object->searchItems( $filter, [], $total ); |
|
285 | + $results = $this->object->searchItems($filter, [], $total); |
|
286 | 286 | |
287 | - $this->assertEquals( 3, $total ); |
|
288 | - $this->assertEquals( 1, count( $results ) ); |
|
287 | + $this->assertEquals(3, $total); |
|
288 | + $this->assertEquals(1, count($results)); |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | |
292 | 292 | public function testSearchItemsText() |
293 | 293 | { |
294 | - $filter = $this->object->createFilter( 'relevance', '+', 0, 1, 'unittype13' ); |
|
295 | - $filter = $this->object->addFilterText( $filter, 'Expresso', 'relevance', '+', 'unittype13' ); |
|
294 | + $filter = $this->object->createFilter('relevance', '+', 0, 1, 'unittype13'); |
|
295 | + $filter = $this->object->addFilterText($filter, 'Expresso', 'relevance', '+', 'unittype13'); |
|
296 | 296 | |
297 | 297 | $total = 0; |
298 | - $results = $this->object->searchItems( $filter, [], $total ); |
|
298 | + $results = $this->object->searchItems($filter, [], $total); |
|
299 | 299 | |
300 | - $this->assertEquals( 2, $total ); |
|
301 | - $this->assertEquals( 1, count( $results ) ); |
|
300 | + $this->assertEquals(2, $total); |
|
301 | + $this->assertEquals(1, count($results)); |
|
302 | 302 | } |
303 | 303 | } |
@@ -20,33 +20,33 @@ |
||
20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
21 | 21 | $config = $this->context->getConfig(); |
22 | 22 | |
23 | - $config->set( 'controller/frontend/common/decorators/default', [] ); |
|
24 | - $config->set( 'controller/frontend/catalog/decorators/global', [] ); |
|
25 | - $config->set( 'controller/frontend/catalog/decorators/local', [] ); |
|
23 | + $config->set('controller/frontend/common/decorators/default', []); |
|
24 | + $config->set('controller/frontend/catalog/decorators/global', []); |
|
25 | + $config->set('controller/frontend/catalog/decorators/local', []); |
|
26 | 26 | |
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | 30 | public function testInjectController() |
31 | 31 | { |
32 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
33 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
32 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
33 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
34 | 34 | |
35 | - $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
35 | + $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
36 | 36 | |
37 | - $this->assertSame( $controller, $injectedController ); |
|
37 | + $this->assertSame($controller, $injectedController); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | 41 | public function testInjectControllerReset() |
42 | 42 | { |
43 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
44 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
45 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null ); |
|
43 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
44 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
45 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null); |
|
46 | 46 | |
47 | - $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
47 | + $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
48 | 48 | |
49 | - $this->assertNotSame( $controller, $new ); |
|
49 | + $this->assertNotSame($controller, $new); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | |
17 | 17 | protected function setUp() |
18 | 18 | { |
19 | - $this->object = new \Aimeos\Controller\Frontend\Stock\Standard( \TestHelperFrontend::getContext() ); |
|
19 | + $this->object = new \Aimeos\Controller\Frontend\Stock\Standard(\TestHelperFrontend::getContext()); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | |
23 | 23 | protected function tearDown() |
24 | 24 | { |
25 | - unset( $this->object ); |
|
25 | + unset($this->object); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -30,66 +30,66 @@ discard block |
||
30 | 30 | { |
31 | 31 | $filter = $this->object->createFilter(); |
32 | 32 | |
33 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
34 | - $this->assertEquals( [], $filter->getSortations() ); |
|
35 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
36 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
33 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
34 | + $this->assertEquals([], $filter->getSortations()); |
|
35 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
36 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | |
40 | 40 | public function testAddFilterCodes() |
41 | 41 | { |
42 | 42 | $filter = $this->object->createFilter(); |
43 | - $filter = $this->object->addFilterCodes( $filter, ['CNC', 'CNE'] ); |
|
43 | + $filter = $this->object->addFilterCodes($filter, ['CNC', 'CNE']); |
|
44 | 44 | |
45 | 45 | $list = $filter->getConditions()->getExpressions(); |
46 | 46 | |
47 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
48 | - throw new \RuntimeException( 'Wrong expression' ); |
|
47 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
48 | + throw new \RuntimeException('Wrong expression'); |
|
49 | 49 | } |
50 | 50 | |
51 | - $this->assertEquals( 'stock.productcode', $list[0]->getName() ); |
|
52 | - $this->assertEquals( 2, count( $list[0]->getValue() ) ); |
|
51 | + $this->assertEquals('stock.productcode', $list[0]->getName()); |
|
52 | + $this->assertEquals(2, count($list[0]->getValue())); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | |
56 | 56 | public function testAddFilterTypes() |
57 | 57 | { |
58 | 58 | $filter = $this->object->createFilter(); |
59 | - $filter = $this->object->addFilterTypes( $filter, ['default'] ); |
|
59 | + $filter = $this->object->addFilterTypes($filter, ['default']); |
|
60 | 60 | |
61 | 61 | $list = $filter->getConditions()->getExpressions(); |
62 | 62 | |
63 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
64 | - throw new \RuntimeException( 'Wrong expression' ); |
|
63 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
64 | + throw new \RuntimeException('Wrong expression'); |
|
65 | 65 | } |
66 | 66 | |
67 | - $this->assertEquals( 'stock.type.code', $list[0]->getName() ); |
|
68 | - $this->assertEquals( 1, count( $list[0]->getValue() ) ); |
|
67 | + $this->assertEquals('stock.type.code', $list[0]->getName()); |
|
68 | + $this->assertEquals(1, count($list[0]->getValue())); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | |
72 | 72 | public function testGetItem() |
73 | 73 | { |
74 | 74 | $context = \TestHelperFrontend::getContext(); |
75 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'stock' ); |
|
76 | - $id = $manager->findItem( 'CNC', [], 'product', 'default' )->getId(); |
|
75 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'stock'); |
|
76 | + $id = $manager->findItem('CNC', [], 'product', 'default')->getId(); |
|
77 | 77 | |
78 | - $result = $this->object->getItem( $id ); |
|
78 | + $result = $this->object->getItem($id); |
|
79 | 79 | |
80 | - $this->assertInstanceOf( '\Aimeos\MShop\Stock\Item\Iface', $result ); |
|
80 | + $this->assertInstanceOf('\Aimeos\MShop\Stock\Item\Iface', $result); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
84 | 84 | public function testSearchItems() |
85 | 85 | { |
86 | 86 | $filter = $this->object->createFilter(); |
87 | - $filter = $this->object->addFilterCodes( $filter, ['CNC', 'CNE'] ); |
|
87 | + $filter = $this->object->addFilterCodes($filter, ['CNC', 'CNE']); |
|
88 | 88 | |
89 | 89 | $total = 0; |
90 | - $results = $this->object->searchItems( $filter, $total ); |
|
90 | + $results = $this->object->searchItems($filter, $total); |
|
91 | 91 | |
92 | - $this->assertEquals( 2, $total ); |
|
93 | - $this->assertEquals( 2, count( $results ) ); |
|
92 | + $this->assertEquals(2, $total); |
|
93 | + $this->assertEquals(2, count($results)); |
|
94 | 94 | } |
95 | 95 | } |
@@ -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( [], $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([], $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 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @param string $type Basket type |
51 | 51 | * @return \Aimeos\Controller\Frontend\Basket\Iface Basket frontend object |
52 | 52 | */ |
53 | - public function setType( $type ); |
|
53 | + public function setType($type); |
|
54 | 54 | |
55 | 55 | |
56 | 56 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param boolean $default True to add default criteria (user logged in), false if not |
70 | 70 | * @return \Aimeos\MShop\Order\Item\Base\Iface Order base object including the given parts |
71 | 71 | */ |
72 | - public function load( $id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true ); |
|
72 | + public function load($id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true); |
|
73 | 73 | |
74 | 74 | |
75 | 75 | /** |
@@ -89,9 +89,9 @@ discard block |
||
89 | 89 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
90 | 90 | * @return void |
91 | 91 | */ |
92 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
92 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
93 | 93 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
94 | - $stocktype = 'default' ); |
|
94 | + $stocktype = 'default'); |
|
95 | 95 | |
96 | 96 | |
97 | 97 | /** |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * @param integer $position Position number (key) of the order product item |
101 | 101 | * @return void |
102 | 102 | */ |
103 | - public function deleteProduct( $position ); |
|
103 | + public function deleteProduct($position); |
|
104 | 104 | |
105 | 105 | |
106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED |
112 | 112 | * @return void |
113 | 113 | */ |
114 | - public function editProduct( $position, $quantity, array $configAttributeCodes = [] ); |
|
114 | + public function editProduct($position, $quantity, array $configAttributeCodes = []); |
|
115 | 115 | |
116 | 116 | |
117 | 117 | /** |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
122 | 122 | * @return void |
123 | 123 | */ |
124 | - public function addCoupon( $code ); |
|
124 | + public function addCoupon($code); |
|
125 | 125 | |
126 | 126 | |
127 | 127 | /** |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
132 | 132 | * @return void |
133 | 133 | */ |
134 | - public function deleteCoupon( $code ); |
|
134 | + public function deleteCoupon($code); |
|
135 | 135 | |
136 | 136 | |
137 | 137 | /** |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * if one of the keys is invalid when using an array with key/value pairs |
144 | 144 | * @return void |
145 | 145 | */ |
146 | - public function setAddress( $type, $value ); |
|
146 | + public function setAddress($type, $value); |
|
147 | 147 | |
148 | 148 | |
149 | 149 | /** |
@@ -156,5 +156,5 @@ discard block |
||
156 | 156 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
157 | 157 | * @return void |
158 | 158 | */ |
159 | - public function setService( $type, $id, array $attributes = [] ); |
|
159 | + public function setService($type, $id, array $attributes = []); |
|
160 | 160 | } |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | * @param string $stocktype Unique code of the stock type to deliver the products from |
42 | 42 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
43 | 43 | */ |
44 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
44 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
45 | 45 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
46 | - $stocktype = 'default' ) |
|
46 | + $stocktype = 'default') |
|
47 | 47 | { |
48 | 48 | $context = $this->getContext(); |
49 | - $productManager = \Aimeos\MShop\Factory::createManager( $context, 'product' ); |
|
50 | - $productItem = $productManager->getItem( $prodid, [], true ); |
|
49 | + $productManager = \Aimeos\MShop\Factory::createManager($context, 'product'); |
|
50 | + $productItem = $productManager->getItem($prodid, [], true); |
|
51 | 51 | |
52 | - if( $productItem->getType() !== 'bundle' ) |
|
52 | + if ($productItem->getType() !== 'bundle') |
|
53 | 53 | { |
54 | 54 | return $this->getController()->addProduct( |
55 | 55 | $prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds, |
@@ -57,30 +57,30 @@ discard block |
||
57 | 57 | ); |
58 | 58 | } |
59 | 59 | |
60 | - $productItem = $productManager->getItem( $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ), true ); |
|
60 | + $productItem = $productManager->getItem($prodid, array('media', 'supplier', 'price', 'product', 'text'), true); |
|
61 | 61 | |
62 | - $orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem(); |
|
63 | - $orderBaseProductItem->copyFrom( $productItem ); |
|
64 | - $orderBaseProductItem->setQuantity( $quantity ); |
|
65 | - $orderBaseProductItem->setStockType( $stocktype ); |
|
62 | + $orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem(); |
|
63 | + $orderBaseProductItem->copyFrom($productItem); |
|
64 | + $orderBaseProductItem->setQuantity($quantity); |
|
65 | + $orderBaseProductItem->setStockType($stocktype); |
|
66 | 66 | |
67 | - $prices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
68 | - $this->addBundleProducts( $orderBaseProductItem, $productItem, $variantAttributeIds, $stocktype ); |
|
67 | + $prices = $productItem->getRefItems('price', 'default', 'default'); |
|
68 | + $this->addBundleProducts($orderBaseProductItem, $productItem, $variantAttributeIds, $stocktype); |
|
69 | 69 | |
70 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
71 | - $price = $priceManager->getLowestPrice( $prices, $quantity ); |
|
70 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
71 | + $price = $priceManager->getLowestPrice($prices, $quantity); |
|
72 | 72 | |
73 | - $attr = $this->createOrderProductAttributes( $price, $prodid, $quantity, $configAttributeIds, 'config' ); |
|
74 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $hiddenAttributeIds, 'hidden' ) ); |
|
75 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) ); |
|
73 | + $attr = $this->createOrderProductAttributes($price, $prodid, $quantity, $configAttributeIds, 'config'); |
|
74 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $hiddenAttributeIds, 'hidden')); |
|
75 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues)); |
|
76 | 76 | |
77 | 77 | // remove product rebate of original price in favor to rebates granted for the order |
78 | - $price->setRebate( '0.00' ); |
|
78 | + $price->setRebate('0.00'); |
|
79 | 79 | |
80 | - $orderBaseProductItem->setPrice( $price ); |
|
81 | - $orderBaseProductItem->setAttributes( $attr ); |
|
80 | + $orderBaseProductItem->setPrice($price); |
|
81 | + $orderBaseProductItem->setAttributes($attr); |
|
82 | 82 | |
83 | - $this->getController()->get()->addProduct( $orderBaseProductItem ); |
|
83 | + $this->getController()->get()->addProduct($orderBaseProductItem); |
|
84 | 84 | $this->getController()->save(); |
85 | 85 | } |
86 | 86 | |
@@ -93,43 +93,43 @@ discard block |
||
93 | 93 | * @param array $variantAttributeIds List of product variant attribute IDs |
94 | 94 | * @param string $stocktype |
95 | 95 | */ |
96 | - protected function addBundleProducts( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
97 | - \Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $stocktype ) |
|
96 | + protected function addBundleProducts(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
97 | + \Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $stocktype) |
|
98 | 98 | { |
99 | 99 | $quantity = $orderBaseProductItem->getQuantity(); |
100 | 100 | $products = $subProductIds = $orderProducts = []; |
101 | - $orderProductManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/product' ); |
|
101 | + $orderProductManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/product'); |
|
102 | 102 | |
103 | - foreach( $productItem->getRefItems( 'product', null, 'default' ) as $item ) { |
|
103 | + foreach ($productItem->getRefItems('product', null, 'default') as $item) { |
|
104 | 104 | $subProductIds[] = $item->getId(); |
105 | 105 | } |
106 | 106 | |
107 | - if( count( $subProductIds ) > 0 ) |
|
107 | + if (count($subProductIds) > 0) |
|
108 | 108 | { |
109 | - $productManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' ); |
|
109 | + $productManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product'); |
|
110 | 110 | |
111 | - $search = $productManager->createSearch( true ); |
|
111 | + $search = $productManager->createSearch(true); |
|
112 | 112 | $expr = array( |
113 | - $search->compare( '==', 'product.id', $subProductIds ), |
|
113 | + $search->compare('==', 'product.id', $subProductIds), |
|
114 | 114 | $search->getConditions(), |
115 | 115 | ); |
116 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
116 | + $search->setConditions($search->combine('&&', $expr)); |
|
117 | 117 | |
118 | - $products = $productManager->searchItems( $search, array( 'attribute', 'media', 'price', 'text' ) ); |
|
118 | + $products = $productManager->searchItems($search, array('attribute', 'media', 'price', 'text')); |
|
119 | 119 | } |
120 | 120 | |
121 | - foreach( $products as $product ) |
|
121 | + foreach ($products as $product) |
|
122 | 122 | { |
123 | - $prices = $product->getRefItems( 'price', 'default', 'default' ); |
|
123 | + $prices = $product->getRefItems('price', 'default', 'default'); |
|
124 | 124 | |
125 | 125 | $orderProduct = $orderProductManager->createItem(); |
126 | - $orderProduct->copyFrom( $product ); |
|
127 | - $orderProduct->setStockType( $stocktype ); |
|
128 | - $orderProduct->setPrice( $this->calcPrice( $orderProduct, $prices, $quantity ) ); |
|
126 | + $orderProduct->copyFrom($product); |
|
127 | + $orderProduct->setStockType($stocktype); |
|
128 | + $orderProduct->setPrice($this->calcPrice($orderProduct, $prices, $quantity)); |
|
129 | 129 | |
130 | 130 | $orderProducts[] = $orderProduct; |
131 | 131 | } |
132 | 132 | |
133 | - $orderBaseProductItem->setProducts( $orderProducts ); |
|
133 | + $orderBaseProductItem->setProducts($orderProducts); |
|
134 | 134 | } |
135 | 135 | } |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | * @param string $stocktype Unique code of the stock type to deliver the products from |
42 | 42 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
43 | 43 | */ |
44 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
44 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
45 | 45 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
46 | - $stocktype = 'default' ) |
|
46 | + $stocktype = 'default') |
|
47 | 47 | { |
48 | 48 | $context = $this->getContext(); |
49 | - $productManager = \Aimeos\MShop\Factory::createManager( $context, 'product' ); |
|
50 | - $productItem = $productManager->getItem( $prodid, [], true ); |
|
49 | + $productManager = \Aimeos\MShop\Factory::createManager($context, 'product'); |
|
50 | + $productItem = $productManager->getItem($prodid, [], true); |
|
51 | 51 | |
52 | - if( $productItem->getType() !== 'select' ) |
|
52 | + if ($productItem->getType() !== 'select') |
|
53 | 53 | { |
54 | 54 | return $this->getController()->addProduct( |
55 | 55 | $prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds, |
@@ -57,31 +57,31 @@ discard block |
||
57 | 57 | ); |
58 | 58 | } |
59 | 59 | |
60 | - $productItem = $productManager->getItem( $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ), true ); |
|
60 | + $productItem = $productManager->getItem($prodid, array('media', 'supplier', 'price', 'product', 'text'), true); |
|
61 | 61 | |
62 | - $orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem(); |
|
63 | - $orderBaseProductItem->copyFrom( $productItem ); |
|
64 | - $orderBaseProductItem->setQuantity( $quantity ); |
|
65 | - $orderBaseProductItem->setStockType( $stocktype ); |
|
62 | + $orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem(); |
|
63 | + $orderBaseProductItem->copyFrom($productItem); |
|
64 | + $orderBaseProductItem->setQuantity($quantity); |
|
65 | + $orderBaseProductItem->setStockType($stocktype); |
|
66 | 66 | |
67 | - $prices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
68 | - $attr = $this->getVariantDetails( $orderBaseProductItem, $productItem, $prices, $variantAttributeIds, $options ); |
|
69 | - $prodIds = array( $prodid, $productItem->getId() ); |
|
67 | + $prices = $productItem->getRefItems('price', 'default', 'default'); |
|
68 | + $attr = $this->getVariantDetails($orderBaseProductItem, $productItem, $prices, $variantAttributeIds, $options); |
|
69 | + $prodIds = array($prodid, $productItem->getId()); |
|
70 | 70 | |
71 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
72 | - $price = $priceManager->getLowestPrice( $prices, $quantity ); |
|
71 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
72 | + $price = $priceManager->getLowestPrice($prices, $quantity); |
|
73 | 73 | |
74 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodIds, $quantity, $configAttributeIds, 'config' ) ); |
|
75 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodIds, $quantity, $hiddenAttributeIds, 'hidden' ) ); |
|
76 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodIds, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) ); |
|
74 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodIds, $quantity, $configAttributeIds, 'config')); |
|
75 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodIds, $quantity, $hiddenAttributeIds, 'hidden')); |
|
76 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodIds, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues)); |
|
77 | 77 | |
78 | 78 | // remove product rebate of original price in favor to rebates granted for the order |
79 | - $price->setRebate( '0.00' ); |
|
79 | + $price->setRebate('0.00'); |
|
80 | 80 | |
81 | - $orderBaseProductItem->setPrice( $price ); |
|
82 | - $orderBaseProductItem->setAttributes( $attr ); |
|
81 | + $orderBaseProductItem->setPrice($price); |
|
82 | + $orderBaseProductItem->setAttributes($attr); |
|
83 | 83 | |
84 | - $this->getController()->get()->addProduct( $orderBaseProductItem ); |
|
84 | + $this->getController()->get()->addProduct($orderBaseProductItem); |
|
85 | 85 | $this->getController()->save(); |
86 | 86 | } |
87 | 87 | |
@@ -97,50 +97,50 @@ discard block |
||
97 | 97 | * @return \Aimeos\MShop\Order\Item\Base\Product\Attribute\Iface[] List of order product attributes |
98 | 98 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If no product variant is found |
99 | 99 | */ |
100 | - protected function getVariantDetails( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
101 | - \Aimeos\MShop\Product\Item\Iface &$productItem, array &$prices, array $variantAttributeIds, array $options ) |
|
100 | + protected function getVariantDetails(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem, |
|
101 | + \Aimeos\MShop\Product\Item\Iface & $productItem, array &$prices, array $variantAttributeIds, array $options) |
|
102 | 102 | { |
103 | 103 | $attr = []; |
104 | - $productItems = $this->getProductVariants( $productItem, $variantAttributeIds ); |
|
104 | + $productItems = $this->getProductVariants($productItem, $variantAttributeIds); |
|
105 | 105 | |
106 | - if( count( $productItems ) > 1 ) |
|
106 | + if (count($productItems) > 1) |
|
107 | 107 | { |
108 | - $msg = sprintf( 'No unique article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
|
109 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
108 | + $msg = sprintf('No unique article found for selected attributes and product ID "%1$s"', $productItem->getId()); |
|
109 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
110 | 110 | } |
111 | - else if( ( $result = reset( $productItems ) ) !== false ) // count == 1 |
|
111 | + else if (($result = reset($productItems)) !== false) // count == 1 |
|
112 | 112 | { |
113 | 113 | $productItem = $result; |
114 | - $orderBaseProductItem->setProductCode( $productItem->getCode() ); |
|
114 | + $orderBaseProductItem->setProductCode($productItem->getCode()); |
|
115 | 115 | |
116 | - $subprices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
116 | + $subprices = $productItem->getRefItems('price', 'default', 'default'); |
|
117 | 117 | |
118 | - if( !empty( $subprices ) ) { |
|
118 | + if (!empty($subprices)) { |
|
119 | 119 | $prices = $subprices; |
120 | 120 | } |
121 | 121 | |
122 | - $submedia = $productItem->getRefItems( 'media', 'default', 'default' ); |
|
122 | + $submedia = $productItem->getRefItems('media', 'default', 'default'); |
|
123 | 123 | |
124 | - if( ( $mediaItem = reset( $submedia ) ) !== false ) { |
|
125 | - $orderBaseProductItem->setMediaUrl( $mediaItem->getPreview() ); |
|
124 | + if (($mediaItem = reset($submedia)) !== false) { |
|
125 | + $orderBaseProductItem->setMediaUrl($mediaItem->getPreview()); |
|
126 | 126 | } |
127 | 127 | |
128 | - $orderProductAttrManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/product/attribute' ); |
|
129 | - $variantAttributes = $productItem->getRefItems( 'attribute', null, 'variant' ); |
|
128 | + $orderProductAttrManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/product/attribute'); |
|
129 | + $variantAttributes = $productItem->getRefItems('attribute', null, 'variant'); |
|
130 | 130 | |
131 | - foreach( $this->getAttributes( array_keys( $variantAttributes ), array( 'text' ) ) as $attrItem ) |
|
131 | + foreach ($this->getAttributes(array_keys($variantAttributes), array('text')) as $attrItem) |
|
132 | 132 | { |
133 | 133 | $orderAttributeItem = $orderProductAttrManager->createItem(); |
134 | - $orderAttributeItem->copyFrom( $attrItem ); |
|
135 | - $orderAttributeItem->setType( 'variant' ); |
|
134 | + $orderAttributeItem->copyFrom($attrItem); |
|
135 | + $orderAttributeItem->setType('variant'); |
|
136 | 136 | |
137 | 137 | $attr[] = $orderAttributeItem; |
138 | 138 | } |
139 | 139 | } |
140 | - else if( !isset( $options['variant'] ) || $options['variant'] != false ) // count == 0 |
|
140 | + else if (!isset($options['variant']) || $options['variant'] != false) // count == 0 |
|
141 | 141 | { |
142 | - $msg = sprintf( 'No article found for selected attributes and product ID "%1$s"', $productItem->getId() ); |
|
143 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
142 | + $msg = sprintf('No article found for selected attributes and product ID "%1$s"', $productItem->getId()); |
|
143 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return $attr; |
@@ -41,27 +41,27 @@ |
||
41 | 41 | * @param string $stocktype Unique code of the stock type to deliver the products from |
42 | 42 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
43 | 43 | */ |
44 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
44 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
45 | 45 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
46 | - $stocktype = 'default' ) |
|
46 | + $stocktype = 'default') |
|
47 | 47 | { |
48 | - $catalogListManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog/lists' ); |
|
48 | + $catalogListManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog/lists'); |
|
49 | 49 | |
50 | - $search = $catalogListManager->createSearch( true ); |
|
50 | + $search = $catalogListManager->createSearch(true); |
|
51 | 51 | $expr = array( |
52 | - $search->compare( '==', 'catalog.lists.domain', 'product' ), |
|
53 | - $search->compare( '==', 'catalog.lists.refid', $prodid ), |
|
52 | + $search->compare('==', 'catalog.lists.domain', 'product'), |
|
53 | + $search->compare('==', 'catalog.lists.refid', $prodid), |
|
54 | 54 | $search->getConditions() |
55 | 55 | ); |
56 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
57 | - $search->setSlice( 0, 1 ); |
|
56 | + $search->setConditions($search->combine('&&', $expr)); |
|
57 | + $search->setSlice(0, 1); |
|
58 | 58 | |
59 | - $result = $catalogListManager->searchItems( $search ); |
|
59 | + $result = $catalogListManager->searchItems($search); |
|
60 | 60 | |
61 | - if( reset( $result ) === false ) |
|
61 | + if (reset($result) === false) |
|
62 | 62 | { |
63 | - $msg = sprintf( 'Adding product with ID "%1$s" is not allowed', $prodid ); |
|
64 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
63 | + $msg = sprintf('Adding product with ID "%1$s" is not allowed', $prodid); |
|
64 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $this->getController()->addProduct( |
@@ -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 |