Completed
Push — master ( 87a11c...1a2eee )
by Aimeos
53:53
created
src/Aimeos/Shop/Controller/AdminController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -36,20 +36,20 @@
 block discarded – undo
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( config( 'shop.authorize', true ) && ( Auth::check() === false
42
-			|| $request->user()->can( 'admin', ['admin', 'editor'] ) ) === false
41
+		if (config('shop.authorize', true) && (Auth::check() === false
42
+			|| $request->user()->can('admin', ['admin', 'editor'])) === false
43 43
 		) {
44
-			return View::make( 'shop::admin.index' );
44
+			return View::make('shop::admin.index');
45 45
 		}
46 46
 
47 47
 		$param = array(
48 48
 			'resource' => 'dashboard',
49
-			'site' => Route::input( 'site', Input::get( 'site', 'default' ) ),
50
-			'lang' => Route::input( 'lang', Input::get( 'lang', config( 'app.locale', 'en' ) ) )
49
+			'site' => Route::input('site', Input::get('site', 'default')),
50
+			'lang' => Route::input('lang', Input::get('lang', config('app.locale', 'en')))
51 51
 		);
52 52
 
53
-		return redirect()->route( 'aimeos_shop_jqadm_search', $param );
53
+		return redirect()->route('aimeos_shop_jqadm_search', $param);
54 54
 	}
55 55
 }
Please login to merge, or discard this patch.
src/Aimeos/Shop/Base/View.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -32,56 +32,56 @@  discard block
 block discarded – undo
32 32
 	 * @param string|null $locale Code of the current language or null for no translation
33 33
 	 * @return \Aimeos\MW\View\Iface View object
34 34
 	 */
35
-	public function create( \Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $locale = null )
35
+	public function create(\Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $locale = null)
36 36
 	{
37 37
 		$params = $fixed = array();
38 38
 
39
-		if( $locale !== null )
39
+		if ($locale !== null)
40 40
 		{
41 41
 			$params = Route::current()->parameters() + Input::all();
42 42
 			$fixed = $this->getFixedParams();
43 43
 
44
-			$i18n = app('\Aimeos\Shop\Base\I18n')->get( array( $locale ) );
44
+			$i18n = app('\Aimeos\Shop\Base\I18n')->get(array($locale));
45 45
 			$translation = $i18n[$locale];
46 46
 		}
47 47
 		else
48 48
 		{
49
-			$translation = new \Aimeos\MW\Translation\None( 'en' );
49
+			$translation = new \Aimeos\MW\Translation\None('en');
50 50
 		}
51 51
 
52 52
 
53
-		$view = new \Aimeos\MW\View\Standard( $templatePaths );
53
+		$view = new \Aimeos\MW\View\Standard($templatePaths);
54 54
 
55
-		$helper = new \Aimeos\MW\View\Helper\Translate\Standard( $view, $translation );
56
-		$view->addHelper( 'translate', $helper );
55
+		$helper = new \Aimeos\MW\View\Helper\Translate\Standard($view, $translation);
56
+		$view->addHelper('translate', $helper);
57 57
 
58
-		$helper = new \Aimeos\MW\View\Helper\Url\Laravel5( $view, app('url'), $fixed );
59
-		$view->addHelper( 'url', $helper );
58
+		$helper = new \Aimeos\MW\View\Helper\Url\Laravel5($view, app('url'), $fixed);
59
+		$view->addHelper('url', $helper);
60 60
 
61
-		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $view, $params );
62
-		$view->addHelper( 'param', $helper );
61
+		$helper = new \Aimeos\MW\View\Helper\Param\Standard($view, $params);
62
+		$view->addHelper('param', $helper);
63 63
 
64
-		$config = new \Aimeos\MW\Config\Decorator\Protect( clone $context->getConfig(), array( 'admin', 'client' ) );
65
-		$helper = new \Aimeos\MW\View\Helper\Config\Standard( $view, $config );
66
-		$view->addHelper( 'config', $helper );
64
+		$config = new \Aimeos\MW\Config\Decorator\Protect(clone $context->getConfig(), array('admin', 'client'));
65
+		$helper = new \Aimeos\MW\View\Helper\Config\Standard($view, $config);
66
+		$view->addHelper('config', $helper);
67 67
 
