@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @param Container $container Container object to access parameters |
33 | 33 | */ |
34 | - public function __construct( Container $container ) |
|
34 | + public function __construct(Container $container) |
|
35 | 35 | { |
36 | 36 | $this->container = $container; |
37 | 37 | } |
@@ -44,38 +44,38 @@ discard block |
||
44 | 44 | * @param string $type Configuration type ("frontend" or "backend") |
45 | 45 | * @return \Aimeos\MShop\Context\Item\Iface Context object |
46 | 46 | */ |
47 | - public function get( $locale = true, $type = 'frontend' ) |
|
47 | + public function get($locale = true, $type = 'frontend') |
|
48 | 48 | { |
49 | - $config = $this->container->get( 'aimeos_config' )->get( $type ); |
|
49 | + $config = $this->container->get('aimeos_config')->get($type); |
|
50 | 50 | |
51 | - if( self::$context === null ) |
|
51 | + if (self::$context === null) |
|
52 | 52 | { |
53 | 53 | $context = new \Aimeos\MShop\Context\Item\Standard(); |
54 | - $context->setConfig( $config ); |
|
54 | + $context->setConfig($config); |
|
55 | 55 | |
56 | - $this->addDataBaseManager( $context ); |
|
57 | - $this->addFilesystemManager( $context ); |
|
58 | - $this->addMessageQueueManager( $context ); |
|
59 | - $this->addLogger( $context ); |
|
60 | - $this->addCache( $context ); |
|
61 | - $this->addMailer( $context); |
|
62 | - $this->addProcess( $context); |
|
56 | + $this->addDataBaseManager($context); |
|
57 | + $this->addFilesystemManager($context); |
|
58 | + $this->addMessageQueueManager($context); |
|
59 | + $this->addLogger($context); |
|
60 | + $this->addCache($context); |
|
61 | + $this->addMailer($context); |
|
62 | + $this->addProcess($context); |
|
63 | 63 | |
64 | 64 | self::$context = $context; |
65 | 65 | } |
66 | 66 | |
67 | 67 | $context = self::$context; |
68 | - $context->setConfig( $config ); |
|
68 | + $context->setConfig($config); |
|
69 | 69 | |
70 | - if( $locale === true ) |
|
70 | + if ($locale === true) |
|
71 | 71 | { |
72 | - $localeItem = $this->container->get('aimeos_locale')->get( $context ); |
|
73 | - $context->setI18n( $this->container->get('aimeos_i18n')->get( array( $localeItem->getLanguageId() ) ) ); |
|
74 | - $context->setLocale( $localeItem ); |
|
72 | + $localeItem = $this->container->get('aimeos_locale')->get($context); |
|
73 | + $context->setI18n($this->container->get('aimeos_i18n')->get(array($localeItem->getLanguageId()))); |
|
74 | + $context->setLocale($localeItem); |
|
75 | 75 | } |
76 | 76 | |
77 | - $this->addSession( $context ); |
|
78 | - $this->addUserGroups( $context); |
|
77 | + $this->addSession($context); |
|
78 | + $this->addUserGroups($context); |
|
79 | 79 | |
80 | 80 | return $context; |
81 | 81 | } |
@@ -87,11 +87,11 @@ discard block |
||
87 | 87 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object including config |
88 | 88 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
89 | 89 | */ |
90 | - protected function addCache( \Aimeos\MShop\Context\Item\Iface $context ) |
|
90 | + protected function addCache(\Aimeos\MShop\Context\Item\Iface $context) |
|
91 | 91 | { |
92 | - $cache = new \Aimeos\MAdmin\Cache\Proxy\Standard( $context ); |
|
92 | + $cache = new \Aimeos\MAdmin\Cache\Proxy\Standard($context); |
|
93 | 93 | |
94 | - return $context->setCache( $cache ); |
|
94 | + return $context->setCache($cache); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | |
@@ -101,11 +101,11 @@ discard block |
||
101 | 101 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
102 | 102 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
103 | 103 | */ |
104 | - protected function addDatabaseManager( \Aimeos\MShop\Context\Item\Iface $context ) |
|
104 | + protected function addDatabaseManager(\Aimeos\MShop\Context\Item\Iface $context) |
|
105 | 105 | { |
106 | - $dbm = new \Aimeos\MW\DB\Manager\DBAL( $context->getConfig() ); |
|
106 | + $dbm = new \Aimeos\MW\DB\Manager\DBAL($context->getConfig()); |
|
107 | 107 | |
108 | - return $context->setDatabaseManager( $dbm ); |
|
108 | + return $context->setDatabaseManager($dbm); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
116 | 116 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
117 | 117 | */ |
118 | - protected function addFilesystemManager( \Aimeos\MShop\Context\Item\Iface $context ) |
|
118 | + protected function addFilesystemManager(\Aimeos\MShop\Context\Item\Iface $context) |
|
119 | 119 | { |
120 | - $fs = new \Aimeos\MW\Filesystem\Manager\Standard( $context->getConfig() ); |
|
120 | + $fs = new \Aimeos\MW\Filesystem\Manager\Standard($context->getConfig()); |
|
121 | 121 | |
122 | - return $context->setFilesystemManager( $fs ); |
|
122 | + return $context->setFilesystemManager($fs); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | |
@@ -129,11 +129,11 @@ discard block |
||
129 | 129 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
130 | 130 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
131 | 131 | */ |
132 | - protected function addLogger( \Aimeos\MShop\Context\Item\Iface $context ) |
|
132 | + protected function addLogger(\Aimeos\MShop\Context\Item\Iface $context) |
|
133 | 133 | { |
134 | - $logger = \Aimeos\MAdmin\Log\Manager\Factory::createManager( $context ); |
|
134 | + $logger = \Aimeos\MAdmin\Log\Manager\Factory::createManager($context); |
|
135 | 135 | |
136 | - return $context->setLogger( $logger ); |
|
136 | + return $context->setLogger($logger); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | |
@@ -144,12 +144,12 @@ discard block |
||
144 | 144 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
145 | 145 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
146 | 146 | */ |
147 | - protected function addMailer( \Aimeos\MShop\Context\Item\Iface $context ) |
|
147 | + protected function addMailer(\Aimeos\MShop\Context\Item\Iface $context) |
|
148 | 148 | { |
149 | 149 | $container = $this->container; |
150 | - $mail = new \Aimeos\MW\Mail\Swift( function() use ( $container) { return $container->get( 'mailer' ); } ); |
|
150 | + $mail = new \Aimeos\MW\Mail\Swift(function() use ($container) { return $container->get('mailer'); } ); |
|
151 | 151 | |
152 | - return $context->setMail( $mail ); |
|
152 | + return $context->setMail($mail); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | |
@@ -159,11 +159,11 @@ discard block |
||
159 | 159 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
160 | 160 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
161 | 161 | */ |
162 | - protected function addMessageQueueManager( \Aimeos\MShop\Context\Item\Iface $context ) |
|
162 | + protected function addMessageQueueManager(\Aimeos\MShop\Context\Item\Iface $context) |
|
163 | 163 | { |
164 | - $mq = new \Aimeos\MW\MQueue\Manager\Standard( $context->getConfig() ); |
|
164 | + $mq = new \Aimeos\MW\MQueue\Manager\Standard($context->getConfig()); |
|
165 | 165 | |
166 | - return $context->setMessageQueueManager( $mq ); |
|
166 | + return $context->setMessageQueueManager($mq); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | |
@@ -173,16 +173,16 @@ discard block |
||
173 | 173 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
174 | 174 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
175 | 175 | */ |
176 | - protected function addProcess( \Aimeos\MShop\Context\Item\Iface $context ) |
|
176 | + protected function addProcess(\Aimeos\MShop\Context\Item\Iface $context) |
|
177 | 177 | { |
178 | 178 | $config = $context->getConfig(); |
179 | - $max = $config->get( 'pcntl_max', 4 ); |
|
180 | - $prio = $config->get( 'pcntl_priority', 19 ); |
|
179 | + $max = $config->get('pcntl_max', 4); |
|
180 | + $prio = $config->get('pcntl_priority', 19); |
|
181 | 181 | |
182 | - $process = new \Aimeos\MW\Process\Pcntl( $max, $prio ); |
|
183 | - $process = new \Aimeos\MW\Process\Decorator\Check( $process ); |
|
182 | + $process = new \Aimeos\MW\Process\Pcntl($max, $prio); |
|
183 | + $process = new \Aimeos\MW\Process\Decorator\Check($process); |
|
184 | 184 | |
185 | - return $context->setProcess( $process ); |
|
185 | + return $context->setProcess($process); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | |
@@ -192,11 +192,11 @@ discard block |
||
192 | 192 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
193 | 193 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
194 | 194 | */ |
195 | - protected function addSession( \Aimeos\MShop\Context\Item\Iface $context ) |
|
195 | + protected function addSession(\Aimeos\MShop\Context\Item\Iface $context) |
|
196 | 196 | { |
197 | - $session = new \Aimeos\MW\Session\Symfony2( $this->container->get( 'session' ) ); |
|
197 | + $session = new \Aimeos\MW\Session\Symfony2($this->container->get('session')); |
|
198 | 198 | |
199 | - return $context->setSession( $session ); |
|
199 | + return $context->setSession($session); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
@@ -206,29 +206,29 @@ discard block |
||
206 | 206 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
207 | 207 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
208 | 208 | */ |
209 | - protected function addUserGroups( \Aimeos\MShop\Context\Item\Iface $context ) |
|
209 | + protected function addUserGroups(\Aimeos\MShop\Context\Item\Iface $context) |
|
210 | 210 | { |
211 | 211 | $username = ''; |
212 | - $token = $this->container->get( 'security.token_storage' )->getToken(); |
|
212 | + $token = $this->container->get('security.token_storage')->getToken(); |
|
213 | 213 | |
214 | - if( is_object( $token ) && is_object( $token->getUser() ) && method_exists( $token->getUser(), 'getId' ) ) |
|
214 | + if (is_object($token) && is_object($token->getUser()) && method_exists($token->getUser(), 'getId')) |
|
215 | 215 | { |
216 | - $username = $token->getUser()->getUsername(); |
|
216 | + $username = $token->getUser()->getUsername(); |
|
217 | 217 | $userid = $token->getUser()->getId(); |
218 | - $context->setUserId( $userid ); |
|
219 | - $context->setGroupIds( function() use ( $context, $userid ) |
|
218 | + $context->setUserId($userid); |
|
219 | + $context->setGroupIds(function() use ($context, $userid) |
|
220 | 220 | { |
221 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' ); |
|
222 | - return $manager->getItem( $userid, array( 'customer/group' ) )->getGroups(); |
|
221 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer'); |
|
222 | + return $manager->getItem($userid, array('customer/group'))->getGroups(); |
|
223 | 223 | } ); |
224 | 224 | } |
225 | 225 | |
226 | - if( $username === '' && $this->container->has( 'request_stack' ) |
|
227 | - && ( $request = $this->container->get('request_stack')->getMasterRequest() ) !== null |
|
226 | + if ($username === '' && $this->container->has('request_stack') |
|
227 | + && ($request = $this->container->get('request_stack')->getMasterRequest()) !== null |
|
228 | 228 | ) { |
229 | 229 | $username = $request->getClientIp(); |
230 | 230 | } |
231 | 231 | |
232 | - return $context->setEditor( $username ); |
|
232 | + return $context->setEditor($username); |
|
233 | 233 | } |
234 | 234 | } |
@@ -29,19 +29,19 @@ discard block |
||
29 | 29 | protected function configure() |
30 | 30 | { |
31 | 31 | $names = ''; |
32 | - $aimeos = new \Aimeos\Bootstrap( array() ); |
|
33 | - $cntlPaths = $aimeos->getCustomPaths( 'controller/jobs' ); |
|
34 | - $controllers = \Aimeos\Controller\Jobs\Factory::getControllers( $this->getBareContext(), $aimeos, $cntlPaths ); |
|
32 | + $aimeos = new \Aimeos\Bootstrap(array()); |
|
33 | + $cntlPaths = $aimeos->getCustomPaths('controller/jobs'); |
|
34 | + $controllers = \Aimeos\Controller\Jobs\Factory::getControllers($this->getBareContext(), $aimeos, $cntlPaths); |
|
35 | 35 | |
36 | - foreach( $controllers as $key => $controller ) { |
|
37 | - $names .= str_pad( $key, 30 ) . $controller->getName() . PHP_EOL; |
|
36 | + foreach ($controllers as $key => $controller) { |
|
37 | + $names .= str_pad($key, 30).$controller->getName().PHP_EOL; |
|
38 | 38 | } |
39 | 39 | |
40 | - $this->setName( 'aimeos:jobs' ); |
|
41 | - $this->setDescription( 'Executes the job controllers' ); |
|
42 | - $this->addArgument( 'jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"' ); |
|
43 | - $this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)' ); |
|
44 | - $this->setHelp( "Available jobs are:\n" . $names ); |
|
40 | + $this->setName('aimeos:jobs'); |
|
41 | + $this->setDescription('Executes the job controllers'); |
|
42 | + $this->addArgument('jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"'); |
|
43 | + $this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)'); |
|
44 | + $this->setHelp("Available jobs are:\n".$names); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -51,32 +51,32 @@ discard block |
||
51 | 51 | * @param InputInterface $input Input object |
52 | 52 | * @param OutputInterface $output Output object |
53 | 53 | */ |
54 | - protected function execute( InputInterface $input, OutputInterface $output ) |
|
54 | + protected function execute(InputInterface $input, OutputInterface $output) |
|
55 | 55 | { |
56 | 56 | $context = $this->getContext(); |
57 | 57 | $process = $context->getProcess(); |
58 | - $aimeos = $this->getContainer()->get( 'aimeos' )->get(); |
|
58 | + $aimeos = $this->getContainer()->get('aimeos')->get(); |
|
59 | 59 | |
60 | - $jobs = explode( ' ', $input->getArgument( 'jobs' ) ); |
|
61 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); |
|
60 | + $jobs = explode(' ', $input->getArgument('jobs')); |
|
61 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); |
|
62 | 62 | |
63 | - foreach( $this->getSiteItems( $context, $input ) as $siteItem ) |
|
63 | + foreach ($this->getSiteItems($context, $input) as $siteItem) |
|
64 | 64 | { |
65 | - $localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false ); |
|
66 | - $localeItem->setLanguageId( null ); |
|
67 | - $localeItem->setCurrencyId( null ); |
|
65 | + $localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false); |
|
66 | + $localeItem->setLanguageId(null); |
|
67 | + $localeItem->setCurrencyId(null); |
|
68 | 68 | |
69 | - $context->setLocale( $localeItem ); |
|
69 | + $context->setLocale($localeItem); |
|
70 | 70 | |
71 | - $output->writeln( sprintf( 'Executing the Aimeos jobs for "<info>%s</info>"', $siteItem->getCode() ) ); |
|
71 | + $output->writeln(sprintf('Executing the Aimeos jobs for "<info>%s</info>"', $siteItem->getCode())); |
|
72 | 72 | |
73 | - foreach( $jobs as $jobname ) |
|
73 | + foreach ($jobs as $jobname) |
|
74 | 74 | { |
75 | - $fcn = function( $context, $aimeos, $jobname ) { |
|
76 | - \Aimeos\Controller\Jobs\Factory::createController( $context, $aimeos, $jobname )->run(); |
|
75 | + $fcn = function($context, $aimeos, $jobname) { |
|
76 | + \Aimeos\Controller\Jobs\Factory::createController($context, $aimeos, $jobname)->run(); |
|
77 | 77 | }; |
78 | 78 | |
79 | - $process->start( $fcn, [$context, $aimeos, $jobname], true ); |
|
79 | + $process->start($fcn, [$context, $aimeos, $jobname], true); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 | |
@@ -93,15 +93,15 @@ discard block |
||
93 | 93 | { |
94 | 94 | $ctx = new \Aimeos\MShop\Context\Item\Standard(); |
95 | 95 | |
96 | - $conf = new \Aimeos\MW\Config\PHPArray( array(), array() ); |
|
97 | - $ctx->setConfig( $conf ); |
|
96 | + $conf = new \Aimeos\MW\Config\PHPArray(array(), array()); |
|
97 | + $ctx->setConfig($conf); |
|
98 | 98 | |
99 | - $locale = \Aimeos\MShop\Factory::createManager( $ctx, 'locale' )->createItem(); |
|
100 | - $locale->setLanguageId( 'en' ); |
|
101 | - $ctx->setLocale( $locale ); |
|
99 | + $locale = \Aimeos\MShop\Factory::createManager($ctx, 'locale')->createItem(); |
|
100 | + $locale->setLanguageId('en'); |
|
101 | + $ctx->setLocale($locale); |
|
102 | 102 | |
103 | - $i18n = new \Aimeos\MW\Translation\None( 'en' ); |
|
104 | - $ctx->setI18n( array( 'en' => $i18n ) ); |
|
103 | + $i18n = new \Aimeos\MW\Translation\None('en'); |
|
104 | + $ctx->setI18n(array('en' => $i18n)); |
|
105 | 105 | |
106 | 106 | return $ctx; |
107 | 107 | } |
@@ -116,19 +116,19 @@ discard block |
||
116 | 116 | { |
117 | 117 | $container = $this->getContainer(); |
118 | 118 | $aimeos = $container->get('aimeos')->get(); |
119 | - $context = $container->get( 'aimeos_context' )->get( false, 'command' ); |
|
119 | + $context = $container->get('aimeos_context')->get(false, 'command'); |
|
120 | 120 | |
121 | - $tmplPaths = $aimeos->getCustomPaths( 'controller/jobs/templates' ); |
|
122 | - $tmplPaths = array_merge( $tmplPaths, $aimeos->getCustomPaths( 'client/html/templates' ) ); |
|
123 | - $view = $container->get('aimeos_view')->create( $context, $tmplPaths ); |
|
121 | + $tmplPaths = $aimeos->getCustomPaths('controller/jobs/templates'); |
|
122 | + $tmplPaths = array_merge($tmplPaths, $aimeos->getCustomPaths('client/html/templates')); |
|
123 | + $view = $container->get('aimeos_view')->create($context, $tmplPaths); |
|
124 | 124 | |
125 | - $langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context )->getSubManager( 'language' ); |
|
126 | - $langids = array_keys( $langManager->searchItems( $langManager->createSearch( true ) ) ); |
|
127 | - $i18n = $this->getContainer()->get( 'aimeos_i18n' )->get( $langids ); |
|
125 | + $langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context)->getSubManager('language'); |
|
126 | + $langids = array_keys($langManager->searchItems($langManager->createSearch(true))); |
|
127 | + $i18n = $this->getContainer()->get('aimeos_i18n')->get($langids); |
|
128 | 128 | |
129 | - $context->setEditor( 'aimeos:jobs' ); |
|
130 | - $context->setView( $view ); |
|
131 | - $context->setI18n( $i18n ); |
|
129 | + $context->setEditor('aimeos:jobs'); |
|
130 | + $context->setView($view); |
|
131 | + $context->setI18n($i18n); |
|
132 | 132 | |
133 | 133 | return $context; |
134 | 134 | } |