@@ -34,65 +34,65 @@ discard block |
||
34 | 34 | * @param \Illuminate\Http\Request $request Laravel request object |
35 | 35 | * @return \Illuminate\Contracts\View\View View for rendering the output |
36 | 36 | */ |
37 | - public function indexAction( Request $request ) |
|
37 | + public function indexAction(Request $request) |
|
38 | 38 | { |
39 | - if( config( 'shop.authorize', true ) ) { |
|
40 | - $this->authorize( 'admin', [['admin']] ); |
|
39 | + if (config('shop.authorize', true)) { |
|
40 | + $this->authorize('admin', [['admin']]); |
|
41 | 41 | } |
42 | 42 | |
43 | - $site = Route::input( 'site', Input::get( 'site', 'default' ) ); |
|
44 | - $lang = Route::input( 'lang', Input::get( 'lang', config( 'app.locale', 'en' ) ) ); |
|
45 | - $tab = Route::input( 'tab', Input::get( 'tab', 0 ) ); |
|
43 | + $site = Route::input('site', Input::get('site', 'default')); |
|
44 | + $lang = Route::input('lang', Input::get('lang', config('app.locale', 'en'))); |
|
45 | + $tab = Route::input('tab', Input::get('tab', 0)); |
|
46 | 46 | |
47 | - $aimeos = app( '\Aimeos\Shop\Base\Aimeos' ); |
|
47 | + $aimeos = app('\Aimeos\Shop\Base\Aimeos'); |
|
48 | 48 | |
49 | 49 | $bootstrap = $aimeos->get(); |
50 | - $cntlPaths = $bootstrap->getCustomPaths( 'controller/extjs' ); |
|
50 | + $cntlPaths = $bootstrap->getCustomPaths('controller/extjs'); |
|
51 | 51 | |
52 | - $context = app( '\Aimeos\Shop\Base\Context' )->get( false, 'backend' ); |
|
53 | - $context->setLocale( app('\Aimeos\Shop\Base\Locale')->getBackend( $context, $site ) ); |
|
52 | + $context = app('\Aimeos\Shop\Base\Context')->get(false, 'backend'); |
|
53 | + $context->setLocale(app('\Aimeos\Shop\Base\Locale')->getBackend($context, $site)); |
|
54 | 54 | |
55 | - $controller = new \Aimeos\Controller\ExtJS\JsonRpc( $context, $cntlPaths ); |
|
55 | + $controller = new \Aimeos\Controller\ExtJS\JsonRpc($context, $cntlPaths); |
|
56 | 56 | $cssFiles = array(); |
57 | 57 | |
58 | - foreach( $bootstrap->getCustomPaths( 'admin/extjs' ) as $base => $paths ) |
|
58 | + foreach ($bootstrap->getCustomPaths('admin/extjs') as $base => $paths) |
|
59 | 59 | { |
60 | - foreach( $paths as $path ) |
|
60 | + foreach ($paths as $path) |
|
61 | 61 | { |
62 | - $jsbAbsPath = $base . '/' . $path; |
|
62 | + $jsbAbsPath = $base.'/'.$path; |
|
63 | 63 | |
64 | - if( !is_file( $jsbAbsPath ) ) { |
|
65 | - throw new \Exception( sprintf( 'JSB2 file "%1$s" not found', $jsbAbsPath ) ); |
|
64 | + if (!is_file($jsbAbsPath)) { |
|
65 | + throw new \Exception(sprintf('JSB2 file "%1$s" not found', $jsbAbsPath)); |
|
66 | 66 | } |
67 | 67 | |
68 | - $jsb2 = new \Aimeos\MW\Jsb2\Standard( $jsbAbsPath, dirname( $path ) ); |
|
69 | - $cssFiles = array_merge( $cssFiles, $jsb2->getUrls( 'css' ) ); |
|
68 | + $jsb2 = new \Aimeos\MW\Jsb2\Standard($jsbAbsPath, dirname($path)); |
|
69 | + $cssFiles = array_merge($cssFiles, $jsb2->getUrls('css')); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
73 | - $jqadmUrl = route( 'aimeos_shop_jqadm_search', array( 'site' => $site, 'resource' => 'product' ) ); |
|
74 | - $jsonUrl = route( 'aimeos_shop_extadm_json', array( 'site' => $site, '_token' => csrf_token() ) ); |
|
75 | - $adminUrl = route( 'aimeos_shop_extadm', array( 'site' => '<site>', 'lang' => '<lang>', 'tab' => '<tab>' ) ); |
|
73 | + $jqadmUrl = route('aimeos_shop_jqadm_search', array('site' => $site, 'resource' => 'product')); |
|
74 | + $jsonUrl = route('aimeos_shop_extadm_json', array('site' => $site, '_token' => csrf_token())); |
|
75 | + $adminUrl = route('aimeos_shop_extadm', array('site' => '<site>', 'lang' => '<lang>', 'tab' => '<tab>')); |
|
76 | 76 | |
77 | 77 | $vars = array( |
78 | 78 | 'site' => $site, |
79 | 79 | 'lang' => $lang, |
80 | 80 | 'cssFiles' => $cssFiles, |
81 | - 'languages' => $this->getJsonLanguages( $context), |
|
82 | - 'config' => $this->getJsonClientConfig( $context ), |
|
83 | - 'siteitem' => $this->getJsonSiteItem( $context, $site ), |
|
84 | - 'i18nContent' => $this->getJsonClientI18n( $bootstrap->getI18nPaths(), $lang ), |
|
81 | + 'languages' => $this->getJsonLanguages($context), |
|
82 | + 'config' => $this->getJsonClientConfig($context), |
|
83 | + 'siteitem' => $this->getJsonSiteItem($context, $site), |
|
84 | + 'i18nContent' => $this->getJsonClientI18n($bootstrap->getI18nPaths(), $lang), |
|
85 | 85 | 'searchSchemas' => $controller->getJsonSearchSchemas(), |
86 | 86 | 'itemSchemas' => $controller->getJsonItemSchemas(), |
87 | - 'smd' => $controller->getJsonSmd( $jsonUrl ), |
|
88 | - 'urlTemplate' => str_replace( ['<', '>'], ['{', '}'], urldecode( $adminUrl ) ), |
|
89 | - 'uploaddir' => config( 'shop::uploaddir' ), |
|
87 | + 'smd' => $controller->getJsonSmd($jsonUrl), |
|
88 | + 'urlTemplate' => str_replace(['<', '>'], ['{', '}'], urldecode($adminUrl)), |
|
89 | + 'uploaddir' => config('shop::uploaddir'), |
|
90 | 90 | 'version' => $aimeos->getVersion(), |
91 | 91 | 'jqadmurl' => $jqadmUrl, |
92 | 92 | 'activeTab' => $tab, |
93 | 93 | ); |
94 | 94 | |
95 | - return View::make( 'shop::extadm.index', $vars ); |
|
95 | + return View::make('shop::extadm.index', $vars); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | |
@@ -102,25 +102,25 @@ discard block |
||
102 | 102 | * @param \Illuminate\Http\Request $request Laravel request object |
103 | 103 | * @return \Illuminate\Contracts\View\View View for rendering the output |
104 | 104 | */ |
105 | - public function doAction( Request $request ) |
|
105 | + public function doAction(Request $request) |
|
106 | 106 | { |
107 | - if( config( 'shop.authorize', true ) ) { |
|
108 | - $this->authorize( 'admin', [['admin']] ); |
|
107 | + if (config('shop.authorize', true)) { |
|
108 | + $this->authorize('admin', [['admin']]); |
|
109 | 109 | } |
110 | 110 | |
111 | - $site = Route::input( 'site', Input::get( 'site', 'default' ) ); |
|
111 | + $site = Route::input('site', Input::get('site', 'default')); |
|
112 | 112 | |
113 | - $aimeos = app( '\Aimeos\Shop\Base\Aimeos' )->get(); |
|
114 | - $cntlPaths = $aimeos->getCustomPaths( 'controller/extjs' ); |
|
113 | + $aimeos = app('\Aimeos\Shop\Base\Aimeos')->get(); |
|
114 | + $cntlPaths = $aimeos->getCustomPaths('controller/extjs'); |
|
115 | 115 | |
116 | - $context = app( '\Aimeos\Shop\Base\Context' )->get( false, 'backend' ); |
|
117 | - $context->setView( app( '\Aimeos\Shop\Base\View' )->create( $context->getConfig(), array() ) ); |
|
118 | - $context->setLocale( app('\Aimeos\Shop\Base\Locale')->getBackend( $context, $site ) ); |
|
116 | + $context = app('\Aimeos\Shop\Base\Context')->get(false, 'backend'); |
|
117 | + $context->setView(app('\Aimeos\Shop\Base\View')->create($context->getConfig(), array())); |
|
118 | + $context->setLocale(app('\Aimeos\Shop\Base\Locale')->getBackend($context, $site)); |
|
119 | 119 | |
120 | - $controller = new \Aimeos\Controller\ExtJS\JsonRpc( $context, $cntlPaths ); |
|
120 | + $controller = new \Aimeos\Controller\ExtJS\JsonRpc($context, $cntlPaths); |
|
121 | 121 | |
122 | - $response = $controller->process( Input::instance()->request->all(), $request->getContent() ); |
|
123 | - return View::make( 'shop::extadm.do', array( 'output' => $response ) ); |
|
122 | + $response = $controller->process(Input::instance()->request->all(), $request->getContent()); |
|
123 | + return View::make('shop::extadm.do', array('output' => $response)); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
@@ -131,32 +131,32 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function fileAction() |
133 | 133 | { |
134 | - if( config( 'shop.authorize', true ) ) { |
|
135 | - $this->authorize( 'admin', [['admin']] ); |
|
134 | + if (config('shop.authorize', true)) { |
|
135 | + $this->authorize('admin', [['admin']]); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | $contents = ''; |
139 | 139 | $jsFiles = array(); |
140 | - $aimeos = app( '\Aimeos\Shop\Base\Aimeos' )->get(); |
|
140 | + $aimeos = app('\Aimeos\Shop\Base\Aimeos')->get(); |
|
141 | 141 | |
142 | - foreach( $aimeos->getCustomPaths( 'admin/extjs' ) as $base => $paths ) |
|
142 | + foreach ($aimeos->getCustomPaths('admin/extjs') as $base => $paths) |
|
143 | 143 | { |
144 | - foreach( $paths as $path ) |
|
144 | + foreach ($paths as $path) |
|
145 | 145 | { |
146 | - $jsbAbsPath = $base . '/' . $path; |
|
147 | - $jsb2 = new \Aimeos\MW\Jsb2\Standard( $jsbAbsPath, dirname( $jsbAbsPath ) ); |
|
148 | - $jsFiles = array_merge( $jsFiles, $jsb2->getFiles( 'js' ) ); |
|
146 | + $jsbAbsPath = $base.'/'.$path; |
|
147 | + $jsb2 = new \Aimeos\MW\Jsb2\Standard($jsbAbsPath, dirname($jsbAbsPath)); |
|
148 | + $jsFiles = array_merge($jsFiles, $jsb2->getFiles('js')); |
|
149 | 149 | } |
150 | 150 | } |
151 | 151 | |
152 | - foreach( $jsFiles as $file ) |
|
152 | + foreach ($jsFiles as $file) |
|
153 | 153 | { |
154 | - if( ( $content = file_get_contents( $file ) ) !== false ) { |
|
154 | + if (($content = file_get_contents($file)) !== false) { |
|
155 | 155 | $contents .= $content; |
156 | 156 | } |
157 | 157 | } |
158 | 158 | |
159 | - return response( $contents )->header( 'Content-Type', 'application/javascript' ); |
|
159 | + return response($contents)->header('Content-Type', 'application/javascript'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | |
@@ -166,15 +166,15 @@ discard block |
||
166 | 166 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
167 | 167 | * @return array List of language IDs with labels |
168 | 168 | */ |
169 | - protected function getJsonLanguages( \Aimeos\MShop\Context\Item\Iface $context ) |
|
169 | + protected function getJsonLanguages(\Aimeos\MShop\Context\Item\Iface $context) |
|
170 | 170 | { |
171 | 171 | $result = array(); |
172 | 172 | |
173 | - foreach( app( '\Aimeos\Shop\Base\Aimeos' )->get()->getI18nList( 'admin' ) as $id ) { |
|
174 | - $result[] = array( 'id' => $id, 'label' => $id ); |
|
173 | + foreach (app('\Aimeos\Shop\Base\Aimeos')->get()->getI18nList('admin') as $id) { |
|
174 | + $result[] = array('id' => $id, 'label' => $id); |
|
175 | 175 | } |
176 | 176 | |
177 | - return json_encode( $result ); |
|
177 | + return json_encode($result); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | |
@@ -184,10 +184,10 @@ discard block |
||
184 | 184 | * @param \Aimeos\MShop\Context\Item\Iface $context Context item object |
185 | 185 | * @return string JSON encoded configuration object |
186 | 186 | */ |
187 | - protected function getJsonClientConfig( \Aimeos\MShop\Context\Item\Iface $context ) |
|
187 | + protected function getJsonClientConfig(\Aimeos\MShop\Context\Item\Iface $context) |
|
188 | 188 | { |
189 | - $config = $context->getConfig()->get( 'admin/extjs', array() ); |
|
190 | - return json_encode( array( 'admin' => array( 'extjs' => $config ) ), JSON_FORCE_OBJECT ); |
|
189 | + $config = $context->getConfig()->get('admin/extjs', array()); |
|
190 | + return json_encode(array('admin' => array('extjs' => $config)), JSON_FORCE_OBJECT); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -198,16 +198,16 @@ discard block |
||
198 | 198 | * @param string $lang ISO language code like "en" or "en_GB" |
199 | 199 | * @return string JSON encoded translation object |
200 | 200 | */ |
201 | - protected function getJsonClientI18n( array $i18nPaths, $lang ) |
|
201 | + protected function getJsonClientI18n(array $i18nPaths, $lang) |
|
202 | 202 | { |
203 | - $i18n = new \Aimeos\MW\Translation\Gettext( $i18nPaths, $lang ); |
|
203 | + $i18n = new \Aimeos\MW\Translation\Gettext($i18nPaths, $lang); |
|
204 | 204 | |
205 | 205 | $content = array( |
206 | - 'admin' => $i18n->getAll( 'admin' ), |
|
207 | - 'admin/ext' => $i18n->getAll( 'admin/ext' ), |
|
206 | + 'admin' => $i18n->getAll('admin'), |
|
207 | + 'admin/ext' => $i18n->getAll('admin/ext'), |
|
208 | 208 | ); |
209 | 209 | |
210 | - return json_encode( $content, JSON_FORCE_OBJECT ); |
|
210 | + return json_encode($content, JSON_FORCE_OBJECT); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -219,18 +219,18 @@ discard block |
||
219 | 219 | * @return string JSON encoded site item object |
220 | 220 | * @throws Exception If no site item was found for the code |
221 | 221 | */ |
222 | - protected function getJsonSiteItem( \Aimeos\MShop\Context\Item\Iface $context, $site ) |
|
222 | + protected function getJsonSiteItem(\Aimeos\MShop\Context\Item\Iface $context, $site) |
|
223 | 223 | { |
224 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'locale/site' ); |
|
224 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'locale/site'); |
|
225 | 225 | |
226 | 226 | $criteria = $manager->createSearch(); |
227 | - $criteria->setConditions( $criteria->compare( '==', 'locale.site.code', $site ) ); |
|
228 | - $items = $manager->searchItems( $criteria ); |
|
227 | + $criteria->setConditions($criteria->compare('==', 'locale.site.code', $site)); |
|
228 | + $items = $manager->searchItems($criteria); |
|
229 | 229 | |
230 | - if( ( $item = reset( $items ) ) === false ) { |
|
231 | - throw new \Exception( sprintf( 'No site found for code "%1$s"', $site ) ); |
|
230 | + if (($item = reset($items)) === false) { |
|
231 | + throw new \Exception(sprintf('No site found for code "%1$s"', $site)); |
|
232 | 232 | } |
233 | 233 | |
234 | - return json_encode( $item->toArray() ); |
|
234 | + return json_encode($item->toArray()); |
|
235 | 235 | } |
236 | 236 | } |
237 | 237 | \ No newline at end of file |
@@ -43,21 +43,21 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function fire() |
45 | 45 | { |
46 | - $aimeos = $this->getLaravel()->make( '\Aimeos\Shop\Base\Aimeos' )->get(); |
|
46 | + $aimeos = $this->getLaravel()->make('\Aimeos\Shop\Base\Aimeos')->get(); |
|
47 | 47 | $context = $this->getContext(); |
48 | 48 | |
49 | - $jobs = explode( ' ', $this->argument( 'jobs' ) ); |
|
50 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); |
|
49 | + $jobs = explode(' ', $this->argument('jobs')); |
|
50 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); |
|
51 | 51 | |
52 | - foreach( $this->getSiteItems( $context, $this->argument( 'site' ) ) as $siteItem ) |
|
52 | + foreach ($this->getSiteItems($context, $this->argument('site')) as $siteItem) |
|
53 | 53 | { |
54 | - $localeItem = $localeManager->bootstrap( $siteItem->getCode(), 'en', '', false ); |
|
55 | - $context->setLocale( $localeItem ); |
|
54 | + $localeItem = $localeManager->bootstrap($siteItem->getCode(), 'en', '', false); |
|
55 | + $context->setLocale($localeItem); |
|
56 | 56 | |
57 | - $this->info( sprintf( 'Executing the Aimeos jobs for "%s"', $siteItem->getCode() ) ); |
|
57 | + $this->info(sprintf('Executing the Aimeos jobs for "%s"', $siteItem->getCode())); |
|
58 | 58 | |
59 | - foreach( $jobs as $jobname ) { |
|
60 | - \Aimeos\Controller\Jobs\Factory::createController( $context, $aimeos, $jobname )->run(); |
|
59 | + foreach ($jobs as $jobname) { |
|
60 | + \Aimeos\Controller\Jobs\Factory::createController($context, $aimeos, $jobname)->run(); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | } |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | protected function getArguments() |
72 | 72 | { |
73 | 73 | return array( |
74 | - array( 'jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"' ), |
|
75 | - array( 'site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)' ), |
|
74 | + array('jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"'), |
|
75 | + array('site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)'), |
|
76 | 76 | ); |
77 | 77 | } |
78 | 78 | |
@@ -95,19 +95,19 @@ discard block |
||
95 | 95 | protected function getContext() |
96 | 96 | { |
97 | 97 | $lv = $this->getLaravel(); |
98 | - $aimeos = $lv->make( '\Aimeos\Shop\Base\Aimeos' )->get(); |
|
99 | - $context = $lv->make( '\Aimeos\Shop\Base\Context' )->get( false, 'backend' ); |
|
98 | + $aimeos = $lv->make('\Aimeos\Shop\Base\Aimeos')->get(); |
|
99 | + $context = $lv->make('\Aimeos\Shop\Base\Context')->get(false, 'backend'); |
|
100 | 100 | |
101 | - $tmplPaths = $aimeos->getCustomPaths( 'controller/jobs/templates' ); |
|
102 | - $view = $lv->make( '\Aimeos\Shop\Base\View' )->create( $context->getConfig(), $tmplPaths ); |
|
101 | + $tmplPaths = $aimeos->getCustomPaths('controller/jobs/templates'); |
|
102 | + $view = $lv->make('\Aimeos\Shop\Base\View')->create($context->getConfig(), $tmplPaths); |
|
103 | 103 | |
104 | - $langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context )->getSubManager( 'language' ); |
|
105 | - $langids = array_keys( $langManager->searchItems( $langManager->createSearch( true ) ) ); |
|
106 | - $i18n = $lv->make( '\Aimeos\Shop\Base\I18n' )->get( $langids ); |
|
104 | + $langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context)->getSubManager('language'); |
|
105 | + $langids = array_keys($langManager->searchItems($langManager->createSearch(true))); |
|
106 | + $i18n = $lv->make('\Aimeos\Shop\Base\I18n')->get($langids); |
|
107 | 107 | |
108 | - $context->setEditor( 'aimeos:jobs' ); |
|
109 | - $context->setView( $view ); |
|
110 | - $context->setI18n( $i18n ); |
|
108 | + $context->setEditor('aimeos:jobs'); |
|
109 | + $context->setView($view); |
|
110 | + $context->setI18n($i18n); |
|
111 | 111 | |
112 | 112 | return $context; |
113 | 113 | } |