68
-		$sepDec = $config->get( 'client/html/common/format/seperatorDecimal', '.' );
69
-		$sep1000 = $config->get( 'client/html/common/format/seperator1000', ' ' );
70
-		$decimals = $config->get( 'client/html/common/format/decimals', 2 );
71
-		$helper = new \Aimeos\MW\View\Helper\Number\Standard( $view, $sepDec, $sep1000, $decimals );
72
-		$view->addHelper( 'number', $helper );
68
+		$sepDec = $config->get('client/html/common/format/seperatorDecimal', '.');
69
+		$sep1000 = $config->get('client/html/common/format/seperator1000', ' ');
70
+		$decimals = $config->get('client/html/common/format/decimals', 2);
71
+		$helper = new \Aimeos\MW\View\Helper\Number\Standard($view, $sepDec, $sep1000, $decimals);
72
+		$view->addHelper('number', $helper);
73 73
 
74
-		$helper = new \Aimeos\MW\View\Helper\Request\Laravel5( $view, Request::instance() );
75
-		$view->addHelper( 'request', $helper );
74
+		$helper = new \Aimeos\MW\View\Helper\Request\Laravel5($view, Request::instance());
75
+		$view->addHelper('request', $helper);
76 76
 
77
-		$helper = new \Aimeos\MW\View\Helper\Response\Laravel5( $view );
78
-		$view->addHelper( 'response', $helper );
77
+		$helper = new \Aimeos\MW\View\Helper\Response\Laravel5($view);
78
+		$view->addHelper('response', $helper);
79 79
 
80
-		$helper = new \Aimeos\MW\View\Helper\Csrf\Standard( $view, '_token', csrf_token() );
81
-		$view->addHelper( 'csrf', $helper );
80
+		$helper = new \Aimeos\MW\View\Helper\Csrf\Standard($view, '_token', csrf_token());
81
+		$view->addHelper('csrf', $helper);
82 82
 
83
-		$helper = new \Aimeos\MW\View\Helper\Access\Standard( $view, $this->getGroups( $context ) );
84
-		$view->addHelper( 'access', $helper );
83
+		$helper = new \Aimeos\MW\View\Helper\Access\Standard($view, $this->getGroups($context));
84
+		$view->addHelper('access', $helper);
85 85
 
86 86
 		return $view;
87 87
 	}
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
 	{
97 97
 		$fixed = array();
98 98
 
99
-		if( ( $value = Route::input( 'site' ) ) !== null ) {
99
+		if (($value = Route::input('site')) !== null) {
100 100
 			$fixed['site'] = $value;
101 101
 		}
102 102
 
103
-		if( ( $value = Route::input( 'locale' ) ) !== null ) {
103
+		if (($value = Route::input('locale')) !== null) {
104 104
 			$fixed['locale'] = $value;
105 105
 		}
106 106
 
107
-		if( ( $value = Route::input( 'currency' ) ) !== null ) {
107
+		if (($value = Route::input('currency')) !== null) {
108 108
 			$fixed['currency'] = $value;
109 109
 		}
110 110
 
@@ -118,17 +118,17 @@  discard block
 block discarded – undo
118 118
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
119 119
 	 * @return \Closure Function which returns the user group codes
120 120
 	 */
121
-	protected function getGroups( \Aimeos\MShop\Context\Item\Iface $context )
121
+	protected function getGroups(\Aimeos\MShop\Context\Item\Iface $context)
122 122
 	{
123
-		return function() use ( $context )
123
+		return function() use ($context)
124 124
 		{
125 125
 			$list = array();
126
-			$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/group' );
126
+			$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/group');
127 127
 
128 128
 			$search = $manager->createSearch();
129
-			$search->setConditions( $search->compare( '==', 'customer.group.id', $context->getGroupIds() ) );
129
+			$search->setConditions($search->compare('==', 'customer.group.id', $context->getGroupIds()));
130 130
 
131
-			foreach( $manager->searchItems( $search ) as $item ) {
131
+			foreach ($manager->searchItems($search) as $item) {
132 132
 				$list[] = $item->getCode();
133 133
 			}
134 134
 
Please login to merge, or discard this patch.
src/Aimeos/Shop/Base/Context.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * @param \Illuminate\Contracts\Config\Repository $config Configuration object
51 51
 	 * @param \Illuminate\Session\Store $session Laravel session object
52 52
 	 */
53
-	public function __construct( \Illuminate\Contracts\Config\Repository $config, \Illuminate\Session\Store $session )
53
+	public function __construct(\Illuminate\Contracts\Config\Repository $config, \Illuminate\Session\Store $session)
54 54
 	{
55 55
 		$this->config = $config;
56 56
 		$this->session = $session;
@@ -63,51 +63,51 @@  discard block
 block discarded – undo
63 63
 	 * @param boolean $locale True to add locale object to context, false if not
64 64
 	 * @return \Aimeos\MShop\Context\Item\Iface Context object
65 65
 	 */
66
-	public function get( $locale = true )
66
+	public function get($locale = true)
67 67
 	{
68
-		if( self::$context === null )
68
+		if (self::$context === null)
69 69
 		{
70 70
 			$context = new \Aimeos\MShop\Context\Item\Standard();
71 71
 
72 72
 			$config = $this->getConfig();
73
-			$context->setConfig( $config );
73
+			$context->setConfig($config);
74 74
 
75
-			$dbm = new \Aimeos\MW\DB\Manager\DBAL( $config );
76
-			$context->setDatabaseManager( $dbm );
75
+			$dbm = new \Aimeos\MW\DB\Manager\DBAL($config);
76
+			$context->setDatabaseManager($dbm);
77 77
 
78
-			$fs = new \Aimeos\MW\Filesystem\Manager\Laravel( app( 'filesystem' ), $config, storage_path( 'aimeos' ) );
79
-			$context->setFilesystemManager( $fs );
78
+			$fs = new \Aimeos\MW\Filesystem\Manager\Laravel(app('filesystem'), $config, storage_path('aimeos'));
79
+			$context->setFilesystemManager($fs);
80 80
 
81
-			$mq = new \Aimeos\MW\MQueue\Manager\Standard( $config );
82
-			$context->setMessageQueueManager( $mq );
81
+			$mq = new \Aimeos\MW\MQueue\Manager\Standard($config);
82
+			$context->setMessageQueueManager($mq);
83 83
 
84
-			$mail = new \Aimeos\MW\Mail\Swift( function() { return app( 'mailer' )->getSwiftMailer(); } );
85
-			$context->setMail( $mail );
84
+			$mail = new \Aimeos\MW\Mail\Swift(function() { return app('mailer')->getSwiftMailer(); } );
85
+			$context->setMail($mail);
86 86
 
87
-			$logger = \Aimeos\MAdmin\Log\Manager\Factory::createManager( $context );
88
-			$context->setLogger( $logger );
87
+			$logger = \Aimeos\MAdmin\Log\Manager\Factory::createManager($context);
88
+			$context->setLogger($logger);
89 89
 
90
-			$cache = new \Aimeos\MAdmin\Cache\Proxy\Standard( $context );
91
-			$context->setCache( $cache );
90
+			$cache = new \Aimeos\MAdmin\Cache\Proxy\Standard($context);
91
+			$context->setCache($cache);
92 92
 
93 93
 			self::$context = $context;
94 94
 		}
95 95
 
96 96
 		$context = self::$context;
97 97
 
98
-		if( $locale === true )
98
+		if ($locale === true)
99 99
 		{
100
-			$localeItem = $this->getLocale( $context );
100
+			$localeItem = $this->getLocale($context);
101 101
 			$langid = $localeItem->getLanguageId();
102 102
 
103
-			$context->setLocale( $localeItem );
104
-			$context->setI18n( app('\Aimeos\Shop\Base\I18n')->get( array( $langid ) ) );
103
+			$context->setLocale($localeItem);
104
+			$context->setI18n(app('\Aimeos\Shop\Base\I18n')->get(array($langid)));
105 105
 		}
106 106
 
107
-		$session = new \Aimeos\MW\Session\Laravel5( $this->session );
108
-		$context->setSession( $session );
107
+		$session = new \Aimeos\MW\Session\Laravel5($this->session);
108
+		$context->setSession($session);
109 109
 
110
-		$this->addUser( $context );
110
+		$this->addUser($context);
111 111
 
112 112
 		return $context;
113 113
 	}
@@ -118,20 +118,20 @@  discard block
 block discarded – undo
118 118
 	 *
119 119
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
120 120
 	 */
121
-	protected function addUser( \Aimeos\MShop\Context\Item\Iface $context )
121
+	protected function addUser(\Aimeos\MShop\Context\Item\Iface $context)
122 122
 	{
123
-		if( ( $userid = Auth::id() ) !== null )
123
+		if (($userid = Auth::id()) !== null)
124 124
 		{
125
-			$context->setUserId( $userid );
126
-			$context->setGroupIds( function() use ( $context, $userid )
125
+			$context->setUserId($userid);
126
+			$context->setGroupIds(function() use ($context, $userid)
127 127
 			{
128
-				$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' );
129
-				return $manager->getItem( $userid, array( 'customer/group' ) )->getGroups();
128
+				$manager = \Aimeos\MShop\Factory::createManager($context, 'customer');
129
+				return $manager->getItem($userid, array('customer/group'))->getGroups();
130 130
 			} );
131 131
 		}
132 132
 
133
-		if( ( $user = Auth::user() ) !== null ) {
134
-			$context->setEditor( $user->name );
133
+		if (($user = Auth::user()) !== null) {
134
+			$context->setEditor($user->name);
135 135
 		}
136 136
 	}
137 137
 
@@ -143,14 +143,14 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	protected function getConfig()
145 145
 	{
146
-		$configPaths = app( '\Aimeos\Shop\Base\Aimeos' )->get()->getConfigPaths();
147
-		$config = new \Aimeos\MW\Config\PHPArray( array(), $configPaths );
146
+		$configPaths = app('\Aimeos\Shop\Base\Aimeos')->get()->getConfigPaths();
147
+		$config = new \Aimeos\MW\Config\PHPArray(array(), $configPaths);
148 148
 
149
-		if( function_exists( 'apc_store' ) === true && $this->config->get( 'shop.apc_enabled', false ) == true ) {
150
-			$config = new \Aimeos\MW\Config\Decorator\APC( $config, $this->config->get( 'shop.apc_prefix', 'laravel:' ) );
149
+		if (function_exists('apc_store') === true && $this->config->get('shop.apc_enabled', false) == true) {
150
+			$config = new \Aimeos\MW\Config\Decorator\APC($config, $this->config->get('shop.apc_prefix', 'laravel:'));
151 151
 		}
152 152
 
153
-		return new \Aimeos\MW\Config\Decorator\Memory( $config, $this->config->get( 'shop' ) );
153
+		return new \Aimeos\MW\Config\Decorator\Memory($config, $this->config->get('shop'));
154 154
 	}
155 155
 
156 156
 
@@ -160,18 +160,18 @@  discard block
 block discarded – undo
160 160
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
161 161
 	 * @return \Aimeos\MShop\Locale\Item\Iface Locale item object
162 162
 	 */
163
-	protected function getLocale( \Aimeos\MShop\Context\Item\Iface $context )
163
+	protected function getLocale(\Aimeos\MShop\Context\Item\Iface $context)
164 164
 	{
165
-		if( $this->locale === null )
165
+		if ($this->locale === null)
166 166
 		{
167
-			$site = Route::input( 'site', Input::get( 'site', 'default' ) );
168
-			$currency = Route::input( 'currency', Input::get( 'currency', '' ) );
169
-			$lang = Route::input( 'locale', Input::get( 'locale', '' ) );
167
+			$site = Route::input('site', Input::get('site', 'default'));
168
+			$currency = Route::input('currency', Input::get('currency', ''));
169
+			$lang = Route::input('locale', Input::get('locale', ''));
170 170
 
171
-			$disableSites = $this->config->get( 'shop.disableSites', true );
171
+			$disableSites = $this->config->get('shop.disableSites', true);
172 172
 
173
-			$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
174
-			$this->locale = $localeManager->bootstrap( $site, $lang, $currency, $disableSites );
173
+			$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
174
+			$this->locale = $localeManager->bootstrap($site, $lang, $currency, $disableSites);
175 175
 		}
176 176
 
177 177
 		return $this->locale;
Please login to merge, or discard this patch.
src/default.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -4,20 +4,20 @@  discard block
 block discarded – undo
4 4
 
5 5
 	'apc_enabled' => false,
6 6
 	'apc_prefix' => 'laravel:',
7
-	'extdir' => ( is_dir(base_path('ext')) ? base_path('ext') : dirname(__DIR__) . DIRECTORY_SEPARATOR . 'ext' ),
7
+	'extdir' => (is_dir(base_path('ext')) ? base_path('ext') : dirname(__DIR__).DIRECTORY_SEPARATOR.'ext'),
8 8
 	'uploaddir' => '/',
9 9
 
10 10
 	'page' => array(
11
-		'account-index' => array( 'account/profile','account/history','account/favorite','account/watch','basket/mini','catalog/session' ),
12
-		'basket-index' => array( 'basket/standard','basket/related' ),
13
-		'catalog-count' => array( 'catalog/count' ),
14
-		'catalog-detail' => array( 'basket/mini','catalog/stage','catalog/detail','catalog/session' ),
15
-		'catalog-list' => array( 'basket/mini','catalog/filter','catalog/stage','catalog/lists' ),
16
-		'catalog-stock' => array( 'catalog/stock' ),
17
-		'catalog-suggest' => array( 'catalog/suggest' ),
18
-		'checkout-confirm' => array( 'checkout/confirm' ),
19
-		'checkout-index' => array( 'checkout/standard' ),
20
-		'checkout-update' => array( 'checkout/update'),
11
+		'account-index' => array('account/profile', 'account/history', 'account/favorite', 'account/watch', 'basket/mini', 'catalog/session'),
12
+		'basket-index' => array('basket/standard', 'basket/related'),
13
+		'catalog-count' => array('catalog/count'),
14
+		'catalog-detail' => array('basket/mini', 'catalog/stage', 'catalog/detail', 'catalog/session'),
15
+		'catalog-list' => array('basket/mini', 'catalog/filter', 'catalog/stage', 'catalog/lists'),
16
+		'catalog-stock' => array('catalog/stock'),
17
+		'catalog-suggest' => array('catalog/suggest'),
18
+		'checkout-confirm' => array('checkout/confirm'),
19
+		'checkout-index' => array('checkout/standard'),
20
+		'checkout-update' => array('checkout/update'),
21 21
 	),
22 22
 
23 23
 	'resource' => array(
@@ -28,24 +28,24 @@  discard block
 block discarded – undo
28 28
 			'database' => env('DB_DATABASE', 'laravel'),
29 29
 			'username' => env('DB_USERNAME', 'root'),
30 30
 			'password' => env('DB_PASSWORD', ''),
31
-			'stmt' => array( "SET NAMES 'utf8'", "SET SESSION sql_mode='ANSI'" ),
31
+			'stmt' => array("SET NAMES 'utf8'", "SET SESSION sql_mode='ANSI'"),
32 32
 			'opt-persistent' => 0,
33 33
 			'limit' => 2,
34 34
 		),
35 35
 		'fs' => array(
36 36
 			'adapter' => 'Standard',
37 37
 			'basedir' => public_path(),
38
-			'tempdir' => storage_path( 'tmp' ),
38
+			'tempdir' => storage_path('tmp'),
39 39
 		),
40 40
 		'fs-admin' => array(
41 41
 			'adapter' => 'Standard',
42
-			'basedir' => public_path( 'uploads' ),
43
-			'tempdir' => storage_path( 'tmp' ),
42
+			'basedir' => public_path('uploads'),
43
+			'tempdir' => storage_path('tmp'),
44 44
 		),
45 45
 		'fs-secure' => array(
46 46
 			'adapter' => 'Standard',
47
-			'basedir' => storage_path( 'secure' ),
48
-			'tempdir' => storage_path( 'tmp' ),
47
+			'basedir' => storage_path('secure'),
48
+			'tempdir' => storage_path('tmp'),
49 49
 		),
50 50
 		'mq' => array(
51 51
 			'adapter' => 'Standard',
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 						# in the "maxwidth" parameter
268 268
 						# 'maxheight' => 280,
269 269
 					),
270
-					'tempdir' => storage_path( 'aimeos' ),
270
+					'tempdir' => storage_path('aimeos'),
271 271
 				),
272 272
 			),
273 273
 		),
Please login to merge, or discard this patch.