| @@ -43,29 +43,29 @@ discard block | ||
| 43 | 43 | */ | 
| 44 | 44 | public function fire() | 
| 45 | 45 |  	{ | 
| 46 | - $code = $this->argument( 'email' ); | |
| 47 | -		if( ( $password = $this->option( 'password' ) ) === null ) { | |
| 48 | - $password = $this->secret( 'Password' ); | |
| 46 | +		$code = $this->argument('email'); | |
| 47 | +		if (($password = $this->option('password')) === null) { | |
| 48 | +			$password = $this->secret('Password'); | |
| 49 | 49 | } | 
| 50 | 50 | |
| 51 | - $context = $this->getLaravel()->make( 'Aimeos\Shop\Base\Context' )->get( false, 'backend' ); | |
| 52 | - $context->setEditor( 'aimeos:account' ); | |
| 51 | +		$context = $this->getLaravel()->make('Aimeos\Shop\Base\Context')->get(false, 'backend'); | |
| 52 | +		$context->setEditor('aimeos:account'); | |
| 53 | 53 | |
| 54 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); | |
| 55 | - $context->setLocale( $localeManager->createItem() ); | |
| 54 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); | |
| 55 | + $context->setLocale($localeManager->createItem()); | |
| 56 | 56 | |
| 57 | - $user = $this->createCustomerItem( $context, $code, $password ); | |
| 57 | + $user = $this->createCustomerItem($context, $code, $password); | |
| 58 | 58 | |
| 59 | -		if( $this->option( 'admin' ) ) { | |
| 60 | - $this->addGroup( $context, $user, 'admin' ); | |
| 59 | +		if ($this->option('admin')) { | |
| 60 | + $this->addGroup($context, $user, 'admin'); | |
| 61 | 61 | } | 
| 62 | 62 | |
| 63 | -		if( $this->option( 'api' ) ) { | |
| 64 | - $this->addGroup( $context, $user, 'api' ); | |
| 63 | +		if ($this->option('api')) { | |
| 64 | + $this->addGroup($context, $user, 'api'); | |
| 65 | 65 | } | 
| 66 | 66 | |
| 67 | -		if( $this->option( 'editor' ) ) { | |
| 68 | - $this->addGroup( $context, $user, 'editor' ); | |
| 67 | +		if ($this->option('editor')) { | |
| 68 | + $this->addGroup($context, $user, 'editor'); | |
| 69 | 69 | } | 
| 70 | 70 | } | 
| 71 | 71 | |
| @@ -77,33 +77,33 @@ 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\Factory::createManager( $context, 'customer/lists' ); | |
| 83 | - $typeManager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists/type' ); | |
| 82 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists'); | |
| 83 | + $typeManager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists/type'); | |
| 84 | 84 | |
| 85 | - $typeid = $typeManager->findItem( 'default', array(), 'customer/group' )->getId(); | |
| 85 | +		$typeid = $typeManager->findItem('default', array(), 'customer/group')->getId(); | |
| 86 | 86 | |
| 87 | 87 | $search = $manager->createSearch(); | 
| 88 | 88 | $expr = array( | 
| 89 | - $search->compare( '==', 'customer.lists.parentid', $userid ), | |
| 90 | - $search->compare( '==', 'customer.lists.refid', $groupid ), | |
| 91 | - $search->compare( '==', 'customer.lists.domain', 'customer/group' ), | |
| 92 | - $search->compare( '==', 'customer.lists.typeid', $typeid ), | |
| 89 | +			$search->compare('==', 'customer.lists.parentid', $userid), | |
| 90 | +			$search->compare('==', 'customer.lists.refid', $groupid), | |
| 91 | +			$search->compare('==', 'customer.lists.domain', 'customer/group'), | |
| 92 | +			$search->compare('==', 'customer.lists.typeid', $typeid), | |
| 93 | 93 | ); | 
| 94 | - $search->setConditions( $search->combine( '&&', $expr ) ); | |
| 95 | - $search->setSlice( 0, 1 ); | |
| 94 | +		$search->setConditions($search->combine('&&', $expr)); | |
| 95 | + $search->setSlice(0, 1); | |
| 96 | 96 | |
| 97 | - if( count( $manager->searchItems( $search ) ) === 0 ) | |
| 97 | + if (count($manager->searchItems($search)) === 0) | |
| 98 | 98 |  		{ | 
| 99 | 99 | $item = $manager->createItem(); | 
| 100 | - $item->setDomain( 'customer/group' ); | |
| 101 | - $item->setParentId( $userid ); | |
| 102 | - $item->setTypeId( $typeid ); | |
| 103 | - $item->setRefId( $groupid ); | |
| 104 | - $item->setStatus( 1 ); | |
| 100 | +			$item->setDomain('customer/group'); | |
| 101 | + $item->setParentId($userid); | |
| 102 | + $item->setTypeId($typeid); | |
| 103 | + $item->setRefId($groupid); | |
| 104 | + $item->setStatus(1); | |
| 105 | 105 | |
| 106 | - $manager->saveItem( $item, false ); | |
| 106 | + $manager->saveItem($item, false); | |
| 107 | 107 | } | 
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -115,23 +115,23 @@ discard block | ||
| 115 | 115 | * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object | 
| 116 | 116 | * @param string $group Unique customer group code | 
| 117 | 117 | */ | 
| 118 | - protected function addGroup( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group ) | |
| 118 | + protected function addGroup(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group) | |
| 119 | 119 |  	{ | 
| 120 | - $this->info( sprintf( 'Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode() ) ); | |
| 120 | +		$this->info(sprintf('Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode())); | |
| 121 | 121 | |
| 122 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); | |
| 122 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); | |
| 123 | 123 | |
| 124 | - foreach( $this->getSiteItems( $context, $this->argument( 'site' ) ) as $siteItem ) | |
| 124 | +		foreach ($this->getSiteItems($context, $this->argument('site')) as $siteItem) | |
| 125 | 125 |  		{ | 
| 126 | - $localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false ); | |
| 126 | + $localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false); | |
| 127 | 127 | |
| 128 | 128 | $lcontext = clone $context; | 
| 129 | - $lcontext->setLocale( $localeItem ); | |
| 129 | + $lcontext->setLocale($localeItem); | |
| 130 | 130 | |
| 131 | - $this->info( '- ' . $siteItem->getCode() ); | |
| 131 | +			$this->info('- '.$siteItem->getCode()); | |
| 132 | 132 | |
| 133 | - $groupItem = $this->getGroupItem( $lcontext, $group ); | |
| 134 | - $this->addListItem( $lcontext, $user->getId(), $groupItem->getId() ); | |
| 133 | + $groupItem = $this->getGroupItem($lcontext, $group); | |
| 134 | + $this->addListItem($lcontext, $user->getId(), $groupItem->getId()); | |
| 135 | 135 | } | 
| 136 | 136 | } | 
| 137 | 137 | |
| @@ -146,22 +146,22 @@ discard block | ||
| 146 | 146 | * @param string $password New user password | 
| 147 | 147 | * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object | 
| 148 | 148 | */ | 
| 149 | - protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password ) | |
| 149 | + protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password) | |
| 150 | 150 |  	{ | 
| 151 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' ); | |
| 151 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer'); | |
| 152 | 152 | |
| 153 | 153 |  		try { | 
| 154 | - $item = $manager->findItem( $email ); | |
| 155 | -		} catch( \Aimeos\MShop\Exception $e ) { | |
| 154 | + $item = $manager->findItem($email); | |
| 155 | +		} catch (\Aimeos\MShop\Exception $e) { | |
| 156 | 156 | $item = $manager->createItem(); | 
| 157 | 157 | } | 
| 158 | 158 | |
| 159 | - $item->setCode( $email ); | |
| 160 | - $item->setLabel( $email ); | |
| 161 | - $item->getPaymentAddress()->setEmail( $email ); | |
| 162 | - $item->setPassword( $password ); | |
| 159 | + $item->setCode($email); | |
| 160 | + $item->setLabel($email); | |
| 161 | + $item->getPaymentAddress()->setEmail($email); | |
| 162 | + $item->setPassword($password); | |
| 163 | 163 | |
| 164 | - $manager->saveItem( $item ); | |
| 164 | + $manager->saveItem($item); | |
| 165 | 165 | |
| 166 | 166 | return $item; | 
| 167 | 167 | } | 
| @@ -175,8 +175,8 @@ discard block | ||
| 175 | 175 | protected function getArguments() | 
| 176 | 176 |  	{ | 
| 177 | 177 | return array( | 
| 178 | - array( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' ), | |
| 179 | - array( 'site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)' ), | |
| 178 | +			array('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created'), | |
| 179 | +			array('site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)'), | |
| 180 | 180 | ); | 
| 181 | 181 | } | 
| 182 | 182 | |
| @@ -188,21 +188,21 @@ discard block | ||
| 188 | 188 | * @param string $code Unique customer group code | 
| 189 | 189 | * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object | 
| 190 | 190 | */ | 
| 191 | - protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code ) | |
| 191 | + protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code) | |
| 192 | 192 |  	{ | 
| 193 | - $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' ); | |
| 193 | +		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group'); | |
| 194 | 194 | |
| 195 | 195 | try | 
| 196 | 196 |  		{ | 
| 197 | - $item = $manager->findItem( $code ); | |
| 197 | + $item = $manager->findItem($code); | |
| 198 | 198 | } | 
| 199 | - catch( \Aimeos\MShop\Exception $e ) | |
| 199 | + catch (\Aimeos\MShop\Exception $e) | |
| 200 | 200 |  		{ | 
| 201 | 201 | $item = $manager->createItem(); | 
| 202 | - $item->setLabel( $code ); | |
| 203 | - $item->setCode( $code ); | |
| 202 | + $item->setLabel($code); | |
| 203 | + $item->setCode($code); | |
| 204 | 204 | |
| 205 | - $manager->saveItem( $item ); | |
| 205 | + $manager->saveItem($item); | |
| 206 | 206 | } | 
| 207 | 207 | |
| 208 | 208 | return $item; | 
| @@ -217,10 +217,10 @@ discard block | ||
| 217 | 217 | protected function getOptions() | 
| 218 | 218 |  	{ | 
| 219 | 219 | return array( | 
| 220 | - array( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' ), | |
| 221 | - array( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' ), | |
| 222 | - array( 'api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs' ), | |
| 223 | - array( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' ), | |
| 220 | +			array('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)'), | |
| 221 | +			array('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges'), | |
| 222 | +			array('api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs'), | |
| 223 | +			array('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges'), | |
| 224 | 224 | ); | 
| 225 | 225 | } | 
| 226 | 226 | } |