@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function getPostDependencies() |
42 | 42 | { |
43 | - return array( 'TablesCreateLaravel' ); |
|
43 | + return array('TablesCreateLaravel'); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | protected function mysql() |
51 | 51 | { |
52 | - $this->process( $this->mysql ); |
|
52 | + $this->process($this->mysql); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | |
@@ -58,22 +58,22 @@ discard block |
||
58 | 58 | * |
59 | 59 | * array string $stmts List of SQL statements for changing the columns |
60 | 60 | */ |
61 | - protected function process( array $stmts ) |
|
61 | + protected function process(array $stmts) |
|
62 | 62 | { |
63 | 63 | $table = 'users_address'; |
64 | - $this->msg( sprintf( 'Rename "refid" to "parentid" in table "%1$s"', $table ), 0 ); $this->status( '' ); |
|
64 | + $this->msg(sprintf('Rename "refid" to "parentid" in table "%1$s"', $table), 0); $this->status(''); |
|
65 | 65 | |
66 | - foreach( $stmts as $column => $stmts ) |
|
66 | + foreach ($stmts as $column => $stmts) |
|
67 | 67 | { |
68 | - $this->msg( sprintf( 'Checking column "%1$s"', $column ), 1 ); |
|
68 | + $this->msg(sprintf('Checking column "%1$s"', $column), 1); |
|
69 | 69 | |
70 | - if( $this->schema->tableExists( $table ) |
|
71 | - && $this->schema->columnExists( $table, $column ) === true |
|
70 | + if ($this->schema->tableExists($table) |
|
71 | + && $this->schema->columnExists($table, $column) === true |
|
72 | 72 | ) { |
73 | - $this->executeList( $stmts ); |
|
74 | - $this->status( 'done' ); |
|
73 | + $this->executeList($stmts); |
|
74 | + $this->status('done'); |
|
75 | 75 | } else { |
76 | - $this->status( 'OK' ); |
|
76 | + $this->status('OK'); |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function getPostDependencies() |
23 | 23 | { |
24 | - return array( 'MShopAddTypeData' ); |
|
24 | + return array('MShopAddTypeData'); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | |
@@ -30,15 +30,15 @@ discard block |
||
30 | 30 | */ |
31 | 31 | protected function mysql() |
32 | 32 | { |
33 | - $this->msg( 'Creating Aimeos Laravel user tables', 0 ); |
|
34 | - $this->status( '' ); |
|
33 | + $this->msg('Creating Aimeos Laravel user tables', 0); |
|
34 | + $this->status(''); |
|
35 | 35 | |
36 | 36 | $ds = DIRECTORY_SEPARATOR; |
37 | 37 | |
38 | 38 | $files = array( |
39 | - 'db-customer' => __DIR__ . $ds . 'default' . $ds . 'schema' . $ds . 'mysql' . $ds . 'customer.sql', |
|
39 | + 'db-customer' => __DIR__.$ds.'default'.$ds.'schema'.$ds.'mysql'.$ds.'customer.sql', |
|
40 | 40 | ); |
41 | 41 | |
42 | - $this->setup( $files ); |
|
42 | + $this->setup($files); |
|
43 | 43 | } |
44 | 44 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function getPreDependencies() |
24 | 24 | { |
25 | - return array( 'TablesCreateLaravel', 'CustomerAddLaravelTestData', 'LocaleAddTestData', 'TextAddTestData' ); |
|
25 | + return array('TablesCreateLaravel', 'CustomerAddLaravelTestData', 'LocaleAddTestData', 'TextAddTestData'); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -32,29 +32,29 @@ discard block |
||
32 | 32 | protected function process() |
33 | 33 | { |
34 | 34 | $iface = '\\Aimeos\\MShop\\Context\\Item\\Iface'; |
35 | - if( !( $this->additional instanceof $iface ) ) { |
|
36 | - throw new \Aimeos\MW\Setup\Exception( sprintf( 'Additionally provided object is not of type "%1$s"', $iface ) ); |
|
35 | + if (!($this->additional instanceof $iface)) { |
|
36 | + throw new \Aimeos\MW\Setup\Exception(sprintf('Additionally provided object is not of type "%1$s"', $iface)); |
|
37 | 37 | } |
38 | 38 | |
39 | - $this->msg( 'Adding customer-list Laravel test data', 0 ); |
|
40 | - $this->additional->setEditor( 'ai-laravel:unittest' ); |
|
39 | + $this->msg('Adding customer-list Laravel test data', 0); |
|
40 | + $this->additional->setEditor('ai-laravel:unittest'); |
|
41 | 41 | |
42 | 42 | $ds = DIRECTORY_SEPARATOR; |
43 | - $path = __DIR__ . $ds . 'data' . $ds . 'customer-list.php'; |
|
43 | + $path = __DIR__.$ds.'data'.$ds.'customer-list.php'; |
|
44 | 44 | |
45 | - if( ( $testdata = include( $path ) ) == false ){ |
|
46 | - throw new \Aimeos\MShop\Exception( sprintf( 'No file "%1$s" found for customer list domain', $path ) ); |
|
45 | + if (($testdata = include($path)) == false) { |
|
46 | + throw new \Aimeos\MShop\Exception(sprintf('No file "%1$s" found for customer list domain', $path)); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | $refKeys = array(); |
50 | - foreach( $testdata['customer/lists'] as $dataset ) { |
|
51 | - $refKeys[ $dataset['domain'] ][] = $dataset['refid']; |
|
50 | + foreach ($testdata['customer/lists'] as $dataset) { |
|
51 | + $refKeys[$dataset['domain']][] = $dataset['refid']; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | $refIds = array(); |
55 | - $refIds['text'] = $this->getTextData( $refKeys['text'] ); |
|
56 | - $this->addCustomerListData( $testdata, $refIds, 'Laravel' ); |
|
55 | + $refIds['text'] = $this->getTextData($refKeys['text']); |
|
56 | + $this->addCustomerListData($testdata, $refIds, 'Laravel'); |
|
57 | 57 | |
58 | - $this->status( 'done' ); |
|
58 | + $this->status('done'); |
|
59 | 59 | } |
60 | 60 | } |
61 | 61 | \ No newline at end of file |
@@ -5,17 +5,17 @@ |
||
5 | 5 | * @copyright Aimeos (aimeos.org), 2014 |
6 | 6 | */ |
7 | 7 | |
8 | -return array ( |
|
9 | - 'customer' => array ( |
|
10 | - 'customer/unitCustomer1' => array( 'label' => 'Max Mustermann', 'code' => 'unitCustomer1', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Max', 'lastname' => 'Mustermann', 'address1' => 'Musterstraße', 'address2' => '1a', 'address3' => '', 'postal' => '20001', 'city' => 'Musterstadt', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234567890', 'email' => '[email protected]', 'telefax' => '01234567890', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1', 'password' => 'unittest' ), |
|
11 | - 'customer/unitCustomer2' => array( 'label' => 'Erika Mustermann', 'code' => 'unitCustomer2', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mrs', 'title' => 'Prof. Dr.', 'firstname' => 'Erika', 'lastname' => 'Mustermann', 'address1' => 'Heidestraße', 'address2' => '17', 'address3' => '', 'postal' => '45632', 'city' => 'Köln', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '09876543210', 'email' => '[email protected]', 'telefax' => '09876543210', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '0' ), |
|
12 | - 'customer/unitCustomer3' => array( 'label' => 'Franz-Xaver Gabler', 'code' => 'unitCustomer3', 'status' => 0, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => '', 'firstname' => 'Franz-Xaver', 'lastname' => 'Gabler', 'address1' => 'Phantasiestraße', 'address2' => '2', 'address3' => '', 'postal' => '23643', 'city' => 'Berlin', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234509876', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1' ), |
|
8 | +return array( |
|
9 | + 'customer' => array( |
|
10 | + 'customer/unitCustomer1' => array('label' => 'Max Mustermann', 'code' => 'unitCustomer1', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Max', 'lastname' => 'Mustermann', 'address1' => 'Musterstraße', 'address2' => '1a', 'address3' => '', 'postal' => '20001', 'city' => 'Musterstadt', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234567890', 'email' => '[email protected]', 'telefax' => '01234567890', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1', 'password' => 'unittest'), |
|
11 | + 'customer/unitCustomer2' => array('label' => 'Erika Mustermann', 'code' => 'unitCustomer2', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mrs', 'title' => 'Prof. Dr.', 'firstname' => 'Erika', 'lastname' => 'Mustermann', 'address1' => 'Heidestraße', 'address2' => '17', 'address3' => '', 'postal' => '45632', 'city' => 'Köln', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '09876543210', 'email' => '[email protected]', 'telefax' => '09876543210', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '0'), |
|
12 | + 'customer/unitCustomer3' => array('label' => 'Franz-Xaver Gabler', 'code' => 'unitCustomer3', 'status' => 0, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => '', 'firstname' => 'Franz-Xaver', 'lastname' => 'Gabler', 'address1' => 'Phantasiestraße', 'address2' => '2', 'address3' => '', 'postal' => '23643', 'city' => 'Berlin', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234509876', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1'), |
|
13 | 13 | ), |
14 | 14 | |
15 | - 'customer/address' => array ( |
|
16 | - array ( 'parentid' => 'customer/unitCustomer1', 'company' => 'ABC', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Our', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '0' ), |
|
17 | - array ( 'parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1' ), |
|
18 | - array ( 'parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '11099', 'city' => 'Berlin', 'state' => 'Berlin', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332221', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1' ), |
|
19 | - array ( 'parentid' => 'customer/unitCustomer3', 'company' => 'unitcompany', 'vatid' => 'DE999999999', 'salutation' => 'company', 'title' => 'unittitle', 'firstname' => 'unitfirstname', 'lastname' => 'unitlastname', 'address1' => 'unitaddress1', 'address2' => 'unitaddress2', 'address3' => 'unitaddress3', 'postal' => 'unitpostal', 'city' => 'unitcity', 'state' => 'unitstate', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '1234567890', 'email' => '[email protected]', 'telefax' => '1234567891', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '2' ), |
|
15 | + 'customer/address' => array( |
|
16 | + array('parentid' => 'customer/unitCustomer1', 'company' => 'ABC', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Our', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '0'), |
|
17 | + array('parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1'), |
|
18 | + array('parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '11099', 'city' => 'Berlin', 'state' => 'Berlin', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332221', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1'), |
|
19 | + array('parentid' => 'customer/unitCustomer3', 'company' => 'unitcompany', 'vatid' => 'DE999999999', 'salutation' => 'company', 'title' => 'unittitle', 'firstname' => 'unitfirstname', 'lastname' => 'unitlastname', 'address1' => 'unitaddress1', 'address2' => 'unitaddress2', 'address3' => 'unitaddress3', 'postal' => 'unitpostal', 'city' => 'unitcity', 'state' => 'unitstate', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '1234567890', 'email' => '[email protected]', 'telefax' => '1234567891', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '2'), |
|
20 | 20 | ), |
21 | 21 | ); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | 'label' => 'Customer address ID', |
27 | 27 | 'code' => 'customer.address.id', |
28 | 28 | 'internalcode' => 'lvuad."id"', |
29 | - 'internaldeps' => array( 'LEFT JOIN "users_address" AS lvuad ON ( lvu."id" = lvuad."parentid" )' ), |
|
29 | + 'internaldeps' => array('LEFT JOIN "users_address" AS lvuad ON ( lvu."id" = lvuad."parentid" )'), |
|
30 | 30 | 'type' => 'integer', |
31 | 31 | 'internaltype' => \Aimeos\MW\DB\Statement\Base::PARAM_INT, |
32 | 32 | 'public' => false, |
@@ -209,11 +209,11 @@ discard block |
||
209 | 209 | * |
210 | 210 | * @param array $siteids List of IDs for sites whose entries should be deleted |
211 | 211 | */ |
212 | - public function cleanup( array $siteids ) |
|
212 | + public function cleanup(array $siteids) |
|
213 | 213 | { |
214 | 214 | $path = 'mshop/customer/manager/address/submanagers'; |
215 | - foreach( $this->getContext()->getConfig()->get( $path, array() ) as $domain ) { |
|
216 | - $this->getSubManager( $domain )->cleanup( $siteids ); |
|
215 | + foreach ($this->getContext()->getConfig()->get($path, array()) as $domain) { |
|
216 | + $this->getSubManager($domain)->cleanup($siteids); |
|
217 | 217 | } |
218 | 218 | } |
219 | 219 | |
@@ -223,10 +223,10 @@ discard block |
||
223 | 223 | * |
224 | 224 | * @param array $ids List of IDs |
225 | 225 | */ |
226 | - public function deleteItems( array $ids ) |
|
226 | + public function deleteItems(array $ids) |
|
227 | 227 | { |
228 | 228 | $path = 'mshop/customer/manager/address/laravel/delete'; |
229 | - $this->deleteItemsBase( $ids, $path, false ); |
|
229 | + $this->deleteItemsBase($ids, $path, false); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -236,11 +236,11 @@ discard block |
||
236 | 236 | * @param boolean $withsub Return also attributes of sub-managers if true |
237 | 237 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
238 | 238 | */ |
239 | - public function getSearchAttributes( $withsub = true ) |
|
239 | + public function getSearchAttributes($withsub = true) |
|
240 | 240 | { |
241 | 241 | $path = 'mshop/customer/manager/address/submanagers'; |
242 | 242 | |
243 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, array(), $withsub ); |
|
243 | + return $this->getSearchAttributesBase($this->searchConfig, $path, array(), $withsub); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | |
@@ -251,9 +251,9 @@ discard block |
||
251 | 251 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
252 | 252 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
253 | 253 | */ |
254 | - public function getSubManager( $manager, $name = null ) |
|
254 | + public function getSubManager($manager, $name = null) |
|
255 | 255 | { |
256 | - return $this->getSubManagerBase( 'customer', 'address/' . $manager, ( $name === null ? 'Laravel' : $name ) ); |
|
256 | + return $this->getSubManagerBase('customer', 'address/'.$manager, ($name === null ? 'Laravel' : $name)); |
|
257 | 257 | } |
258 | 258 | |
259 | 259 |
@@ -226,11 +226,11 @@ discard block |
||
226 | 226 | * |
227 | 227 | * @param array $siteids List of IDs for sites whose entries should be deleted |
228 | 228 | */ |
229 | - public function cleanup( array $siteids ) |
|
229 | + public function cleanup(array $siteids) |
|
230 | 230 | { |
231 | 231 | $path = 'mshop/customer/manager/submanagers'; |
232 | - foreach( $this->getContext()->getConfig()->get( $path, array( 'address', 'lists' ) ) as $domain ) { |
|
233 | - $this->getSubManager( $domain )->cleanup( $siteids ); |
|
232 | + foreach ($this->getContext()->getConfig()->get($path, array('address', 'lists')) as $domain) { |
|
233 | + $this->getSubManager($domain)->cleanup($siteids); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | |
@@ -251,10 +251,10 @@ discard block |
||
251 | 251 | * |
252 | 252 | * @param array $ids List of IDs |
253 | 253 | */ |
254 | - public function deleteItems( array $ids ) |
|
254 | + public function deleteItems(array $ids) |
|
255 | 255 | { |
256 | 256 | $path = 'mshop/customer/manager/laravel/delete'; |
257 | - $this->deleteItemsBase( $ids, $path, false ); |
|
257 | + $this->deleteItemsBase($ids, $path, false); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | |
@@ -264,11 +264,11 @@ discard block |
||
264 | 264 | * @param boolean $withsub Return also attributes of sub-managers if true |
265 | 265 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
266 | 266 | */ |
267 | - public function getSearchAttributes( $withsub = true ) |
|
267 | + public function getSearchAttributes($withsub = true) |
|
268 | 268 | { |
269 | 269 | $path = 'mshop/customer/manager/submanagers'; |
270 | 270 | |
271 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, array( 'address', 'lists' ), $withsub ); |
|
271 | + return $this->getSearchAttributesBase($this->searchConfig, $path, array('address', 'lists'), $withsub); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | |
@@ -278,27 +278,27 @@ discard block |
||
278 | 278 | * @param \Aimeos\MShop\Customer\Item\Iface $item Customer item object |
279 | 279 | * @param boolean $fetch True if the new ID should be returned in the item |
280 | 280 | */ |
281 | - public function saveItem( \Aimeos\MShop\Common\Item\Iface $item, $fetch = true ) |
|
281 | + public function saveItem(\Aimeos\MShop\Common\Item\Iface $item, $fetch = true) |
|
282 | 282 | { |
283 | 283 | $iface = '\\Aimeos\\MShop\\Customer\\Item\\Iface'; |
284 | - if( !( $item instanceof $iface ) ) { |
|
285 | - throw new \Aimeos\MShop\Customer\Exception( sprintf( 'Object is not of required type "%1$s"', $iface ) ); |
|
284 | + if (!($item instanceof $iface)) { |
|
285 | + throw new \Aimeos\MShop\Customer\Exception(sprintf('Object is not of required type "%1$s"', $iface)); |
|
286 | 286 | } |
287 | 287 | |
288 | - if( !$item->isModified() ) { return; } |
|
288 | + if (!$item->isModified()) { return; } |
|
289 | 289 | |
290 | 290 | $context = $this->getContext(); |
291 | 291 | $dbm = $context->getDatabaseManager(); |
292 | 292 | $dbname = $this->getResourceName(); |
293 | - $conn = $dbm->acquire( $dbname ); |
|
293 | + $conn = $dbm->acquire($dbname); |
|
294 | 294 | |
295 | 295 | try |
296 | 296 | { |
297 | 297 | $id = $item->getId(); |
298 | - $date = date( 'Y-m-d H:i:s' ); |
|
298 | + $date = date('Y-m-d H:i:s'); |
|
299 | 299 | $billingAddress = $item->getPaymentAddress(); |
300 | 300 | |
301 | - if( $id === null ) |
|
301 | + if ($id === null) |
|
302 | 302 | { |
303 | 303 | /** mshop/customer/manager/laravel/insert |
304 | 304 | * Inserts a new customer record into the database table |
@@ -362,45 +362,45 @@ discard block |
||
362 | 362 | $path = 'mshop/customer/manager/laravel/update'; |
363 | 363 | } |
364 | 364 | |
365 | - $stmt = $this->getCachedStatement( $conn, $path ); |
|
366 | - |
|
367 | - $stmt->bind( 1, $item->getCode() ); |
|
368 | - $stmt->bind( 2, $billingAddress->getCompany() ); |
|
369 | - $stmt->bind( 3, $billingAddress->getVatID() ); |
|
370 | - $stmt->bind( 4, $billingAddress->getSalutation() ); |
|
371 | - $stmt->bind( 5, $billingAddress->getTitle() ); |
|
372 | - $stmt->bind( 6, $billingAddress->getFirstname() ); |
|
373 | - $stmt->bind( 7, $billingAddress->getLastname() ); |
|
374 | - $stmt->bind( 8, $billingAddress->getAddress1() ); |
|
375 | - $stmt->bind( 9, $billingAddress->getAddress2() ); |
|
376 | - $stmt->bind( 10, $billingAddress->getAddress3() ); |
|
377 | - $stmt->bind( 11, $billingAddress->getPostal() ); |
|
378 | - $stmt->bind( 12, $billingAddress->getCity() ); |
|
379 | - $stmt->bind( 13, $billingAddress->getState() ); |
|
380 | - $stmt->bind( 14, $billingAddress->getCountryId() ); |
|
381 | - $stmt->bind( 15, $billingAddress->getLanguageId() ); |
|
382 | - $stmt->bind( 16, $billingAddress->getTelephone() ); |
|
383 | - $stmt->bind( 17, $billingAddress->getTelefax() ); |
|
384 | - $stmt->bind( 18, $billingAddress->getWebsite() ); |
|
385 | - $stmt->bind( 19, $billingAddress->getEmail() ); |
|
386 | - $stmt->bind( 20, $item->getLabel() ); |
|
387 | - $stmt->bind( 21, $item->getBirthday() ); |
|
388 | - $stmt->bind( 22, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
389 | - $stmt->bind( 23, $item->getDateVerified() ); |
|
390 | - $stmt->bind( 24, $item->getPassword() ); |
|
391 | - $stmt->bind( 25, $date ); // Modification time |
|
392 | - $stmt->bind( 26, $context->getEditor() ); |
|
393 | - |
|
394 | - if( $id !== null ) { |
|
395 | - $stmt->bind( 27, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
396 | - $item->setId( $id ); |
|
365 | + $stmt = $this->getCachedStatement($conn, $path); |
|
366 | + |
|
367 | + $stmt->bind(1, $item->getCode()); |
|
368 | + $stmt->bind(2, $billingAddress->getCompany()); |
|
369 | + $stmt->bind(3, $billingAddress->getVatID()); |
|
370 | + $stmt->bind(4, $billingAddress->getSalutation()); |
|
371 | + $stmt->bind(5, $billingAddress->getTitle()); |
|
372 | + $stmt->bind(6, $billingAddress->getFirstname()); |
|
373 | + $stmt->bind(7, $billingAddress->getLastname()); |
|
374 | + $stmt->bind(8, $billingAddress->getAddress1()); |
|
375 | + $stmt->bind(9, $billingAddress->getAddress2()); |
|
376 | + $stmt->bind(10, $billingAddress->getAddress3()); |
|
377 | + $stmt->bind(11, $billingAddress->getPostal()); |
|
378 | + $stmt->bind(12, $billingAddress->getCity()); |
|
379 | + $stmt->bind(13, $billingAddress->getState()); |
|
380 | + $stmt->bind(14, $billingAddress->getCountryId()); |
|
381 | + $stmt->bind(15, $billingAddress->getLanguageId()); |
|
382 | + $stmt->bind(16, $billingAddress->getTelephone()); |
|
383 | + $stmt->bind(17, $billingAddress->getTelefax()); |
|
384 | + $stmt->bind(18, $billingAddress->getWebsite()); |
|
385 | + $stmt->bind(19, $billingAddress->getEmail()); |
|
386 | + $stmt->bind(20, $item->getLabel()); |
|
387 | + $stmt->bind(21, $item->getBirthday()); |
|
388 | + $stmt->bind(22, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
389 | + $stmt->bind(23, $item->getDateVerified()); |
|
390 | + $stmt->bind(24, $item->getPassword()); |
|
391 | + $stmt->bind(25, $date); // Modification time |
|
392 | + $stmt->bind(26, $context->getEditor()); |
|
393 | + |
|
394 | + if ($id !== null) { |
|
395 | + $stmt->bind(27, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
396 | + $item->setId($id); |
|
397 | 397 | } else { |
398 | - $stmt->bind( 27, $date ); // Creation time |
|
398 | + $stmt->bind(27, $date); // Creation time |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | $stmt->execute()->finish(); |
402 | 402 | |
403 | - if( $id === null && $fetch === true ) |
|
403 | + if ($id === null && $fetch === true) |
|
404 | 404 | { |
405 | 405 | /** mshop/customer/manager/laravel/newid |
406 | 406 | * Retrieves the ID generated by the database when inserting a new record |
@@ -433,14 +433,14 @@ discard block |
||
433 | 433 | * @see mshop/customer/manager/laravel/count |
434 | 434 | */ |
435 | 435 | $path = 'mshop/customer/manager/laravel/newid'; |
436 | - $item->setId( $this->newId( $conn, $path ) ); |
|
436 | + $item->setId($this->newId($conn, $path)); |
|
437 | 437 | } |
438 | 438 | |
439 | - $dbm->release( $conn, $dbname ); |
|
439 | + $dbm->release($conn, $dbname); |
|
440 | 440 | } |
441 | - catch( \Exception $e ) |
|
441 | + catch (\Exception $e) |
|
442 | 442 | { |
443 | - $dbm->release( $conn, $dbname ); |
|
443 | + $dbm->release($conn, $dbname); |
|
444 | 444 | throw $e; |
445 | 445 | } |
446 | 446 | } |
@@ -454,11 +454,11 @@ discard block |
||
454 | 454 | * @return array List of items implementing \Aimeos\MShop\Customer\Item\Iface |
455 | 455 | * @throws \Aimeos\MShop\Customer\Exception If creating items failed |
456 | 456 | */ |
457 | - public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null ) |
|
457 | + public function searchItems(\Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null) |
|
458 | 458 | { |
459 | 459 | $dbm = $this->getContext()->getDatabaseManager(); |
460 | 460 | $dbname = $this->getResourceName(); |
461 | - $conn = $dbm->acquire( $dbname ); |
|
461 | + $conn = $dbm->acquire($dbname); |
|
462 | 462 | $map = array(); |
463 | 463 | |
464 | 464 | try |
@@ -466,22 +466,22 @@ discard block |
||
466 | 466 | $level = \Aimeos\MShop\Locale\Manager\Base::SITE_ALL; |
467 | 467 | $cfgPathSearch = 'mshop/customer/manager/laravel/search'; |
468 | 468 | $cfgPathCount = 'mshop/customer/manager/laravel/count'; |
469 | - $required = array( 'customer' ); |
|
469 | + $required = array('customer'); |
|
470 | 470 | |
471 | - $results = $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level ); |
|
472 | - while( ( $row = $results->fetch() ) !== false ) { |
|
473 | - $map[ $row['customer.id'] ] = $row; |
|
471 | + $results = $this->searchItemsBase($conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level); |
|
472 | + while (($row = $results->fetch()) !== false) { |
|
473 | + $map[$row['customer.id']] = $row; |
|
474 | 474 | } |
475 | 475 | |
476 | - $dbm->release( $conn, $dbname ); |
|
476 | + $dbm->release($conn, $dbname); |
|
477 | 477 | } |
478 | - catch( \Exception $e ) |
|
478 | + catch (\Exception $e) |
|
479 | 479 | { |
480 | - $dbm->release( $conn, $dbname ); |
|
480 | + $dbm->release($conn, $dbname); |
|
481 | 481 | throw $e; |
482 | 482 | } |
483 | 483 | |
484 | - return $this->buildItems( $map, $ref, 'customer' ); |
|
484 | + return $this->buildItems($map, $ref, 'customer'); |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | |
@@ -492,8 +492,8 @@ discard block |
||
492 | 492 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
493 | 493 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
494 | 494 | */ |
495 | - public function getSubManager( $manager, $name = null ) |
|
495 | + public function getSubManager($manager, $name = null) |
|
496 | 496 | { |
497 | - return $this->getSubManagerBase( 'customer', $manager, ( $name === null ? 'Laravel' : $name ) ); |
|
497 | + return $this->getSubManagerBase('customer', $manager, ($name === null ? 'Laravel' : $name)); |
|
498 | 498 | } |
499 | 499 | } |
@@ -330,8 +330,7 @@ discard block |
||
330 | 330 | * @see mshop/customer/manager/laravel/count |
331 | 331 | */ |
332 | 332 | $path = 'mshop/customer/manager/laravel/insert'; |
333 | - } |
|
334 | - else |
|
333 | + } else |
|
335 | 334 | { |
336 | 335 | /** mshop/customer/manager/laravel/update |
337 | 336 | * Updates an existing customer record in the database |
@@ -437,8 +436,7 @@ discard block |
||
437 | 436 | } |
438 | 437 | |
439 | 438 | $dbm->release( $conn, $dbname ); |
440 | - } |
|
441 | - catch( \Exception $e ) |
|
439 | + } catch( \Exception $e ) |
|
442 | 440 | { |
443 | 441 | $dbm->release( $conn, $dbname ); |
444 | 442 | throw $e; |
@@ -474,8 +472,7 @@ discard block |
||
474 | 472 | } |
475 | 473 | |
476 | 474 | $dbm->release( $conn, $dbname ); |
477 | - } |
|
478 | - catch( \Exception $e ) |
|
475 | + } catch( \Exception $e ) |
|
479 | 476 | { |
480 | 477 | $dbm->release( $conn, $dbname ); |
481 | 478 | throw $e; |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | 'customer.lists.id'=> array( |
26 | 26 | 'code'=>'customer.lists.id', |
27 | 27 | 'internalcode'=>'lvuli."id"', |
28 | - 'internaldeps' => array( 'LEFT JOIN "users_list" AS lvuli ON ( lvu."id" = lvuli."parentid" )' ), |
|
28 | + 'internaldeps' => array('LEFT JOIN "users_list" AS lvuli ON ( lvu."id" = lvuli."parentid" )'), |
|
29 | 29 | 'label'=>'Customer list ID', |
30 | 30 | 'type'=> 'integer', |
31 | 31 | 'internaltype'=> \Aimeos\MW\DB\Statement\Base::PARAM_INT, |
@@ -133,14 +133,14 @@ discard block |
||
133 | 133 | * |
134 | 134 | * @param array $siteids List of IDs for sites whose entries should be deleted |
135 | 135 | */ |
136 | - public function cleanup( array $siteids ) |
|
136 | + public function cleanup(array $siteids) |
|
137 | 137 | { |
138 | 138 | $path = 'mshop/customer/manager/lists/submanagers'; |
139 | - foreach( $this->getContext()->getConfig()->get( $path, array( 'type' ) ) as $domain ) { |
|
140 | - $this->getSubManager( $domain )->cleanup( $siteids ); |
|
139 | + foreach ($this->getContext()->getConfig()->get($path, array('type')) as $domain) { |
|
140 | + $this->getSubManager($domain)->cleanup($siteids); |
|
141 | 141 | } |
142 | 142 | |
143 | - $this->cleanupBase( $siteids, 'mshop/customer/manager/lists/laravel/delete' ); |
|
143 | + $this->cleanupBase($siteids, 'mshop/customer/manager/lists/laravel/delete'); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | * @param boolean $withsub Return also attributes of sub-managers if true |
151 | 151 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
152 | 152 | */ |
153 | - public function getSearchAttributes( $withsub = true ) |
|
153 | + public function getSearchAttributes($withsub = true) |
|
154 | 154 | { |
155 | 155 | $path = 'mshop/customer/manager/lists/submanagers'; |
156 | 156 | |
157 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, array( 'type' ), $withsub ); |
|
157 | + return $this->getSearchAttributesBase($this->searchConfig, $path, array('type'), $withsub); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | |
@@ -165,9 +165,9 @@ discard block |
||
165 | 165 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
166 | 166 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
167 | 167 | */ |
168 | - public function getSubManager( $manager, $name = null ) |
|
168 | + public function getSubManager($manager, $name = null) |
|
169 | 169 | { |
170 | - return $this->getSubManagerBase( 'customer', 'lists/' . $manager, ( $name === null ? 'Laravel' : $name ) ); |
|
170 | + return $this->getSubManagerBase('customer', 'lists/'.$manager, ($name === null ? 'Laravel' : $name)); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | 'customer.lists.type.id' => array( |
26 | 26 | 'code'=>'customer.lists.type.id', |
27 | 27 | 'internalcode'=>'lvulity."id"', |
28 | - 'internaldeps'=>array( 'LEFT JOIN "users_list_type" AS lvulity ON ( lvuli."typeid" = lvulity."id" )' ), |
|
28 | + 'internaldeps'=>array('LEFT JOIN "users_list_type" AS lvulity ON ( lvuli."typeid" = lvulity."id" )'), |
|
29 | 29 | 'label'=>'Customer list type ID', |
30 | 30 | 'type'=> 'integer', |
31 | 31 | 'internaltype' => \Aimeos\MW\DB\Statement\Base::PARAM_INT, |
@@ -96,14 +96,14 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @param array $siteids List of IDs for sites whose entries should be deleted |
98 | 98 | */ |
99 | - public function cleanup( array $siteids ) |
|
99 | + public function cleanup(array $siteids) |
|
100 | 100 | { |
101 | 101 | $path = 'mshop/customer/manager/lists/type/submanagers'; |
102 | - foreach( $this->getContext()->getConfig()->get( $path, array() ) as $domain ) { |
|
103 | - $this->getSubManager( $domain )->cleanup( $siteids ); |
|
102 | + foreach ($this->getContext()->getConfig()->get($path, array()) as $domain) { |
|
103 | + $this->getSubManager($domain)->cleanup($siteids); |
|
104 | 104 | } |
105 | 105 | |
106 | - $this->cleanupBase( $siteids, 'mshop/customer/manager/lists/type/laravel/delete' ); |
|
106 | + $this->cleanupBase($siteids, 'mshop/customer/manager/lists/type/laravel/delete'); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | |
@@ -113,11 +113,11 @@ discard block |
||
113 | 113 | * @param boolean $withsub Return also attributes of sub-managers if true |
114 | 114 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
115 | 115 | */ |
116 | - public function getSearchAttributes( $withsub = true ) |
|
116 | + public function getSearchAttributes($withsub = true) |
|
117 | 117 | { |
118 | 118 | $path = 'mshop/customer/manager/lists/type/submanagers'; |
119 | 119 | |
120 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, array(), $withsub ); |
|
120 | + return $this->getSearchAttributesBase($this->searchConfig, $path, array(), $withsub); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
129 | 129 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
130 | 130 | */ |
131 | - public function getSubManager( $manager, $name = null ) |
|
131 | + public function getSubManager($manager, $name = null) |
|
132 | 132 | { |
133 | - return $this->getSubManagerBase( 'customer', 'lists/type/' . $manager, ( $name === null ? 'Laravel' : $name ) ); |
|
133 | + return $this->getSubManagerBase('customer', 'lists/type/'.$manager, ($name === null ? 'Laravel' : $name)); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @param \Illuminate\Cache\StoreInterface $cache Laravel cache object |
31 | 31 | */ |
32 | - public function __construct( \Illuminate\Cache\StoreInterface $cache ) |
|
32 | + public function __construct(\Illuminate\Cache\StoreInterface $cache) |
|
33 | 33 | { |
34 | 34 | $this->object = $cache; |
35 | 35 | } |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @param string $key Key string that identifies the single cache entry |
44 | 44 | */ |
45 | - public function delete( $key ) |
|
45 | + public function delete($key) |
|
46 | 46 | { |
47 | - $this->object->forget( $key ); |
|
47 | + $this->object->forget($key); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | |
@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | * @param string[] $keys List of key strings that identify the cache entries |
57 | 57 | * that should be removed |
58 | 58 | */ |
59 | - public function deleteList( array $keys ) |
|
59 | + public function deleteList(array $keys) |
|
60 | 60 | { |
61 | - foreach( $keys as $key ) { |
|
62 | - $this->object->forget( $key ); |
|
61 | + foreach ($keys as $key) { |
|
62 | + $this->object->forget($key); |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @param string[] $tags List of tag strings that are associated to one or more |
73 | 73 | * cache entries that should be removed |
74 | 74 | */ |
75 | - public function deleteByTags( array $tags ) |
|
75 | + public function deleteByTags(array $tags) |
|
76 | 76 | { |
77 | 77 | // $this->object->tags( $tag )->flush(); |
78 | 78 | $this->object->flush(); |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | * @param string $default Value returned if requested key isn't found |
100 | 100 | * @return mixed Value associated to the requested key |
101 | 101 | */ |
102 | - public function get( $name, $default = null ) |
|
102 | + public function get($name, $default = null) |
|
103 | 103 | { |
104 | - if( ( $entry = $this->object->get( $name ) ) !== null ) { |
|
104 | + if (($entry = $this->object->get($name)) !== null) { |
|
105 | 105 | return $entry; |
106 | 106 | } |
107 | 107 | |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | * entries. If a cache entry doesn't exist, neither its key nor a value |
120 | 120 | * will be in the result list |
121 | 121 | */ |
122 | - public function getList( array $keys ) |
|
122 | + public function getList(array $keys) |
|
123 | 123 | { |
124 | 124 | $result = array(); |
125 | 125 | |
126 | - foreach( $keys as $key ) |
|
126 | + foreach ($keys as $key) |
|
127 | 127 | { |
128 | - if( ( $entry = $this->object->get( $key ) ) !== false ) { |
|
128 | + if (($entry = $this->object->get($key)) !== false) { |
|
129 | 129 | $result[$key] = $entry; |
130 | 130 | } |
131 | 131 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * entries. If a tag isn't associated to any cache entry, nothing is returned |
145 | 145 | * for that tag |
146 | 146 | */ |
147 | - public function getListByTags( array $tags ) |
|
147 | + public function getListByTags(array $tags) |
|
148 | 148 | { |
149 | 149 | return array(); |
150 | 150 | } |
@@ -162,12 +162,12 @@ discard block |
||
162 | 162 | * @param string|null $expires Date/time string in "YYYY-MM-DD HH:mm:ss" |
163 | 163 | * format when the cache entry expires |
164 | 164 | */ |
165 | - public function set( $name, $value, array $tags = array(), $expires = null ) |
|
165 | + public function set($name, $value, array $tags = array(), $expires = null) |
|
166 | 166 | { |
167 | - if( $expires !== null && ( $timestamp = strtotime( $expires ) ) !== false ) { |
|
168 | - $this->object->put( $name, $value, ($timestamp - time())/60 ); |
|
167 | + if ($expires !== null && ($timestamp = strtotime($expires)) !== false) { |
|
168 | + $this->object->put($name, $value, ($timestamp - time())/60); |
|
169 | 169 | } else { |
170 | - $this->object->forever( $name, $value ); |
|
170 | + $this->object->forever($name, $value); |
|
171 | 171 | } |
172 | 172 | } |
173 | 173 | |
@@ -185,14 +185,14 @@ discard block |
||
185 | 185 | * to the key can either be a tag string or an array of tag strings |
186 | 186 | * @param array $expires Associative list of key/datetime pairs. |
187 | 187 | */ |
188 | - public function setList( array $pairs, array $tags = array(), array $expires = array() ) |
|
188 | + public function setList(array $pairs, array $tags = array(), array $expires = array()) |
|
189 | 189 | { |
190 | - foreach( $pairs as $key => $value ) |
|
190 | + foreach ($pairs as $key => $value) |
|
191 | 191 | { |
192 | - $tagList = ( isset( $tags[$key] ) ? (array) $tags[$key] : array() ); |
|
193 | - $keyExpire = ( isset( $expires[$key] ) ? $expires[$key] : null ); |
|
192 | + $tagList = (isset($tags[$key]) ? (array) $tags[$key] : array()); |
|
193 | + $keyExpire = (isset($expires[$key]) ? $expires[$key] : null); |
|
194 | 194 | |
195 | - $this->set( $key, $value, $tagList, $keyExpire ); |
|
195 | + $this->set($key, $value, $tagList, $keyExpire); |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | } |