@@ -51,22 +51,22 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function handle() |
| 53 | 53 | { |
| 54 | - if( ( $code = $this->argument( 'email' ) ) === null ) { |
|
| 55 | - $code = $this->ask( 'E-Mail' ); |
|
| 54 | + if (($code = $this->argument('email')) === null) { |
|
| 55 | + $code = $this->ask('E-Mail'); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if( ( $password = $this->option( 'password' ) ) === null ) { |
|
| 59 | - $password = $this->secret( 'Password' ); |
|
| 58 | + if (($password = $this->option('password')) === null) { |
|
| 59 | + $password = $this->secret('Password'); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - $context = $this->getLaravel()->make( 'Aimeos\Shop\Base\Context' )->get( false, 'command' ); |
|
| 63 | - $context->setEditor( 'aimeos:account' ); |
|
| 62 | + $context = $this->getLaravel()->make('Aimeos\Shop\Base\Context')->get(false, 'command'); |
|
| 63 | + $context->setEditor('aimeos:account'); |
|
| 64 | 64 | |
| 65 | - $localeManager = \Aimeos\MShop::create( $context, 'locale' ); |
|
| 66 | - $localeItem = $localeManager->bootstrap( $this->argument( 'site' ), '', '', false ); |
|
| 67 | - $context->setLocale( $localeItem ); |
|
| 65 | + $localeManager = \Aimeos\MShop::create($context, 'locale'); |
|
| 66 | + $localeItem = $localeManager->bootstrap($this->argument('site'), '', '', false); |
|
| 67 | + $context->setLocale($localeItem); |
|
| 68 | 68 | |
| 69 | - $this->addGroups( $context, $this->createCustomerItem( $context, $code, $password ) ); |
|
| 69 | + $this->addGroups($context, $this->createCustomerItem($context, $code, $password)); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | |
@@ -77,30 +77,30 @@ discard block |
||
| 77 | 77 | * @param string $userid Unique user ID |
| 78 | 78 | * @param string $groupid Unique group ID |
| 79 | 79 | */ |
| 80 | - protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid ) |
|
| 80 | + protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid) |
|
| 81 | 81 | { |
| 82 | - $manager = \Aimeos\MShop::create( $context, 'customer/lists' ); |
|
| 82 | + $manager = \Aimeos\MShop::create($context, 'customer/lists'); |
|
| 83 | 83 | |
| 84 | 84 | $search = $manager->createSearch(); |
| 85 | 85 | $expr = array( |
| 86 | - $search->compare( '==', 'customer.lists.parentid', $userid ), |
|
| 87 | - $search->compare( '==', 'customer.lists.refid', $groupid ), |
|
| 88 | - $search->compare( '==', 'customer.lists.type', 'default' ), |
|
| 89 | - $search->compare( '==', 'customer.lists.domain', 'customer/group' ), |
|
| 86 | + $search->compare('==', 'customer.lists.parentid', $userid), |
|
| 87 | + $search->compare('==', 'customer.lists.refid', $groupid), |
|
| 88 | + $search->compare('==', 'customer.lists.type', 'default'), |
|
| 89 | + $search->compare('==', 'customer.lists.domain', 'customer/group'), |
|
| 90 | 90 | ); |
| 91 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 92 | - $search->setSlice( 0, 1 ); |
|
| 91 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 92 | + $search->setSlice(0, 1); |
|
| 93 | 93 | |
| 94 | - if( count( $manager->searchItems( $search ) ) === 0 ) |
|
| 94 | + if (count($manager->searchItems($search)) === 0) |
|
| 95 | 95 | { |
| 96 | 96 | $item = $manager->createItem(); |
| 97 | - $item->setDomain( 'customer/group' ); |
|
| 98 | - $item->setParentId( $userid ); |
|
| 99 | - $item->setRefId( $groupid ); |
|
| 100 | - $item->setType( 'default' ); |
|
| 101 | - $item->setStatus( 1 ); |
|
| 97 | + $item->setDomain('customer/group'); |
|
| 98 | + $item->setParentId($userid); |
|
| 99 | + $item->setRefId($groupid); |
|
| 100 | + $item->setType('default'); |
|
| 101 | + $item->setStatus(1); |
|
| 102 | 102 | |
| 103 | - $manager->saveItem( $item, false ); |
|
| 103 | + $manager->saveItem($item, false); |
|
| 104 | 104 | } |
| 105 | 105 | } |
| 106 | 106 | |
@@ -111,22 +111,22 @@ discard block |
||
| 111 | 111 | * @param \Aimeos\MShop\Context\Item\Iface $context Aimeos context object |
| 112 | 112 | * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object |
| 113 | 113 | */ |
| 114 | - protected function addGroups( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user ) |
|
| 114 | + protected function addGroups(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user) |
|
| 115 | 115 | { |
| 116 | - \Illuminate\Foundation\Auth\User::findOrFail( $user->getId() ) |
|
| 117 | - ->forceFill( ['superuser' => ( $this->option( 'super' ) ? 1 : 0 )] ) |
|
| 116 | + \Illuminate\Foundation\Auth\User::findOrFail($user->getId()) |
|
| 117 | + ->forceFill(['superuser' => ($this->option('super') ? 1 : 0)]) |
|
| 118 | 118 | ->save(); |
| 119 | 119 | |
| 120 | - if( $this->option( 'admin' ) ) { |
|
| 121 | - $this->addGroup( $context, $user, 'admin' ); |
|
| 120 | + if ($this->option('admin')) { |
|
| 121 | + $this->addGroup($context, $user, 'admin'); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - if( $this->option( 'editor' ) ) { |
|
| 125 | - $this->addGroup( $context, $user, 'editor' ); |
|
| 124 | + if ($this->option('editor')) { |
|
| 125 | + $this->addGroup($context, $user, 'editor'); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - if( $this->option( 'api' ) ) { |
|
| 129 | - $this->addGroup( $context, $user, 'api' ); |
|
| 128 | + if ($this->option('api')) { |
|
| 129 | + $this->addGroup($context, $user, 'api'); |
|
| 130 | 130 | } |
| 131 | 131 | } |
| 132 | 132 | |
@@ -138,13 +138,13 @@ discard block |
||
| 138 | 138 | * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object |
| 139 | 139 | * @param string $group Unique customer group code |
| 140 | 140 | */ |
| 141 | - protected function addGroup( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group ) |
|
| 141 | + protected function addGroup(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group) |
|
| 142 | 142 | { |
| 143 | 143 | $msg = 'Add "%1$s" group to user "%2$s" for site "%3$s"'; |
| 144 | - $this->info( sprintf( $msg, $group, $user->getCode(), $this->argument( 'site' ) ) ); |
|
| 144 | + $this->info(sprintf($msg, $group, $user->getCode(), $this->argument('site'))); |
|
| 145 | 145 | |
| 146 | - $groupItem = $this->getGroupItem( $context, $group ); |
|
| 147 | - $this->addListItem( $context, $user->getId(), $groupItem->getId() ); |
|
| 146 | + $groupItem = $this->getGroupItem($context, $group); |
|
| 147 | + $this->addListItem($context, $user->getId(), $groupItem->getId()); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | |
@@ -158,23 +158,23 @@ discard block |
||
| 158 | 158 | * @param string $password New user password |
| 159 | 159 | * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object |
| 160 | 160 | */ |
| 161 | - protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password ) |
|
| 161 | + protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password) |
|
| 162 | 162 | { |
| 163 | - $manager = \Aimeos\MShop::create( $context, 'customer' ); |
|
| 163 | + $manager = \Aimeos\MShop::create($context, 'customer'); |
|
| 164 | 164 | |
| 165 | 165 | try { |
| 166 | - $item = $manager->findItem( $email ); |
|
| 167 | - } catch( \Aimeos\MShop\Exception $e ) { |
|
| 166 | + $item = $manager->findItem($email); |
|
| 167 | + } catch (\Aimeos\MShop\Exception $e) { |
|
| 168 | 168 | $item = $manager->createItem(); |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - $item->setCode( $email ); |
|
| 172 | - $item->setLabel( $email ); |
|
| 173 | - $item->getPaymentAddress()->setEmail( $email ); |
|
| 174 | - $item->setPassword( $password ); |
|
| 175 | - $item->setStatus( 1 ); |
|
| 171 | + $item->setCode($email); |
|
| 172 | + $item->setLabel($email); |
|
| 173 | + $item->getPaymentAddress()->setEmail($email); |
|
| 174 | + $item->setPassword($password); |
|
| 175 | + $item->setStatus(1); |
|
| 176 | 176 | |
| 177 | - $manager->saveItem( $item ); |
|
| 177 | + $manager->saveItem($item); |
|
| 178 | 178 | |
| 179 | 179 | return $item; |
| 180 | 180 | } |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | protected function getArguments() |
| 189 | 189 | { |
| 190 | 190 | return array( |
| 191 | - array( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' ), |
|
| 192 | - array( 'site', InputArgument::OPTIONAL, 'Site code to create the account for', 'default' ), |
|
| 191 | + array('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created'), |
|
| 192 | + array('site', InputArgument::OPTIONAL, 'Site code to create the account for', 'default'), |
|
| 193 | 193 | ); |
| 194 | 194 | } |
| 195 | 195 | |
@@ -201,21 +201,21 @@ discard block |
||
| 201 | 201 | * @param string $code Unique customer group code |
| 202 | 202 | * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object |
| 203 | 203 | */ |
| 204 | - protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code ) |
|
| 204 | + protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code) |
|
| 205 | 205 | { |
| 206 | - $manager = \Aimeos\MShop::create( $context, 'customer/group' ); |
|
| 206 | + $manager = \Aimeos\MShop::create($context, 'customer/group'); |
|
| 207 | 207 | |
| 208 | 208 | try |
| 209 | 209 | { |
| 210 | - $item = $manager->findItem( $code ); |
|
| 210 | + $item = $manager->findItem($code); |
|
| 211 | 211 | } |
| 212 | - catch( \Aimeos\MShop\Exception $e ) |
|
| 212 | + catch (\Aimeos\MShop\Exception $e) |
|
| 213 | 213 | { |
| 214 | 214 | $item = $manager->createItem(); |
| 215 | - $item->setLabel( $code ); |
|
| 216 | - $item->setCode( $code ); |
|
| 215 | + $item->setLabel($code); |
|
| 216 | + $item->setCode($code); |
|
| 217 | 217 | |
| 218 | - $manager->saveItem( $item ); |
|
| 218 | + $manager->saveItem($item); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | return $item; |
@@ -230,11 +230,11 @@ discard block |
||
| 230 | 230 | protected function getOptions() |
| 231 | 231 | { |
| 232 | 232 | return array( |
| 233 | - array( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' ), |
|
| 234 | - array( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' ), |
|
| 235 | - array( 'api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs' ), |
|
| 236 | - array( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' ), |
|
| 237 | - array( 'viewer', null, InputOption::VALUE_NONE, 'If account should only have view privileges' ), |
|
| 233 | + array('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)'), |
|
| 234 | + array('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges'), |
|
| 235 | + array('api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs'), |
|
| 236 | + array('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges'), |
|
| 237 | + array('viewer', null, InputOption::VALUE_NONE, 'If account should only have view privileges'), |
|
| 238 | 238 | ); |
| 239 | 239 | } |
| 240 | 240 | } |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | Route::group(config('shop.routes.admin', ['prefix' => 'admin', 'middleware' => ['web']]), function() { |
| 4 | 4 | |
| 5 | - Route::match( array( 'GET' ), '', array( |
|
| 5 | + Route::match(array('GET'), '', array( |
|
| 6 | 6 | 'as' => 'aimeos_shop_admin', |
| 7 | 7 | 'uses' => 'Aimeos\Shop\Controller\AdminController@indexAction' |
| 8 | 8 | )); |
@@ -12,112 +12,112 @@ discard block |
||
| 12 | 12 | |
| 13 | 13 | Route::group(config('shop.routes.jqadm', ['prefix' => 'admin/{site}/jqadm', 'middleware' => ['web', 'auth']]), function() { |
| 14 | 14 | |
| 15 | - Route::match( array( 'GET' ), 'file/{type}', array( |
|
| 15 | + Route::match(array('GET'), 'file/{type}', array( |
|
| 16 | 16 | 'as' => 'aimeos_shop_jqadm_file', |
| 17 | 17 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@fileAction' |
| 18 | 18 | )); |
| 19 | 19 | |
| 20 | - Route::match( array( 'GET', 'POST' ), 'copy/{resource}/{id}', array( |
|
| 20 | + Route::match(array('GET', 'POST'), 'copy/{resource}/{id}', array( |
|
| 21 | 21 | 'as' => 'aimeos_shop_jqadm_copy', |
| 22 | 22 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@copyAction' |
| 23 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 23 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 24 | 24 | |
| 25 | - Route::match( array( 'GET', 'POST' ), 'create/{resource}', array( |
|
| 25 | + Route::match(array('GET', 'POST'), 'create/{resource}', array( |
|
| 26 | 26 | 'as' => 'aimeos_shop_jqadm_create', |
| 27 | 27 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@createAction' |
| 28 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 28 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 29 | 29 | |
| 30 | - Route::match( array( 'GET', 'POST' ), 'delete/{resource}/{id}', array( |
|
| 30 | + Route::match(array('GET', 'POST'), 'delete/{resource}/{id}', array( |
|
| 31 | 31 | 'as' => 'aimeos_shop_jqadm_delete', |
| 32 | 32 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@deleteAction' |
| 33 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 33 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 34 | 34 | |
| 35 | - Route::match( array( 'GET', 'POST' ), 'export/{resource}', array( |
|
| 35 | + Route::match(array('GET', 'POST'), 'export/{resource}', array( |
|
| 36 | 36 | 'as' => 'aimeos_shop_jqadm_export', |
| 37 | 37 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@exportAction' |
| 38 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 38 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 39 | 39 | |
| 40 | - Route::match( array( 'GET' ), 'get/{resource}/{id}', array( |
|
| 40 | + Route::match(array('GET'), 'get/{resource}/{id}', array( |
|
| 41 | 41 | 'as' => 'aimeos_shop_jqadm_get', |
| 42 | 42 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@getAction' |
| 43 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 43 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 44 | 44 | |
| 45 | - Route::match( array( 'POST' ), 'save/{resource}', array( |
|
| 45 | + Route::match(array('POST'), 'save/{resource}', array( |
|
| 46 | 46 | 'as' => 'aimeos_shop_jqadm_save', |
| 47 | 47 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@saveAction' |
| 48 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 48 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 49 | 49 | |
| 50 | - Route::match( array( 'GET', 'POST' ), 'search/{resource}', array( |
|
| 50 | + Route::match(array('GET', 'POST'), 'search/{resource}', array( |
|
| 51 | 51 | 'as' => 'aimeos_shop_jqadm_search', |
| 52 | 52 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@searchAction' |
| 53 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 53 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 54 | 54 | |
| 55 | 55 | }); |
| 56 | 56 | |
| 57 | 57 | |
| 58 | 58 | Route::group(config('shop.routes.jsonadm', ['prefix' => 'admin/{site}/jsonadm', 'middleware' => ['web', 'auth']]), function() { |
| 59 | 59 | |
| 60 | - Route::match( array( 'DELETE' ), '{resource}/{id?}', array( |
|
| 60 | + Route::match(array('DELETE'), '{resource}/{id?}', array( |
|
| 61 | 61 | 'as' => 'aimeos_shop_jsonadm_delete', |
| 62 | 62 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@deleteAction' |
| 63 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 63 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 64 | 64 | |
| 65 | - Route::match( array( 'GET' ), '{resource}/{id?}', array( |
|
| 65 | + Route::match(array('GET'), '{resource}/{id?}', array( |
|
| 66 | 66 | 'as' => 'aimeos_shop_jsonadm_get', |
| 67 | 67 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@getAction' |
| 68 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 68 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 69 | 69 | |
| 70 | - Route::match( array( 'PATCH' ), '{resource}/{id?}', array( |
|
| 70 | + Route::match(array('PATCH'), '{resource}/{id?}', array( |
|
| 71 | 71 | 'as' => 'aimeos_shop_jsonadm_patch', |
| 72 | 72 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@patchAction' |
| 73 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 73 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 74 | 74 | |
| 75 | - Route::match( array( 'POST' ), '{resource}/{id?}', array( |
|
| 75 | + Route::match(array('POST'), '{resource}/{id?}', array( |
|
| 76 | 76 | 'as' => 'aimeos_shop_jsonadm_post', |
| 77 | 77 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@postAction' |
| 78 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 78 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 79 | 79 | |
| 80 | - Route::match( array( 'PUT' ), '{resource}/{id?}', array( |
|
| 80 | + Route::match(array('PUT'), '{resource}/{id?}', array( |
|
| 81 | 81 | 'as' => 'aimeos_shop_jsonadm_put', |
| 82 | 82 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@putAction' |
| 83 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
| 83 | + ))->where(array('resource' => '[a-z\/]+')); |
|
| 84 | 84 | |
| 85 | - Route::match( array( 'OPTIONS' ), '{resource?}', array( |
|
| 85 | + Route::match(array('OPTIONS'), '{resource?}', array( |
|
| 86 | 86 | 'as' => 'aimeos_shop_jsonadm_options', |
| 87 | 87 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@optionsAction' |
| 88 | - ))->where( array( 'resource' => '[a-z\/]*' ) ); |
|
| 88 | + ))->where(array('resource' => '[a-z\/]*')); |
|
| 89 | 89 | |
| 90 | 90 | }); |
| 91 | 91 | |
| 92 | 92 | |
| 93 | 93 | Route::group(config('shop.routes.jsonapi', ['prefix' => 'jsonapi', 'middleware' => ['web', 'api']]), function() { |
| 94 | 94 | |
| 95 | - Route::match( array( 'DELETE' ), '{resource}', array( |
|
| 95 | + Route::match(array('DELETE'), '{resource}', array( |
|
| 96 | 96 | 'as' => 'aimeos_shop_jsonapi_delete', |
| 97 | 97 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@deleteAction' |
| 98 | 98 | )); |
| 99 | 99 | |
| 100 | - Route::match( array( 'GET' ), '{resource}', array( |
|
| 100 | + Route::match(array('GET'), '{resource}', array( |
|
| 101 | 101 | 'as' => 'aimeos_shop_jsonapi_get', |
| 102 | 102 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@getAction' |
| 103 | 103 | )); |
| 104 | 104 | |
| 105 | - Route::match( array( 'PATCH' ), '{resource}', array( |
|
| 105 | + Route::match(array('PATCH'), '{resource}', array( |
|
| 106 | 106 | 'as' => 'aimeos_shop_jsonapi_patch', |
| 107 | 107 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@patchAction' |
| 108 | 108 | )); |
| 109 | 109 | |
| 110 | - Route::match( array( 'POST' ), '{resource}', array( |
|
| 110 | + Route::match(array('POST'), '{resource}', array( |
|
| 111 | 111 | 'as' => 'aimeos_shop_jsonapi_post', |
| 112 | 112 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@postAction' |
| 113 | 113 | )); |
| 114 | 114 | |
| 115 | - Route::match( array( 'PUT' ), '{resource}', array( |
|
| 115 | + Route::match(array('PUT'), '{resource}', array( |
|
| 116 | 116 | 'as' => 'aimeos_shop_jsonapi_put', |
| 117 | 117 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@putAction' |
| 118 | 118 | )); |
| 119 | 119 | |
| 120 | - Route::match( array( 'OPTIONS' ), '{resource?}', array( |
|
| 120 | + Route::match(array('OPTIONS'), '{resource?}', array( |
|
| 121 | 121 | 'as' => 'aimeos_shop_jsonapi_options', |
| 122 | 122 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@optionsAction' |
| 123 | 123 | )); |
@@ -127,22 +127,22 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | Route::group(config('shop.routes.account', ['middleware' => ['web', 'auth']]), function() { |
| 129 | 129 | |
| 130 | - Route::match( array( 'GET', 'POST' ), 'myaccount/favorite/{fav_action?}/{fav_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 130 | + Route::match(array('GET', 'POST'), 'myaccount/favorite/{fav_action?}/{fav_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 131 | 131 | 'as' => 'aimeos_shop_account_favorite', |
| 132 | 132 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
| 133 | 133 | )); |
| 134 | 134 | |
| 135 | - Route::match( array( 'GET', 'POST' ), 'myaccount/watch/{wat_action?}/{wat_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 135 | + Route::match(array('GET', 'POST'), 'myaccount/watch/{wat_action?}/{wat_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 136 | 136 | 'as' => 'aimeos_shop_account_watch', |
| 137 | 137 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
| 138 | 138 | )); |
| 139 | 139 | |
| 140 | - Route::match( array( 'GET', 'POST' ), 'myaccount/download/{dl_id}', array( |
|
| 140 | + Route::match(array('GET', 'POST'), 'myaccount/download/{dl_id}', array( |
|
| 141 | 141 | 'as' => 'aimeos_shop_account_download', |
| 142 | 142 | 'uses' => 'Aimeos\Shop\Controller\AccountController@downloadAction' |
| 143 | 143 | )); |
| 144 | 144 | |
| 145 | - Route::match( array( 'GET', 'POST' ), 'myaccount', array( |
|
| 145 | + Route::match(array('GET', 'POST'), 'myaccount', array( |
|
| 146 | 146 | 'as' => 'aimeos_shop_account', |
| 147 | 147 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
| 148 | 148 | )); |
@@ -152,52 +152,52 @@ discard block |
||
| 152 | 152 | |
| 153 | 153 | Route::group(config('shop.routes.default', ['middleware' => ['web']]), function() { |
| 154 | 154 | |
| 155 | - Route::match( array( 'GET', 'POST' ), 'count', array( |
|
| 155 | + Route::match(array('GET', 'POST'), 'count', array( |
|
| 156 | 156 | 'as' => 'aimeos_shop_count', |
| 157 | 157 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@countAction' |
| 158 | 158 | )); |
| 159 | 159 | |
| 160 | - Route::match( array( 'GET', 'POST' ), 'd/{d_name}/{d_prodid}/{d_pos?}', array( |
|
| 160 | + Route::match(array('GET', 'POST'), 'd/{d_name}/{d_prodid}/{d_pos?}', array( |
|
| 161 | 161 | 'as' => 'aimeos_shop_detail', |
| 162 | 162 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@detailAction' |
| 163 | 163 | )); |
| 164 | 164 | |
| 165 | - Route::match( array( 'GET', 'POST' ), 'd/pin/{pin_action?}/{pin_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 165 | + Route::match(array('GET', 'POST'), 'd/pin/{pin_action?}/{pin_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
|
| 166 | 166 | 'as' => 'aimeos_shop_session_pinned', |
| 167 | 167 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@detailAction' |
| 168 | 168 | )); |
| 169 | 169 | |
| 170 | - Route::match( array( 'GET', 'POST' ), 'list', array( |
|
| 170 | + Route::match(array('GET', 'POST'), 'list', array( |
|
| 171 | 171 | 'as' => 'aimeos_shop_list', |
| 172 | 172 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@listAction' |
| 173 | 173 | )); |
| 174 | 174 | |
| 175 | - Route::match( array( 'GET', 'POST' ), 'c/{f_name}/{f_catid}', array( |
|
| 175 | + Route::match(array('GET', 'POST'), 'c/{f_name}/{f_catid}', array( |
|
| 176 | 176 | 'as' => 'aimeos_shop_tree', |
| 177 | 177 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@treeAction' |
| 178 | 178 | )); |
| 179 | 179 | |
| 180 | - Route::match( array( 'GET', 'POST' ), 'suggest', array( |
|
| 180 | + Route::match(array('GET', 'POST'), 'suggest', array( |
|
| 181 | 181 | 'as' => 'aimeos_shop_suggest', |
| 182 | 182 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@suggestAction' |
| 183 | 183 | )); |
| 184 | 184 | |
| 185 | - Route::match( array( 'GET', 'POST' ), 'stock', array( |
|
| 185 | + Route::match(array('GET', 'POST'), 'stock', array( |
|
| 186 | 186 | 'as' => 'aimeos_shop_stock', |
| 187 | 187 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@stockAction' |
| 188 | 188 | )); |
| 189 | 189 | |
| 190 | - Route::match( array( 'GET', 'POST' ), 'basket', array( |
|
| 190 | + Route::match(array('GET', 'POST'), 'basket', array( |
|
| 191 | 191 | 'as' => 'aimeos_shop_basket', |
| 192 | 192 | 'uses' => 'Aimeos\Shop\Controller\BasketController@indexAction' |
| 193 | 193 | )); |
| 194 | 194 | |
| 195 | - Route::match( array( 'GET', 'POST' ), 'checkout/{c_step?}', array( |
|
| 195 | + Route::match(array('GET', 'POST'), 'checkout/{c_step?}', array( |
|
| 196 | 196 | 'as' => 'aimeos_shop_checkout', |
| 197 | 197 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@indexAction' |
| 198 | 198 | )); |
| 199 | 199 | |
| 200 | - Route::match( array( 'GET', 'POST' ), 'confirm/{code?}', array( |
|
| 200 | + Route::match(array('GET', 'POST'), 'confirm/{code?}', array( |
|
| 201 | 201 | 'as' => 'aimeos_shop_confirm', |
| 202 | 202 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@confirmAction' |
| 203 | 203 | )); |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | |
| 208 | 208 | Route::group(config('shop.routes.update', []), function() { |
| 209 | 209 | |
| 210 | - Route::match( array( 'GET', 'POST' ), 'update', array( |
|
| 210 | + Route::match(array('GET', 'POST'), 'update', array( |
|
| 211 | 211 | 'as' => 'aimeos_shop_update', |
| 212 | 212 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@updateAction' |
| 213 | 213 | )); |
@@ -37,13 +37,13 @@ discard block |
||
| 37 | 37 | public function boot() |
| 38 | 38 | { |
| 39 | 39 | $ds = DIRECTORY_SEPARATOR; |
| 40 | - $basedir = dirname( dirname( __DIR__ ) ) . $ds; |
|
| 40 | + $basedir = dirname(dirname(__DIR__)).$ds; |
|
| 41 | 41 | |
| 42 | - $this->loadRoutesFrom( $basedir . 'routes.php' ); |
|
| 43 | - $this->loadViewsFrom( $basedir . 'views', 'shop' ); |
|
| 42 | + $this->loadRoutesFrom($basedir.'routes.php'); |
|
| 43 | + $this->loadViewsFrom($basedir.'views', 'shop'); |
|
| 44 | 44 | |
| 45 | - $this->publishes( [ $basedir . 'config/shop.php' => config_path( 'shop.php' ) ], 'config' ); |
|
| 46 | - $this->publishes( [ dirname( $basedir ) . $ds . 'public' => public_path( 'packages/aimeos/shop' ) ], 'public' ); |
|
| 45 | + $this->publishes([$basedir.'config/shop.php' => config_path('shop.php')], 'config'); |
|
| 46 | + $this->publishes([dirname($basedir).$ds.'public' => public_path('packages/aimeos/shop')], 'public'); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function register() |
| 56 | 56 | { |
| 57 | - $this->mergeConfigFrom( dirname( dirname( __DIR__ ) ) . DIRECTORY_SEPARATOR . 'default.php', 'shop'); |
|
| 57 | + $this->mergeConfigFrom(dirname(dirname(__DIR__)).DIRECTORY_SEPARATOR.'default.php', 'shop'); |
|
| 58 | 58 | |
| 59 | 59 | $this->app->singleton('aimeos', function($app) { |
| 60 | 60 | return new \Aimeos\Shop\Base\Aimeos($app['config']); |
@@ -89,12 +89,12 @@ discard block |
||
| 89 | 89 | }); |
| 90 | 90 | |
| 91 | 91 | |
| 92 | - $this->commands( array( |
|
| 92 | + $this->commands(array( |
|
| 93 | 93 | 'Aimeos\Shop\Command\AccountCommand', |
| 94 | 94 | 'Aimeos\Shop\Command\CacheCommand', |
| 95 | 95 | 'Aimeos\Shop\Command\SetupCommand', |
| 96 | 96 | 'Aimeos\Shop\Command\JobsCommand', |
| 97 | - ) ); |
|
| 97 | + )); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | |
@@ -46,30 +46,30 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function handle() |
| 48 | 48 | { |
| 49 | - $aimeos = $this->getLaravel()->make( 'aimeos' )->get(); |
|
| 49 | + $aimeos = $this->getLaravel()->make('aimeos')->get(); |
|
| 50 | 50 | $context = $this->getContext(); |
| 51 | 51 | |
| 52 | 52 | $process = $context->getProcess(); |
| 53 | - $jobs = explode( ' ', $this->argument( 'jobs' ) ); |
|
| 54 | - $localeManager = \Aimeos\MShop::create( $context, 'locale' ); |
|
| 53 | + $jobs = explode(' ', $this->argument('jobs')); |
|
| 54 | + $localeManager = \Aimeos\MShop::create($context, 'locale'); |
|
| 55 | 55 | |
| 56 | - foreach( $this->getSiteItems( $context, $this->argument( 'site' ) ) as $siteItem ) |
|
| 56 | + foreach ($this->getSiteItems($context, $this->argument('site')) as $siteItem) |
|
| 57 | 57 | { |
| 58 | - $localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false ); |
|
| 59 | - $localeItem->setLanguageId( null ); |
|
| 60 | - $localeItem->setCurrencyId( null ); |
|
| 58 | + $localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false); |
|
| 59 | + $localeItem->setLanguageId(null); |
|
| 60 | + $localeItem->setCurrencyId(null); |
|
| 61 | 61 | |
| 62 | - $context->setLocale( $localeItem ); |
|
| 62 | + $context->setLocale($localeItem); |
|
| 63 | 63 | |
| 64 | - $this->info( sprintf( 'Executing the Aimeos jobs for "%s"', $siteItem->getCode() ) ); |
|
| 64 | + $this->info(sprintf('Executing the Aimeos jobs for "%s"', $siteItem->getCode())); |
|
| 65 | 65 | |
| 66 | - foreach( $jobs as $jobname ) |
|
| 66 | + foreach ($jobs as $jobname) |
|
| 67 | 67 | { |
| 68 | - $fcn = function( $context, $aimeos, $jobname ) { |
|
| 69 | - \Aimeos\Controller\Jobs::create( $context, $aimeos, $jobname )->run(); |
|
| 68 | + $fcn = function($context, $aimeos, $jobname) { |
|
| 69 | + \Aimeos\Controller\Jobs::create($context, $aimeos, $jobname)->run(); |
|
| 70 | 70 | }; |
| 71 | 71 | |
| 72 | - $process->start( $fcn, [$context, $aimeos, $jobname], true ); |
|
| 72 | + $process->start($fcn, [$context, $aimeos, $jobname], true); |
|
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | |
@@ -85,19 +85,19 @@ discard block |
||
| 85 | 85 | protected function getContext() |
| 86 | 86 | { |
| 87 | 87 | $lv = $this->getLaravel(); |
| 88 | - $aimeos = $lv->make( 'aimeos' )->get(); |
|
| 89 | - $context = $lv->make( 'aimeos.context' )->get( false, 'command' ); |
|
| 88 | + $aimeos = $lv->make('aimeos')->get(); |
|
| 89 | + $context = $lv->make('aimeos.context')->get(false, 'command'); |
|
| 90 | 90 | |
| 91 | - $tmplPaths = $aimeos->getCustomPaths( 'controller/jobs/templates' ); |
|
| 92 | - $view = $lv->make( 'aimeos.view' )->create( $context, $tmplPaths ); |
|
| 91 | + $tmplPaths = $aimeos->getCustomPaths('controller/jobs/templates'); |
|
| 92 | + $view = $lv->make('aimeos.view')->create($context, $tmplPaths); |
|
| 93 | 93 | |
| 94 | - $langManager = \Aimeos\MShop::create( $context, 'locale/language' ); |
|
| 95 | - $langids = array_keys( $langManager->searchItems( $langManager->createSearch( true ) ) ); |
|
| 96 | - $i18n = $lv->make( 'aimeos.i18n' )->get( $langids ); |
|
| 94 | + $langManager = \Aimeos\MShop::create($context, 'locale/language'); |
|
| 95 | + $langids = array_keys($langManager->searchItems($langManager->createSearch(true))); |
|
| 96 | + $i18n = $lv->make('aimeos.i18n')->get($langids); |
|
| 97 | 97 | |
| 98 | - $context->setEditor( 'aimeos:jobs' ); |
|
| 99 | - $context->setView( $view ); |
|
| 100 | - $context->setI18n( $i18n ); |
|
| 98 | + $context->setEditor('aimeos:jobs'); |
|
| 99 | + $context->setView($view); |
|
| 100 | + $context->setI18n($i18n); |
|
| 101 | 101 | |
| 102 | 102 | return $context; |
| 103 | 103 | } |
@@ -41,16 +41,16 @@ discard block |
||
| 41 | 41 | * @param \Aimeos\Shop\Base\Context $context Context object |
| 42 | 42 | * @param \Aimeos\Shop\Base\View $view View object |
| 43 | 43 | */ |
| 44 | - public function __construct( \Aimeos\Shop\Base\Aimeos $aimeos, |
|
| 45 | - \Aimeos\Shop\Base\Context $context, \Aimeos\Shop\Base\View $view ) |
|
| 44 | + public function __construct(\Aimeos\Shop\Base\Aimeos $aimeos, |
|
| 45 | + \Aimeos\Shop\Base\Context $context, \Aimeos\Shop\Base\View $view) |
|
| 46 | 46 | { |
| 47 | 47 | $this->context = $context->get(); |
| 48 | 48 | |
| 49 | 49 | $langid = $this->context->getLocale()->getLanguageId(); |
| 50 | - $tmplPaths = $aimeos->get()->getCustomPaths( 'client/html/templates' ); |
|
| 50 | + $tmplPaths = $aimeos->get()->getCustomPaths('client/html/templates'); |
|
| 51 | 51 | |
| 52 | - $this->view = $view->create( $this->context, $tmplPaths, $langid ); |
|
| 53 | - $this->context->setView( $this->view ); |
|
| 52 | + $this->view = $view->create($this->context, $tmplPaths, $langid); |
|
| 53 | + $this->context->setView($this->view); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | |
@@ -60,12 +60,12 @@ discard block |
||
| 60 | 60 | * @param string $name Name of the shop component |
| 61 | 61 | * @return \Aimeos\Client\Html\Iface HTML client |
| 62 | 62 | */ |
| 63 | - public function get( $name ) |
|
| 63 | + public function get($name) |
|
| 64 | 64 | { |
| 65 | - if( !isset( $this->objects[$name] ) ) |
|
| 65 | + if (!isset($this->objects[$name])) |
|
| 66 | 66 | { |
| 67 | - $client = \Aimeos\Client\Html::create( $this->context, $name ); |
|
| 68 | - $client->setView( clone $this->view ); |
|
| 67 | + $client = \Aimeos\Client\Html::create($this->context, $name); |
|
| 68 | + $client->setView(clone $this->view); |
|
| 69 | 69 | $client->process(); |
| 70 | 70 | |
| 71 | 71 | $this->objects[$name] = $client; |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function countAction() |
| 32 | 32 | { |
| 33 | - foreach( app( 'config' )->get( 'shop.page.catalog-count', ['catalog/count'] ) as $name ) |
|
| 33 | + foreach (app('config')->get('shop.page.catalog-count', ['catalog/count']) as $name) |
|
| 34 | 34 | { |
| 35 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 36 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 35 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 36 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | return Response::view('shop::catalog.count', $params) |
@@ -48,12 +48,12 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function detailAction() |
| 50 | 50 | { |
| 51 | - $default = ['basket/mini','catalog/stage','catalog/detail','catalog/session']; |
|
| 51 | + $default = ['basket/mini', 'catalog/stage', 'catalog/detail', 'catalog/session']; |
|
| 52 | 52 | |
| 53 | - foreach( app( 'config' )->get( 'shop.page.catalog-detail', $default ) as $name ) |
|
| 53 | + foreach (app('config')->get('shop.page.catalog-detail', $default) as $name) |
|
| 54 | 54 | { |
| 55 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 56 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 55 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 56 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | return Response::view('shop::catalog.detail', $params); |
@@ -67,12 +67,12 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function listAction() |
| 69 | 69 | { |
| 70 | - $default = ['basket/mini','catalog/filter','catalog/lists']; |
|
| 70 | + $default = ['basket/mini', 'catalog/filter', 'catalog/lists']; |
|
| 71 | 71 | |
| 72 | - foreach( app( 'config' )->get( 'shop.page.catalog-list', $default ) as $name ) |
|
| 72 | + foreach (app('config')->get('shop.page.catalog-list', $default) as $name) |
|
| 73 | 73 | { |
| 74 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 75 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 74 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 75 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | return Response::view('shop::catalog.list', $params); |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function stockAction() |
| 88 | 88 | { |
| 89 | - foreach( app( 'config' )->get( 'shop.page.catalog-stock', ['catalog/stock'] ) as $name ) |
|
| 89 | + foreach (app('config')->get('shop.page.catalog-stock', ['catalog/stock']) as $name) |
|
| 90 | 90 | { |
| 91 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 92 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 91 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 92 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | return Response::view('shop::catalog.stock', $params) |
@@ -104,10 +104,10 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | public function suggestAction() |
| 106 | 106 | { |
| 107 | - foreach( app( 'config' )->get( 'shop.page.catalog-suggest', ['catalog/suggest'] ) as $name ) |
|
| 107 | + foreach (app('config')->get('shop.page.catalog-suggest', ['catalog/suggest']) as $name) |
|
| 108 | 108 | { |
| 109 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 110 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 109 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 110 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | return Response::view('shop::catalog.suggest', $params) |
@@ -122,12 +122,12 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function treeAction() |
| 124 | 124 | { |
| 125 | - $default = ['basket/mini','catalog/filter','catalog/stage','catalog/lists']; |
|
| 125 | + $default = ['basket/mini', 'catalog/filter', 'catalog/stage', 'catalog/lists']; |
|
| 126 | 126 | |
| 127 | - foreach( app( 'config' )->get( 'shop.page.catalog-tree', $default ) as $name ) |
|
| 127 | + foreach (app('config')->get('shop.page.catalog-tree', $default) as $name) |
|
| 128 | 128 | { |
| 129 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 130 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 129 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 130 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | return Response::view('shop::catalog.tree', $params); |
@@ -36,26 +36,26 @@ |
||
| 36 | 36 | * @param \Illuminate\Http\Request $request Laravel request object |
| 37 | 37 | * @return \Illuminate\Contracts\View\View View for rendering the output |
| 38 | 38 | */ |
| 39 | - public function indexAction( Request $request ) |
|
| 39 | + public function indexAction(Request $request) |
|
| 40 | 40 | { |
| 41 | - if( Auth::check() === false |
|
| 42 | - || $request->user()->can( 'admin', [AdminController::class, ['admin', 'editor']] ) === false |
|
| 41 | + if (Auth::check() === false |
|
| 42 | + || $request->user()->can('admin', [AdminController::class, ['admin', 'editor']]) === false |
|
| 43 | 43 | ) { |
| 44 | - return redirect()->guest( 'login' ); |
|
| 44 | + return redirect()->guest('login'); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | $siteId = $request->user()->siteid; |
| 48 | - $context = app( 'aimeos.context' )->get( false ); |
|
| 49 | - $siteManager = \Aimeos\MShop::create( $context, 'locale/site' ); |
|
| 50 | - $siteCode = ( $siteId ? $siteManager->getItem( $siteId )->getCode() : 'default' ); |
|
| 51 | - $locale = $request->user()->langid ?: config( 'app.locale', 'en' ); |
|
| 48 | + $context = app('aimeos.context')->get(false); |
|
| 49 | + $siteManager = \Aimeos\MShop::create($context, 'locale/site'); |
|
| 50 | + $siteCode = ($siteId ? $siteManager->getItem($siteId)->getCode() : 'default'); |
|
| 51 | + $locale = $request->user()->langid ?: config('app.locale', 'en'); |
|
| 52 | 52 | |
| 53 | 53 | $param = array( |
| 54 | 54 | 'resource' => 'dashboard', |
| 55 | - 'site' => Route::input( 'site', Input::get( 'site', $siteCode ) ), |
|
| 56 | - 'lang' => Route::input( 'lang', Input::get( 'lang', $locale ) ) |
|
| 55 | + 'site' => Route::input('site', Input::get('site', $siteCode)), |
|
| 56 | + 'lang' => Route::input('lang', Input::get('lang', $locale)) |
|
| 57 | 57 | ); |
| 58 | 58 | |
| 59 | - return redirect()->route( 'aimeos_shop_jqadm_search', $param ); |
|
| 59 | + return redirect()->route('aimeos_shop_jqadm_search', $param); |
|
| 60 | 60 | } |
| 61 | 61 | } |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function confirmAction() |
| 32 | 32 | { |
| 33 | - foreach( app( 'config' )->get( 'shop.page.checkout-confirm', ['checkout/confirm'] ) as $name ) |
|
| 33 | + foreach (app('config')->get('shop.page.checkout-confirm', ['checkout/confirm']) as $name) |
|
| 34 | 34 | { |
| 35 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 36 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 35 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 36 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | return Response::view('shop::checkout.confirm', $params)->header('Cache-Control', 'no-store'); |
@@ -47,10 +47,10 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function indexAction() |
| 49 | 49 | { |
| 50 | - foreach( app( 'config' )->get( 'shop.page.checkout-index', ['checkout/standard'] ) as $name ) |
|
| 50 | + foreach (app('config')->get('shop.page.checkout-index', ['checkout/standard']) as $name) |
|
| 51 | 51 | { |
| 52 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 53 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 52 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 53 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | return Response::view('shop::checkout.index', $params)->header('Cache-Control', 'no-store'); |
@@ -64,10 +64,10 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | public function updateAction() |
| 66 | 66 | { |
| 67 | - foreach( app( 'config' )->get( 'shop.page.checkout-update', ['checkout/update'] ) as $name ) |
|
| 67 | + foreach (app('config')->get('shop.page.checkout-update', ['checkout/update']) as $name) |
|
| 68 | 68 | { |
| 69 | - $params['aiheader'][$name] = Shop::get( $name )->getHeader(); |
|
| 70 | - $params['aibody'][$name] = Shop::get( $name )->getBody(); |
|
| 69 | + $params['aiheader'][$name] = Shop::get($name)->getHeader(); |
|
| 70 | + $params['aibody'][$name] = Shop::get($name)->getBody(); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | return Response::view('shop::checkout.update', $params)->header('Cache-Control', 'no-store'); |
@@ -36,13 +36,13 @@ discard block |
||
| 36 | 36 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 37 | 37 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 38 | 38 | */ |
| 39 | - public function deleteAction( ServerRequestInterface $request ) |
|
| 39 | + public function deleteAction(ServerRequestInterface $request) |
|
| 40 | 40 | { |
| 41 | - if( config( 'shop.authorize', true ) ) { |
|
| 42 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api']] ); |
|
| 41 | + if (config('shop.authorize', true)) { |
|
| 42 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api']]); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - return $this->createAdmin()->delete( $request, new Response() ); |
|
| 45 | + return $this->createAdmin()->delete($request, new Response()); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | |
@@ -52,13 +52,13 @@ discard block |
||
| 52 | 52 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 53 | 53 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 54 | 54 | */ |
| 55 | - public function getAction( ServerRequestInterface $request ) |
|
| 55 | + public function getAction(ServerRequestInterface $request) |
|
| 56 | 56 | { |
| 57 | - if( config( 'shop.authorize', true ) ) { |
|
| 58 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api', 'editor']] ); |
|
| 57 | + if (config('shop.authorize', true)) { |
|
| 58 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api', 'editor']]); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - return $this->createAdmin()->get( $request, new Response() ); |
|
| 61 | + return $this->createAdmin()->get($request, new Response()); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | |
@@ -68,13 +68,13 @@ discard block |
||
| 68 | 68 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 69 | 69 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 70 | 70 | */ |
| 71 | - public function patchAction( ServerRequestInterface $request ) |
|
| 71 | + public function patchAction(ServerRequestInterface $request) |
|
| 72 | 72 | { |
| 73 | - if( config( 'shop.authorize', true ) ) { |
|
| 74 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api']] ); |
|
| 73 | + if (config('shop.authorize', true)) { |
|
| 74 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api']]); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - return $this->createAdmin()->patch( $request, new Response() ); |
|
| 77 | + return $this->createAdmin()->patch($request, new Response()); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | |
@@ -84,13 +84,13 @@ discard block |
||
| 84 | 84 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 85 | 85 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 86 | 86 | */ |
| 87 | - public function postAction( ServerRequestInterface $request ) |
|
| 87 | + public function postAction(ServerRequestInterface $request) |
|
| 88 | 88 | { |
| 89 | - if( config( 'shop.authorize', true ) ) { |
|
| 90 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api']] ); |
|
| 89 | + if (config('shop.authorize', true)) { |
|
| 90 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api']]); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - return $this->createAdmin()->post( $request, new Response() ); |
|
| 93 | + return $this->createAdmin()->post($request, new Response()); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | |
@@ -100,13 +100,13 @@ discard block |
||
| 100 | 100 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 101 | 101 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 102 | 102 | */ |
| 103 | - public function putAction( ServerRequestInterface $request ) |
|
| 103 | + public function putAction(ServerRequestInterface $request) |
|
| 104 | 104 | { |
| 105 | - if( config( 'shop.authorize', true ) ) { |
|
| 106 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api']] ); |
|
| 105 | + if (config('shop.authorize', true)) { |
|
| 106 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api']]); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - return $this->createAdmin()->put( $request, new Response() ); |
|
| 109 | + return $this->createAdmin()->put($request, new Response()); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | |
@@ -116,13 +116,13 @@ discard block |
||
| 116 | 116 | * @param \Psr\Http\Message\ServerRequestInterface $request Request object |
| 117 | 117 | * @return \Psr\Http\Message\ResponseInterface Response object containing the generated output |
| 118 | 118 | */ |
| 119 | - public function optionsAction( ServerRequestInterface $request ) |
|
| 119 | + public function optionsAction(ServerRequestInterface $request) |
|
| 120 | 120 | { |
| 121 | - if( config( 'shop.authorize', true ) ) { |
|
| 122 | - $this->authorize( 'admin', [JsonadmController::class, ['admin', 'api', 'editor']] ); |
|
| 121 | + if (config('shop.authorize', true)) { |
|
| 122 | + $this->authorize('admin', [JsonadmController::class, ['admin', 'api', 'editor']]); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - return $this->createAdmin()->options( $request, new Response() ); |
|
| 125 | + return $this->createAdmin()->options($request, new Response()); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | |
@@ -133,18 +133,18 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | protected function createAdmin() |
| 135 | 135 | { |
| 136 | - $site = Route::input( 'site', Input::get( 'site', 'default' ) ); |
|
| 137 | - $lang = Input::get( 'locale', config( 'app.locale', 'en' ) ); |
|
| 138 | - $resource = Route::input( 'resource' ); |
|
| 136 | + $site = Route::input('site', Input::get('site', 'default')); |
|
| 137 | + $lang = Input::get('locale', config('app.locale', 'en')); |
|
| 138 | + $resource = Route::input('resource'); |
|
| 139 | 139 | |
| 140 | - $aimeos = app( 'aimeos' )->get(); |
|
| 141 | - $templatePaths = $aimeos->getCustomPaths( 'admin/jsonadm/templates' ); |
|
| 140 | + $aimeos = app('aimeos')->get(); |
|
| 141 | + $templatePaths = $aimeos->getCustomPaths('admin/jsonadm/templates'); |
|
| 142 | 142 | |
| 143 | - $context = app( 'aimeos.context' )->get( false, 'backend' ); |
|
| 144 | - $context->setI18n( app('aimeos.i18n')->get( array( $lang, 'en' ) ) ); |
|
| 145 | - $context->setLocale( app('aimeos.locale')->getBackend( $context, $site ) ); |
|
| 146 | - $context->setView( app( 'aimeos.view' )->create( $context, $templatePaths, $lang ) ); |
|
| 143 | + $context = app('aimeos.context')->get(false, 'backend'); |
|
| 144 | + $context->setI18n(app('aimeos.i18n')->get(array($lang, 'en'))); |
|
| 145 | + $context->setLocale(app('aimeos.locale')->getBackend($context, $site)); |
|
| 146 | + $context->setView(app('aimeos.view')->create($context, $templatePaths, $lang)); |
|
| 147 | 147 | |
| 148 | - return \Aimeos\Admin\JsonAdm::create( $context, $aimeos, $resource ); |
|
| 148 | + return \Aimeos\Admin\JsonAdm::create($context, $aimeos, $resource); |
|
| 149 | 149 | } |
| 150 | 150 | } |