@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * @since 2015.07 |
| 123 | 123 | * @category Developer |
| 124 | 124 | */ |
| 125 | - private $subPartNames = array( 'address', 'delivery', 'payment', 'summary', 'order', 'process' ); |
|
| 125 | + private $subPartNames = array('address', 'delivery', 'payment', 'summary', 'order', 'process'); |
|
| 126 | 126 | private $cache; |
| 127 | 127 | |
| 128 | 128 | |
@@ -134,42 +134,42 @@ discard block |
||
| 134 | 134 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 135 | 135 | * @return string HTML code |
| 136 | 136 | */ |
| 137 | - public function getBody( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 137 | + public function getBody($uid = '', array &$tags = array(), &$expire = null) |
|
| 138 | 138 | { |
| 139 | 139 | $context = $this->getContext(); |
| 140 | 140 | $view = $this->getView(); |
| 141 | 141 | |
| 142 | 142 | try |
| 143 | 143 | { |
| 144 | - $view = $this->setViewParams( $view, $tags, $expire ); |
|
| 144 | + $view = $this->setViewParams($view, $tags, $expire); |
|
| 145 | 145 | |
| 146 | 146 | $html = ''; |
| 147 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 148 | - $html .= $subclient->setView( $view )->getBody( $uid, $tags, $expire ); |
|
| 147 | + foreach ($this->getSubClients() as $subclient) { |
|
| 148 | + $html .= $subclient->setView($view)->getBody($uid, $tags, $expire); |
|
| 149 | 149 | } |
| 150 | 150 | $view->standardBody = $html; |
| 151 | 151 | } |
| 152 | - catch( \Aimeos\Client\Html\Exception $e ) |
|
| 152 | + catch (\Aimeos\Client\Html\Exception $e) |
|
| 153 | 153 | { |
| 154 | - $error = array( $this->getContext()->getI18n()->dt( 'client', $e->getMessage() ) ); |
|
| 155 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 154 | + $error = array($this->getContext()->getI18n()->dt('client', $e->getMessage())); |
|
| 155 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 156 | 156 | } |
| 157 | - catch( \Aimeos\Controller\Frontend\Exception $e ) |
|
| 157 | + catch (\Aimeos\Controller\Frontend\Exception $e) |
|
| 158 | 158 | { |
| 159 | - $error = array( $this->getContext()->getI18n()->dt( 'controller/frontend', $e->getMessage() ) ); |
|
| 160 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 159 | + $error = array($this->getContext()->getI18n()->dt('controller/frontend', $e->getMessage())); |
|
| 160 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 161 | 161 | } |
| 162 | - catch( \Aimeos\MShop\Exception $e ) |
|
| 162 | + catch (\Aimeos\MShop\Exception $e) |
|
| 163 | 163 | { |
| 164 | - $error = array( $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ) ); |
|
| 165 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 164 | + $error = array($this->getContext()->getI18n()->dt('mshop', $e->getMessage())); |
|
| 165 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 166 | 166 | } |
| 167 | - catch( \Exception $e ) |
|
| 167 | + catch (\Exception $e) |
|
| 168 | 168 | { |
| 169 | - $context->getLogger()->log( $e->getMessage() . PHP_EOL . $e->getTraceAsString() ); |
|
| 169 | + $context->getLogger()->log($e->getMessage().PHP_EOL.$e->getTraceAsString()); |
|
| 170 | 170 | |
| 171 | - $error = array( $context->getI18n()->dt( 'client', 'A non-recoverable error occured' ) ); |
|
| 172 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 171 | + $error = array($context->getI18n()->dt('client', 'A non-recoverable error occured')); |
|
| 172 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | /** client/html/checkout/standard/standard/template-body |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | $tplconf = 'client/html/checkout/standard/standard/template-body'; |
| 196 | 196 | $default = 'checkout/standard/body-default.php'; |
| 197 | 197 | |
| 198 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 198 | + return $view->render($view->config($tplconf, $default)); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | |
@@ -207,15 +207,15 @@ discard block |
||
| 207 | 207 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 208 | 208 | * @return string|null String including HTML tags for the header on error |
| 209 | 209 | */ |
| 210 | - public function getHeader( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 210 | + public function getHeader($uid = '', array &$tags = array(), &$expire = null) |
|
| 211 | 211 | { |
| 212 | 212 | try |
| 213 | 213 | { |
| 214 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 214 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 215 | 215 | |
| 216 | 216 | $html = ''; |
| 217 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 218 | - $html .= $subclient->setView( $view )->getHeader( $uid, $tags, $expire ); |
|
| 217 | + foreach ($this->getSubClients() as $subclient) { |
|
| 218 | + $html .= $subclient->setView($view)->getHeader($uid, $tags, $expire); |
|
| 219 | 219 | } |
| 220 | 220 | $view->standardHeader = $html; |
| 221 | 221 | |
@@ -243,11 +243,11 @@ discard block |
||
| 243 | 243 | $tplconf = 'client/html/checkout/standard/standard/template-header'; |
| 244 | 244 | $default = 'checkout/standard/header-default.php'; |
| 245 | 245 | |
| 246 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 246 | + return $view->render($view->config($tplconf, $default)); |
|
| 247 | 247 | } |
| 248 | - catch( \Exception $e ) |
|
| 248 | + catch (\Exception $e) |
|
| 249 | 249 | { |
| 250 | - $this->getContext()->getLogger()->log( $e->getMessage() . PHP_EOL . $e->getTraceAsString() ); |
|
| 250 | + $this->getContext()->getLogger()->log($e->getMessage().PHP_EOL.$e->getTraceAsString()); |
|
| 251 | 251 | } |
| 252 | 252 | } |
| 253 | 253 | |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | * @param string|null $name Name of the sub-client (Default if null) |
| 260 | 260 | * @return \Aimeos\Client\Html\Iface Sub-client object |
| 261 | 261 | */ |
| 262 | - public function getSubClient( $type, $name = null ) |
|
| 262 | + public function getSubClient($type, $name = null) |
|
| 263 | 263 | { |
| 264 | 264 | /** client/html/checkout/standard/decorators/excludes |
| 265 | 265 | * Excludes decorators added by the "common" option from the checkout standard html client |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | * @see client/html/checkout/standard/decorators/global |
| 336 | 336 | */ |
| 337 | 337 | |
| 338 | - return $this->createSubClient( 'checkout/standard/' . $type, $name ); |
|
| 338 | + return $this->createSubClient('checkout/standard/'.$type, $name); |
|
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | |
@@ -353,35 +353,35 @@ discard block |
||
| 353 | 353 | { |
| 354 | 354 | parent::process(); |
| 355 | 355 | } |
| 356 | - catch( \Aimeos\Client\Html\Exception $e ) |
|
| 356 | + catch (\Aimeos\Client\Html\Exception $e) |
|
| 357 | 357 | { |
| 358 | - $error = array( $this->getContext()->getI18n()->dt( 'client', $e->getMessage() ) ); |
|
| 359 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 358 | + $error = array($this->getContext()->getI18n()->dt('client', $e->getMessage())); |
|
| 359 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 360 | 360 | } |
| 361 | - catch( \Aimeos\Controller\Frontend\Exception $e ) |
|
| 361 | + catch (\Aimeos\Controller\Frontend\Exception $e) |
|
| 362 | 362 | { |
| 363 | - $error = array( $this->getContext()->getI18n()->dt( 'controller/frontend', $e->getMessage() ) ); |
|
| 364 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 363 | + $error = array($this->getContext()->getI18n()->dt('controller/frontend', $e->getMessage())); |
|
| 364 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 365 | 365 | } |
| 366 | - catch( \Aimeos\MShop\Plugin\Provider\Exception $e ) |
|
| 366 | + catch (\Aimeos\MShop\Plugin\Provider\Exception $e) |
|
| 367 | 367 | { |
| 368 | - $errors = array( $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ) ); |
|
| 369 | - $errors = array_merge( $errors, $this->translatePluginErrorCodes( $e->getErrorCodes() ) ); |
|
| 368 | + $errors = array($this->getContext()->getI18n()->dt('mshop', $e->getMessage())); |
|
| 369 | + $errors = array_merge($errors, $this->translatePluginErrorCodes($e->getErrorCodes())); |
|
| 370 | 370 | |
| 371 | 371 | $view->summaryErrorCodes = $e->getErrorCodes(); |
| 372 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $errors; |
|
| 372 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $errors; |
|
| 373 | 373 | } |
| 374 | - catch( \Aimeos\MShop\Exception $e ) |
|
| 374 | + catch (\Aimeos\MShop\Exception $e) |
|
| 375 | 375 | { |
| 376 | - $error = array( $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ) ); |
|
| 377 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 376 | + $error = array($this->getContext()->getI18n()->dt('mshop', $e->getMessage())); |
|
| 377 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 378 | 378 | } |
| 379 | - catch( \Exception $e ) |
|
| 379 | + catch (\Exception $e) |
|
| 380 | 380 | { |
| 381 | - $context->getLogger()->log( $e->getMessage() . PHP_EOL . $e->getTraceAsString() ); |
|
| 381 | + $context->getLogger()->log($e->getMessage().PHP_EOL.$e->getTraceAsString()); |
|
| 382 | 382 | |
| 383 | - $error = array( $context->getI18n()->dt( 'client', 'A non-recoverable error occured' ) ); |
|
| 384 | - $view->standardErrorList = $view->get( 'standardErrorList', array() ) + $error; |
|
| 383 | + $error = array($context->getI18n()->dt('client', 'A non-recoverable error occured')); |
|
| 384 | + $view->standardErrorList = $view->get('standardErrorList', array()) + $error; |
|
| 385 | 385 | } |
| 386 | 386 | } |
| 387 | 387 | |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | */ |
| 394 | 394 | protected function getSubClientNames() |
| 395 | 395 | { |
| 396 | - return $this->getContext()->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 396 | + return $this->getContext()->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 397 | 397 | } |
| 398 | 398 | |
| 399 | 399 | |
@@ -405,13 +405,13 @@ discard block |
||
| 405 | 405 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 406 | 406 | * @return \Aimeos\MW\View\Iface Modified view object |
| 407 | 407 | */ |
| 408 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 408 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 409 | 409 | { |
| 410 | - if( !isset( $this->cache ) ) |
|
| 410 | + if (!isset($this->cache)) |
|
| 411 | 411 | { |
| 412 | 412 | $context = $this->getContext(); |
| 413 | 413 | |
| 414 | - $basketCntl = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' ); |
|
| 414 | + $basketCntl = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket'); |
|
| 415 | 415 | $view->standardBasket = $basketCntl->get(); |
| 416 | 416 | |
| 417 | 417 | |
@@ -438,7 +438,7 @@ discard block |
||
| 438 | 438 | * @category User |
| 439 | 439 | * @see client/html/checkout/standard/standard/subparts |
| 440 | 440 | */ |
| 441 | - $default = $view->config( 'client/html/checkout/standard/url/step-active', 'summary' ); |
|
| 441 | + $default = $view->config('client/html/checkout/standard/url/step-active', 'summary'); |
|
| 442 | 442 | |
| 443 | 443 | /** client/html/checkout/standard/onepage |
| 444 | 444 | * Shows all named checkout subparts at once for a one page checkout |
@@ -470,24 +470,24 @@ discard block |
||
| 470 | 470 | * @since 2015.05 |
| 471 | 471 | * @category Developer |
| 472 | 472 | */ |
| 473 | - $onepage = $view->config( 'client/html/checkout/standard/onepage', array() ); |
|
| 474 | - $onestep = array_shift( $onepage ); // keep the first one page step |
|
| 473 | + $onepage = $view->config('client/html/checkout/standard/onepage', array()); |
|
| 474 | + $onestep = array_shift($onepage); // keep the first one page step |
|
| 475 | 475 | |
| 476 | - $steps = (array) $context->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 477 | - $steps = array_diff( $steps, $onepage ); // remove all remaining steps in $onepage |
|
| 476 | + $steps = (array) $context->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 477 | + $steps = array_diff($steps, $onepage); // remove all remaining steps in $onepage |
|
| 478 | 478 | |
| 479 | 479 | // use first step if default step isn't available |
| 480 | - $default = ( !in_array( $default, $steps ) ? reset( $steps ) : $default ); |
|
| 480 | + $default = (!in_array($default, $steps) ? reset($steps) : $default); |
|
| 481 | 481 | |
| 482 | - $current = $view->param( 'c_step', $default ); |
|
| 482 | + $current = $view->param('c_step', $default); |
|
| 483 | 483 | // use $onestep if current step isn't available due to one page layout |
| 484 | - $current = ( !in_array( $current, $steps ) ? $onestep : $current ); |
|
| 484 | + $current = (!in_array($current, $steps) ? $onestep : $current); |
|
| 485 | 485 | |
| 486 | - $cpos = $cpos = array_search( $current, $steps ); |
|
| 486 | + $cpos = $cpos = array_search($current, $steps); |
|
| 487 | 487 | |
| 488 | - if( !isset( $view->standardStepActive ) |
|
| 489 | - || ( ( $apos = array_search( $view->standardStepActive, $steps ) ) !== false |
|
| 490 | - && $cpos !== false && $cpos < $apos ) |
|
| 488 | + if (!isset($view->standardStepActive) |
|
| 489 | + || (($apos = array_search($view->standardStepActive, $steps)) !== false |
|
| 490 | + && $cpos !== false && $cpos < $apos) |
|
| 491 | 491 | ) { |
| 492 | 492 | $view->standardStepActive = $current; |
| 493 | 493 | } |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | $view->standardSteps = $steps; |
| 496 | 496 | |
| 497 | 497 | |
| 498 | - $this->cache = $this->addNavigationUrls( $view, $steps, $view->standardStepActive ); |
|
| 498 | + $this->cache = $this->addNavigationUrls($view, $steps, $view->standardStepActive); |
|
| 499 | 499 | } |
| 500 | 500 | |
| 501 | 501 | return $this->cache; |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | * @return \Aimeos\MW\View\Iface Enhanced view object |
| 512 | 512 | * @since 2016.05 |
| 513 | 513 | */ |
| 514 | - protected function addNavigationUrls( \Aimeos\MW\View\Iface $view, array $steps, $activeStep ) |
|
| 514 | + protected function addNavigationUrls(\Aimeos\MW\View\Iface $view, array $steps, $activeStep) |
|
| 515 | 515 | { |
| 516 | 516 | /** client/html/checkout/standard/url/target |
| 517 | 517 | * Destination of the URL where the controller specified in the URL is known |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | * @see client/html/checkout/standard/url/action |
| 528 | 528 | * @see client/html/checkout/standard/url/config |
| 529 | 529 | */ |
| 530 | - $cTarget = $view->config( 'client/html/checkout/standard/url/target' ); |
|
| 530 | + $cTarget = $view->config('client/html/checkout/standard/url/target'); |
|
| 531 | 531 | |
| 532 | 532 | /** client/html/checkout/standard/url/controller |
| 533 | 533 | * Name of the controller whose action should be called |
@@ -543,7 +543,7 @@ discard block |
||
| 543 | 543 | * @see client/html/checkout/standard/url/action |
| 544 | 544 | * @see client/html/checkout/standard/url/config |
| 545 | 545 | */ |
| 546 | - $cCntl = $view->config( 'client/html/checkout/standard/url/controller', 'checkout' ); |
|
| 546 | + $cCntl = $view->config('client/html/checkout/standard/url/controller', 'checkout'); |
|
| 547 | 547 | |
| 548 | 548 | /** client/html/checkout/standard/url/action |
| 549 | 549 | * Name of the action that should create the output |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * @see client/html/checkout/standard/url/controller |
| 560 | 560 | * @see client/html/checkout/standard/url/config |
| 561 | 561 | */ |
| 562 | - $cAction = $view->config( 'client/html/checkout/standard/url/action', 'index' ); |
|
| 562 | + $cAction = $view->config('client/html/checkout/standard/url/action', 'index'); |
|
| 563 | 563 | |
| 564 | 564 | /** client/html/checkout/standard/url/config |
| 565 | 565 | * Associative list of configuration options used for generating the URL |
@@ -582,32 +582,32 @@ discard block |
||
| 582 | 582 | * @see client/html/checkout/standard/url/action |
| 583 | 583 | * @see client/html/url/config |
| 584 | 584 | */ |
| 585 | - $cConfig = $view->config( 'client/html/checkout/standard/url/config', array() ); |
|
| 585 | + $cConfig = $view->config('client/html/checkout/standard/url/config', array()); |
|
| 586 | 586 | |
| 587 | 587 | |
| 588 | - $bTarget = $view->config( 'client/html/basket/standard/url/target' ); |
|
| 589 | - $bCntl = $view->config( 'client/html/basket/standard/url/controller', 'basket' ); |
|
| 590 | - $bAction = $view->config( 'client/html/basket/standard/url/action', 'index' ); |
|
| 591 | - $bConfig = $view->config( 'client/html/basket/standard/url/config', array() ); |
|
| 588 | + $bTarget = $view->config('client/html/basket/standard/url/target'); |
|
| 589 | + $bCntl = $view->config('client/html/basket/standard/url/controller', 'basket'); |
|
| 590 | + $bAction = $view->config('client/html/basket/standard/url/action', 'index'); |
|
| 591 | + $bConfig = $view->config('client/html/basket/standard/url/config', array()); |
|
| 592 | 592 | |
| 593 | 593 | |
| 594 | 594 | $step = null; |
| 595 | 595 | do { |
| 596 | 596 | $lastStep = $step; |
| 597 | 597 | } |
| 598 | - while( ( $step = array_shift( $steps ) ) !== null && $step !== $activeStep ); |
|
| 598 | + while (($step = array_shift($steps)) !== null && $step !== $activeStep); |
|
| 599 | 599 | |
| 600 | 600 | |
| 601 | - if( $lastStep !== null ) { |
|
| 602 | - $param = array( 'c_step' => $lastStep ); |
|
| 603 | - $view->standardUrlBack = $view->url( $cTarget, $cCntl, $cAction, $param, array(), $cConfig ); |
|
| 601 | + if ($lastStep !== null) { |
|
| 602 | + $param = array('c_step' => $lastStep); |
|
| 603 | + $view->standardUrlBack = $view->url($cTarget, $cCntl, $cAction, $param, array(), $cConfig); |
|
| 604 | 604 | } else { |
| 605 | - $view->standardUrlBack = $view->url( $bTarget, $bCntl, $bAction, array(), array(), $bConfig ); |
|
| 605 | + $view->standardUrlBack = $view->url($bTarget, $bCntl, $bAction, array(), array(), $bConfig); |
|
| 606 | 606 | } |
| 607 | 607 | |
| 608 | - if( !isset( $view->standardUrlNext ) && ( $nextStep = array_shift( $steps ) ) !== null ) { |
|
| 609 | - $param = array( 'c_step' => $nextStep ); |
|
| 610 | - $view->standardUrlNext = $view->url( $cTarget, $cCntl, $cAction, $param, array(), $cConfig ); |
|
| 608 | + if (!isset($view->standardUrlNext) && ($nextStep = array_shift($steps)) !== null) { |
|
| 609 | + $param = array('c_step' => $nextStep); |
|
| 610 | + $view->standardUrlNext = $view->url($cTarget, $cCntl, $cAction, $param, array(), $cConfig); |
|
| 611 | 611 | } |
| 612 | 612 | // don't overwrite $view->standardUrlNext so order step URL is used |
| 613 | 613 | |
@@ -86,13 +86,13 @@ discard block |
||
| 86 | 86 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 87 | 87 | * @return string HTML code |
| 88 | 88 | */ |
| 89 | - public function getBody( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 89 | + public function getBody($uid = '', array &$tags = array(), &$expire = null) |
|
| 90 | 90 | { |
| 91 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 91 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 92 | 92 | |
| 93 | 93 | $html = ''; |
| 94 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 95 | - $html .= $subclient->setView( $view )->getBody( $uid, $tags, $expire ); |
|
| 94 | + foreach ($this->getSubClients() as $subclient) { |
|
| 95 | + $html .= $subclient->setView($view)->getBody($uid, $tags, $expire); |
|
| 96 | 96 | } |
| 97 | 97 | $view->deliveryBody = $html; |
| 98 | 98 | |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | $tplconf = 'client/html/checkout/standard/address/delivery/standard/template-body'; |
| 120 | 120 | $default = 'checkout/standard/address-delivery-body-default.php'; |
| 121 | 121 | |
| 122 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 122 | + return $view->render($view->config($tplconf, $default)); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | |
@@ -131,13 +131,13 @@ discard block |
||
| 131 | 131 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 132 | 132 | * @return string|null String including HTML tags for the header on error |
| 133 | 133 | */ |
| 134 | - public function getHeader( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 134 | + public function getHeader($uid = '', array &$tags = array(), &$expire = null) |
|
| 135 | 135 | { |
| 136 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 136 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 137 | 137 | |
| 138 | 138 | $html = ''; |
| 139 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 140 | - $html .= $subclient->setView( $view )->getHeader( $uid, $tags, $expire ); |
|
| 139 | + foreach ($this->getSubClients() as $subclient) { |
|
| 140 | + $html .= $subclient->setView($view)->getHeader($uid, $tags, $expire); |
|
| 141 | 141 | } |
| 142 | 142 | $view->deliveryHeader = $html; |
| 143 | 143 | |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | $tplconf = 'client/html/checkout/standard/address/delivery/standard/template-header'; |
| 166 | 166 | $default = 'checkout/standard/address-delivery-header-default.php'; |
| 167 | 167 | |
| 168 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 168 | + return $view->render($view->config($tplconf, $default)); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | * @param string|null $name Name of the sub-client (Default if null) |
| 177 | 177 | * @return \Aimeos\Client\Html\Iface Sub-client object |
| 178 | 178 | */ |
| 179 | - public function getSubClient( $type, $name = null ) |
|
| 179 | + public function getSubClient($type, $name = null) |
|
| 180 | 180 | { |
| 181 | 181 | /** client/html/checkout/standard/address/delivery/decorators/excludes |
| 182 | 182 | * Excludes decorators added by the "common" option from the checkout standard address delivery html client |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | * @see client/html/checkout/standard/address/delivery/decorators/global |
| 253 | 253 | */ |
| 254 | 254 | |
| 255 | - return $this->createSubClient( 'checkout/standard/address/delivery/' . $type, $name ); |
|
| 255 | + return $this->createSubClient('checkout/standard/address/delivery/'.$type, $name); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | |
@@ -266,28 +266,28 @@ discard block |
||
| 266 | 266 | |
| 267 | 267 | try |
| 268 | 268 | { |
| 269 | - if( ( $id = $view->param( 'ca_delivery_delete', null ) ) !== null ) |
|
| 269 | + if (($id = $view->param('ca_delivery_delete', null)) !== null) |
|
| 270 | 270 | { |
| 271 | - $customerAddressManager = \Aimeos\MShop\Factory::createManager( $context, 'customer/address' ); |
|
| 272 | - $address = $customerAddressManager->getItem( $id ); |
|
| 271 | + $customerAddressManager = \Aimeos\MShop\Factory::createManager($context, 'customer/address'); |
|
| 272 | + $address = $customerAddressManager->getItem($id); |
|
| 273 | 273 | |
| 274 | - if( $address->getParentId() != $context->getUserId() ) { |
|
| 275 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Address with ID "%1$s" not found', $id ) ); |
|
| 274 | + if ($address->getParentId() != $context->getUserId()) { |
|
| 275 | + throw new \Aimeos\Client\Html\Exception(sprintf('Address with ID "%1$s" not found', $id)); |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - $customerAddressManager->deleteItem( $id ); |
|
| 278 | + $customerAddressManager->deleteItem($id); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | // only start if there's something to do |
| 282 | - if( $view->param( 'ca_deliveryoption', null ) === null ) { |
|
| 282 | + if ($view->param('ca_deliveryoption', null) === null) { |
|
| 283 | 283 | return; |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - $this->setAddress( $view ); |
|
| 286 | + $this->setAddress($view); |
|
| 287 | 287 | |
| 288 | 288 | parent::process(); |
| 289 | 289 | } |
| 290 | - catch( \Aimeos\Controller\Frontend\Exception $e ) |
|
| 290 | + catch (\Aimeos\Controller\Frontend\Exception $e) |
|
| 291 | 291 | { |
| 292 | 292 | $view->deliveryError = $e->getErrorList(); |
| 293 | 293 | throw $e; |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | * @param array &$params Associative list of address keys (order.base.address.* or customer.address.*) and their values |
| 302 | 302 | * @return array List of missing field names |
| 303 | 303 | */ |
| 304 | - protected function checkFields( array &$params ) |
|
| 304 | + protected function checkFields(array &$params) |
|
| 305 | 305 | { |
| 306 | 306 | $view = $this->getView(); |
| 307 | 307 | |
@@ -343,7 +343,7 @@ discard block |
||
| 343 | 343 | * @see client/html/checkout/standard/address/countries |
| 344 | 344 | * @see client/html/checkout/standard/address/validate |
| 345 | 345 | */ |
| 346 | - $mandatory = $view->config( 'client/html/checkout/standard/address/delivery/mandatory', $this->mandatory ); |
|
| 346 | + $mandatory = $view->config('client/html/checkout/standard/address/delivery/mandatory', $this->mandatory); |
|
| 347 | 347 | |
| 348 | 348 | /** client/html/checkout/standard/address/delivery/optional |
| 349 | 349 | * List of delivery address input fields that are optional |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | * @see client/html/checkout/standard/address/countries |
| 384 | 384 | * @see client/html/checkout/standard/address/validate |
| 385 | 385 | */ |
| 386 | - $optional = $view->config( 'client/html/checkout/standard/address/delivery/optional', $this->optional ); |
|
| 386 | + $optional = $view->config('client/html/checkout/standard/address/delivery/optional', $this->optional); |
|
| 387 | 387 | |
| 388 | 388 | /** client/html/checkout/standard/address/validate |
| 389 | 389 | * |
@@ -391,23 +391,23 @@ discard block |
||
| 391 | 391 | * @see client/html/checkout/standard/address/delivery/optional |
| 392 | 392 | */ |
| 393 | 393 | |
| 394 | - $allFields = array_flip( array_merge( $mandatory, $optional ) ); |
|
| 395 | - $invalid = $this->validateFields( $params, $allFields ); |
|
| 396 | - $this->checkSalutation( $params, $mandatory ); |
|
| 394 | + $allFields = array_flip(array_merge($mandatory, $optional)); |
|
| 395 | + $invalid = $this->validateFields($params, $allFields); |
|
| 396 | + $this->checkSalutation($params, $mandatory); |
|
| 397 | 397 | |
| 398 | - foreach( $invalid as $key => $name ) |
|
| 398 | + foreach ($invalid as $key => $name) |
|
| 399 | 399 | { |
| 400 | - $msg = $view->translate( 'client', 'Delivery address part "%1$s" is invalid' ); |
|
| 401 | - $invalid[$key] = sprintf( $msg, $name ); |
|
| 400 | + $msg = $view->translate('client', 'Delivery address part "%1$s" is invalid'); |
|
| 401 | + $invalid[$key] = sprintf($msg, $name); |
|
| 402 | 402 | } |
| 403 | 403 | |
| 404 | - foreach( $mandatory as $key ) |
|
| 404 | + foreach ($mandatory as $key) |
|
| 405 | 405 | { |
| 406 | - if( !isset( $params[$key] ) || $params[$key] == '' ) |
|
| 406 | + if (!isset($params[$key]) || $params[$key] == '') |
|
| 407 | 407 | { |
| 408 | - $msg = $view->translate( 'client', 'Delivery address part "%1$s" is missing' ); |
|
| 409 | - $invalid[$key] = sprintf( $msg, substr( $key, 19 ) ); |
|
| 410 | - unset( $params[$key] ); |
|
| 408 | + $msg = $view->translate('client', 'Delivery address part "%1$s" is missing'); |
|
| 409 | + $invalid[$key] = sprintf($msg, substr($key, 19)); |
|
| 410 | + unset($params[$key]); |
|
| 411 | 411 | } |
| 412 | 412 | } |
| 413 | 413 | |
@@ -423,11 +423,11 @@ discard block |
||
| 423 | 423 | * @return array Additional mandatory address keys |
| 424 | 424 | * @since 2016.05 |
| 425 | 425 | */ |
| 426 | - protected function checkSalutation( array &$params, array &$mandatory ) |
|
| 426 | + protected function checkSalutation(array &$params, array &$mandatory) |
|
| 427 | 427 | { |
| 428 | - if( isset( $params['order.base.address.salutation'] ) |
|
| 428 | + if (isset($params['order.base.address.salutation']) |
|
| 429 | 429 | && $params['order.base.address.salutation'] === \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_COMPANY |
| 430 | - && in_array( 'order.base.address.company', $mandatory ) === false |
|
| 430 | + && in_array('order.base.address.company', $mandatory) === false |
|
| 431 | 431 | ) { |
| 432 | 432 | $mandatory[] = 'order.base.address.company'; |
| 433 | 433 | } else { |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | */ |
| 444 | 444 | protected function getSubClientNames() |
| 445 | 445 | { |
| 446 | - return $this->getContext()->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 446 | + return $this->getContext()->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | |
@@ -454,10 +454,10 @@ discard block |
||
| 454 | 454 | * @throws \Aimeos\Client\Html\Exception If an error occurs |
| 455 | 455 | * @since 2016.05 |
| 456 | 456 | */ |
| 457 | - protected function setAddress( \Aimeos\MW\View\Iface $view ) |
|
| 457 | + protected function setAddress(\Aimeos\MW\View\Iface $view) |
|
| 458 | 458 | { |
| 459 | 459 | $context = $this->getContext(); |
| 460 | - $basketCtrl = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' ); |
|
| 460 | + $basketCtrl = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket'); |
|
| 461 | 461 | |
| 462 | 462 | /** client/html/checkout/standard/address/delivery/disable-new |
| 463 | 463 | * Disables the option to enter a different delivery address for an order |
@@ -478,58 +478,58 @@ discard block |
||
| 478 | 478 | * @see client/html/checkout/standard/address/delivery/optional |
| 479 | 479 | * @see client/html/checkout/standard/address/delivery/hidden |
| 480 | 480 | */ |
| 481 | - $disable = $view->config( 'client/html/checkout/standard/address/delivery/disable-new', false ); |
|
| 481 | + $disable = $view->config('client/html/checkout/standard/address/delivery/disable-new', false); |
|
| 482 | 482 | $type = \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY; |
| 483 | 483 | |
| 484 | - if( ( $option = $view->param( 'ca_deliveryoption', 'null' ) ) === 'null' && $disable === false ) // new address |
|
| 484 | + if (($option = $view->param('ca_deliveryoption', 'null')) === 'null' && $disable === false) // new address |
|
| 485 | 485 | { |
| 486 | - $params = $view->param( 'ca_delivery', array() ); |
|
| 487 | - $invalid = $this->checkFields( $params ); |
|
| 486 | + $params = $view->param('ca_delivery', array()); |
|
| 487 | + $invalid = $this->checkFields($params); |
|
| 488 | 488 | |
| 489 | - if( count( $invalid ) > 0 ) |
|
| 489 | + if (count($invalid) > 0) |
|
| 490 | 490 | { |
| 491 | 491 | $view->deliveryError = $invalid; |
| 492 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'At least one delivery address part is missing or invalid' ) ); |
|
| 492 | + throw new \Aimeos\Client\Html\Exception(sprintf('At least one delivery address part is missing or invalid')); |
|
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - $basketCtrl->setAddress( $type, $params ); |
|
| 495 | + $basketCtrl->setAddress($type, $params); |
|
| 496 | 496 | } |
| 497 | - else if( ( $option = $view->param( 'ca_deliveryoption', 'null' ) ) !== '-1' ) // existing address |
|
| 497 | + else if (($option = $view->param('ca_deliveryoption', 'null')) !== '-1') // existing address |
|
| 498 | 498 | { |
| 499 | - $customerAddressManager = \Aimeos\MShop\Factory::createManager( $context, 'customer/address' ); |
|
| 500 | - $address = $customerAddressManager->getItem( $option ); |
|
| 499 | + $customerAddressManager = \Aimeos\MShop\Factory::createManager($context, 'customer/address'); |
|
| 500 | + $address = $customerAddressManager->getItem($option); |
|
| 501 | 501 | |
| 502 | - if( $address->getParentId() != $context->getUserId() ) { |
|
| 503 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Address with ID "%1$s" not found', $option ) ); |
|
| 502 | + if ($address->getParentId() != $context->getUserId()) { |
|
| 503 | + throw new \Aimeos\Client\Html\Exception(sprintf('Address with ID "%1$s" not found', $option)); |
|
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | $invalid = array(); |
| 507 | - $params = $view->param( 'ca_delivery_' . $option, array() ); |
|
| 507 | + $params = $view->param('ca_delivery_'.$option, array()); |
|
| 508 | 508 | |
| 509 | - if( !empty( $params ) ) |
|
| 509 | + if (!empty($params)) |
|
| 510 | 510 | { |
| 511 | 511 | $list = array(); |
| 512 | - $invalid = $this->checkFields( $params ); |
|
| 512 | + $invalid = $this->checkFields($params); |
|
| 513 | 513 | |
| 514 | - foreach( $params as $key => $value ) { |
|
| 515 | - $list[str_replace( 'order.base', 'customer', $key )] = $value; |
|
| 514 | + foreach ($params as $key => $value) { |
|
| 515 | + $list[str_replace('order.base', 'customer', $key)] = $value; |
|
| 516 | 516 | } |
| 517 | 517 | |
| 518 | - $address->fromArray( $list ); |
|
| 519 | - $customerAddressManager->saveItem( $address ); |
|
| 518 | + $address->fromArray($list); |
|
| 519 | + $customerAddressManager->saveItem($address); |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | - if( count( $invalid ) > 0 ) |
|
| 522 | + if (count($invalid) > 0) |
|
| 523 | 523 | { |
| 524 | 524 | $view->deliveryError = $invalid; |
| 525 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'At least one delivery address part is missing or invalid' ) ); |
|
| 525 | + throw new \Aimeos\Client\Html\Exception(sprintf('At least one delivery address part is missing or invalid')); |
|
| 526 | 526 | } |
| 527 | 527 | |
| 528 | - $basketCtrl->setAddress( $type, $address ); |
|
| 528 | + $basketCtrl->setAddress($type, $address); |
|
| 529 | 529 | } |
| 530 | 530 | else |
| 531 | 531 | { |
| 532 | - $basketCtrl->setAddress( $type, null ); |
|
| 532 | + $basketCtrl->setAddress($type, null); |
|
| 533 | 533 | } |
| 534 | 534 | } |
| 535 | 535 | |
@@ -542,17 +542,17 @@ discard block |
||
| 542 | 542 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 543 | 543 | * @return \Aimeos\MW\View\Iface Modified view object |
| 544 | 544 | */ |
| 545 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 545 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 546 | 546 | { |
| 547 | - if( !isset( $this->cache ) ) |
|
| 547 | + if (!isset($this->cache)) |
|
| 548 | 548 | { |
| 549 | 549 | $context = $this->getContext(); |
| 550 | - $basketCntl = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' ); |
|
| 550 | + $basketCntl = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket'); |
|
| 551 | 551 | |
| 552 | 552 | try { |
| 553 | - $langid = $basketCntl->get()->getAddress( 'delivery' )->getLanguageId(); |
|
| 554 | - } catch( \Exception $e ) { |
|
| 555 | - $langid = $view->param( 'ca_delivery/order.base.address.languageid', $context->getLocale()->getLanguageId() ); |
|
| 553 | + $langid = $basketCntl->get()->getAddress('delivery')->getLanguageId(); |
|
| 554 | + } catch (\Exception $e) { |
|
| 555 | + $langid = $view->param('ca_delivery/order.base.address.languageid', $context->getLocale()->getLanguageId()); |
|
| 556 | 556 | } |
| 557 | 557 | $view->deliveryLanguage = $langid; |
| 558 | 558 | |
@@ -595,13 +595,13 @@ discard block |
||
| 595 | 595 | * @see client/html/checkout/standard/address/delivery/optional |
| 596 | 596 | * @see client/html/checkout/standard/address/countries |
| 597 | 597 | */ |
| 598 | - $hidden = $view->config( 'client/html/checkout/standard/address/delivery/hidden', array() ); |
|
| 598 | + $hidden = $view->config('client/html/checkout/standard/address/delivery/hidden', array()); |
|
| 599 | 599 | |
| 600 | - if( count( $view->get( 'addressLanguages', array() ) ) === 1 ) { |
|
| 600 | + if (count($view->get('addressLanguages', array())) === 1) { |
|
| 601 | 601 | $hidden[] = 'order.base.address.languageid'; |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | - $salutations = array( 'company', 'mr', 'mrs' ); |
|
| 604 | + $salutations = array('company', 'mr', 'mrs'); |
|
| 605 | 605 | |
| 606 | 606 | /** client/html/checkout/standard/address/delivery/salutations |
| 607 | 607 | * List of salutions the customer can select from for the delivery address |
@@ -631,10 +631,10 @@ discard block |
||
| 631 | 631 | * @see client/html/checkout/standard/address/delivery/hidden |
| 632 | 632 | * @see client/html/checkout/standard/address/countries |
| 633 | 633 | */ |
| 634 | - $view->deliverySalutations = $view->config( 'client/html/checkout/standard/address/delivery/salutations', $salutations ); |
|
| 634 | + $view->deliverySalutations = $view->config('client/html/checkout/standard/address/delivery/salutations', $salutations); |
|
| 635 | 635 | |
| 636 | - $view->deliveryMandatory = $view->config( 'client/html/checkout/standard/address/delivery/mandatory', $this->mandatory ); |
|
| 637 | - $view->deliveryOptional = $view->config( 'client/html/checkout/standard/address/delivery/optional', $this->optional ); |
|
| 636 | + $view->deliveryMandatory = $view->config('client/html/checkout/standard/address/delivery/mandatory', $this->mandatory); |
|
| 637 | + $view->deliveryOptional = $view->config('client/html/checkout/standard/address/delivery/optional', $this->optional); |
|
| 638 | 638 | $view->deliveryHidden = $hidden; |
| 639 | 639 | |
| 640 | 640 | |
@@ -653,7 +653,7 @@ discard block |
||
| 653 | 653 | * @return array List of invalid address keys |
| 654 | 654 | * @since 2016.05 |
| 655 | 655 | */ |
| 656 | - protected function validateFields( array &$params, array $fields ) |
|
| 656 | + protected function validateFields(array &$params, array $fields) |
|
| 657 | 657 | { |
| 658 | 658 | $config = $this->getContext()->getConfig(); |
| 659 | 659 | |
@@ -761,22 +761,22 @@ discard block |
||
| 761 | 761 | |
| 762 | 762 | $invalid = array(); |
| 763 | 763 | |
| 764 | - foreach( $params as $key => $value ) |
|
| 764 | + foreach ($params as $key => $value) |
|
| 765 | 765 | { |
| 766 | - if( isset( $fields[$key] ) ) |
|
| 766 | + if (isset($fields[$key])) |
|
| 767 | 767 | { |
| 768 | - $name = substr( $key, 19 ); |
|
| 769 | - $regex = $config->get( 'client/html/checkout/standard/address/validate/' . $name ); |
|
| 768 | + $name = substr($key, 19); |
|
| 769 | + $regex = $config->get('client/html/checkout/standard/address/validate/'.$name); |
|
| 770 | 770 | |
| 771 | - if( $regex && preg_match( '/' . $regex . '/', $value ) !== 1 ) |
|
| 771 | + if ($regex && preg_match('/'.$regex.'/', $value) !== 1) |
|
| 772 | 772 | { |
| 773 | 773 | $invalid[$key] = $name; |
| 774 | - unset( $params[$key] ); |
|
| 774 | + unset($params[$key]); |
|
| 775 | 775 | } |
| 776 | 776 | } |
| 777 | 777 | else |
| 778 | 778 | { |
| 779 | - unset( $params[$key] ); |
|
| 779 | + unset($params[$key]); |
|
| 780 | 780 | } |
| 781 | 781 | } |
| 782 | 782 | |
@@ -87,13 +87,13 @@ discard block |
||
| 87 | 87 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 88 | 88 | * @return string HTML code |
| 89 | 89 | */ |
| 90 | - public function getBody( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 90 | + public function getBody($uid = '', array &$tags = array(), &$expire = null) |
|
| 91 | 91 | { |
| 92 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 92 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 93 | 93 | |
| 94 | 94 | $html = ''; |
| 95 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 96 | - $html .= $subclient->setView( $view )->getBody( $uid, $tags, $expire ); |
|
| 95 | + foreach ($this->getSubClients() as $subclient) { |
|
| 96 | + $html .= $subclient->setView($view)->getBody($uid, $tags, $expire); |
|
| 97 | 97 | } |
| 98 | 98 | $view->billingBody = $html; |
| 99 | 99 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | $tplconf = 'client/html/checkout/standard/address/billing/standard/template-body'; |
| 121 | 121 | $default = 'checkout/standard/address-billing-body-default.php'; |
| 122 | 122 | |
| 123 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 123 | + return $view->render($view->config($tplconf, $default)); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | |
@@ -132,13 +132,13 @@ discard block |
||
| 132 | 132 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 133 | 133 | * @return string|null String including HTML tags for the header on error |
| 134 | 134 | */ |
| 135 | - public function getHeader( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 135 | + public function getHeader($uid = '', array &$tags = array(), &$expire = null) |
|
| 136 | 136 | { |
| 137 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 137 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 138 | 138 | |
| 139 | 139 | $html = ''; |
| 140 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 141 | - $html .= $subclient->setView( $view )->getHeader( $uid, $tags, $expire ); |
|
| 140 | + foreach ($this->getSubClients() as $subclient) { |
|
| 141 | + $html .= $subclient->setView($view)->getHeader($uid, $tags, $expire); |
|
| 142 | 142 | } |
| 143 | 143 | $view->billingHeader = $html; |
| 144 | 144 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $tplconf = 'client/html/checkout/standard/address/billing/standard/template-header'; |
| 167 | 167 | $default = 'checkout/standard/address-billing-header-default.php'; |
| 168 | 168 | |
| 169 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 169 | + return $view->render($view->config($tplconf, $default)); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | * @param string|null $name Name of the sub-client (Default if null) |
| 178 | 178 | * @return \Aimeos\Client\Html\Iface Sub-client object |
| 179 | 179 | */ |
| 180 | - public function getSubClient( $type, $name = null ) |
|
| 180 | + public function getSubClient($type, $name = null) |
|
| 181 | 181 | { |
| 182 | 182 | /** client/html/checkout/standard/address/billing/decorators/excludes |
| 183 | 183 | * Excludes decorators added by the "common" option from the checkout standard address billing html client |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * @see client/html/checkout/standard/address/billing/decorators/global |
| 254 | 254 | */ |
| 255 | 255 | |
| 256 | - return $this->createSubClient( 'checkout/standard/address/billing/' . $type, $name ); |
|
| 256 | + return $this->createSubClient('checkout/standard/address/billing/'.$type, $name); |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | |
@@ -267,15 +267,15 @@ discard block |
||
| 267 | 267 | try |
| 268 | 268 | { |
| 269 | 269 | // only start if there's something to do |
| 270 | - if( $view->param( 'ca_billingoption', null ) === null ) { |
|
| 270 | + if ($view->param('ca_billingoption', null) === null) { |
|
| 271 | 271 | return; |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - $this->setAddress( $view ); |
|
| 274 | + $this->setAddress($view); |
|
| 275 | 275 | |
| 276 | 276 | parent::process(); |
| 277 | 277 | } |
| 278 | - catch( \Aimeos\Controller\Frontend\Exception $e ) |
|
| 278 | + catch (\Aimeos\Controller\Frontend\Exception $e) |
|
| 279 | 279 | { |
| 280 | 280 | $view->billingError = $e->getErrorList(); |
| 281 | 281 | throw $e; |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | * @param array &$params Associative list of address keys (order.base.address.* or customer.address.*) and their values |
| 290 | 290 | * @return array List of missing field names |
| 291 | 291 | */ |
| 292 | - protected function checkFields( array &$params ) |
|
| 292 | + protected function checkFields(array &$params) |
|
| 293 | 293 | { |
| 294 | 294 | $view = $this->getView(); |
| 295 | 295 | |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @see client/html/checkout/standard/address/countries |
| 332 | 332 | * @see client/html/checkout/standard/address/validate |
| 333 | 333 | */ |
| 334 | - $mandatory = $view->config( 'client/html/checkout/standard/address/billing/mandatory', $this->mandatory ); |
|
| 334 | + $mandatory = $view->config('client/html/checkout/standard/address/billing/mandatory', $this->mandatory); |
|
| 335 | 335 | |
| 336 | 336 | /** client/html/checkout/standard/address/billing/optional |
| 337 | 337 | * List of billing address input fields that are optional |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | * @see client/html/checkout/standard/address/countries |
| 372 | 372 | * @see client/html/checkout/standard/address/validate |
| 373 | 373 | */ |
| 374 | - $optional = $view->config( 'client/html/checkout/standard/address/billing/optional', $this->optional ); |
|
| 374 | + $optional = $view->config('client/html/checkout/standard/address/billing/optional', $this->optional); |
|
| 375 | 375 | |
| 376 | 376 | /** client/html/checkout/standard/address/validate |
| 377 | 377 | * List of regular expressions to validate the data of the address fields |
@@ -430,23 +430,23 @@ discard block |
||
| 430 | 430 | * @see client/html/checkout/standard/address/billing/optional |
| 431 | 431 | */ |
| 432 | 432 | |
| 433 | - $allFields = array_flip( array_merge( $mandatory, $optional ) ); |
|
| 434 | - $invalid = $this->validateFields( $params, $allFields ); |
|
| 435 | - $this->checkSalutation( $params, $mandatory ); |
|
| 433 | + $allFields = array_flip(array_merge($mandatory, $optional)); |
|
| 434 | + $invalid = $this->validateFields($params, $allFields); |
|
| 435 | + $this->checkSalutation($params, $mandatory); |
|
| 436 | 436 | |
| 437 | - foreach( $invalid as $key => $name ) |
|
| 437 | + foreach ($invalid as $key => $name) |
|
| 438 | 438 | { |
| 439 | - $msg = $view->translate( 'client', 'Billing address part "%1$s" is invalid' ); |
|
| 440 | - $invalid[$key] = sprintf( $msg, $name ); |
|
| 439 | + $msg = $view->translate('client', 'Billing address part "%1$s" is invalid'); |
|
| 440 | + $invalid[$key] = sprintf($msg, $name); |
|
| 441 | 441 | } |
| 442 | 442 | |
| 443 | - foreach( $mandatory as $key ) |
|
| 443 | + foreach ($mandatory as $key) |
|
| 444 | 444 | { |
| 445 | - if( !isset( $params[$key] ) || $params[$key] == '' ) |
|
| 445 | + if (!isset($params[$key]) || $params[$key] == '') |
|
| 446 | 446 | { |
| 447 | - $msg = $view->translate( 'client', 'Billing address part "%1$s" is missing' ); |
|
| 448 | - $invalid[$key] = sprintf( $msg, substr( $key, 19 ) ); |
|
| 449 | - unset( $params[$key] ); |
|
| 447 | + $msg = $view->translate('client', 'Billing address part "%1$s" is missing'); |
|
| 448 | + $invalid[$key] = sprintf($msg, substr($key, 19)); |
|
| 449 | + unset($params[$key]); |
|
| 450 | 450 | } |
| 451 | 451 | } |
| 452 | 452 | |
@@ -461,11 +461,11 @@ discard block |
||
| 461 | 461 | * @param array &$mandatory List of mandatory field names |
| 462 | 462 | * @since 2016.05 |
| 463 | 463 | */ |
| 464 | - protected function checkSalutation( array &$params, array &$mandatory ) |
|
| 464 | + protected function checkSalutation(array &$params, array &$mandatory) |
|
| 465 | 465 | { |
| 466 | - if( isset( $params['order.base.address.salutation'] ) |
|
| 466 | + if (isset($params['order.base.address.salutation']) |
|
| 467 | 467 | && $params['order.base.address.salutation'] === \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_COMPANY |
| 468 | - && in_array( 'order.base.address.company', $mandatory ) === false |
|
| 468 | + && in_array('order.base.address.company', $mandatory) === false |
|
| 469 | 469 | ) { |
| 470 | 470 | $mandatory[] = 'order.base.address.company'; |
| 471 | 471 | } else { |
@@ -482,22 +482,22 @@ discard block |
||
| 482 | 482 | * @throws \Aimeos\Client\Html\Exception If no customer item is available |
| 483 | 483 | * @since 2016.05 |
| 484 | 484 | */ |
| 485 | - protected function getCustomerItem( $id ) |
|
| 485 | + protected function getCustomerItem($id) |
|
| 486 | 486 | { |
| 487 | 487 | $context = $this->getContext(); |
| 488 | - $customerManager = \Aimeos\MShop\Factory::createManager( $context, 'customer' ); |
|
| 488 | + $customerManager = \Aimeos\MShop\Factory::createManager($context, 'customer'); |
|
| 489 | 489 | |
| 490 | - $search = $customerManager->createSearch( true ); |
|
| 490 | + $search = $customerManager->createSearch(true); |
|
| 491 | 491 | $expr = array( |
| 492 | - $search->compare( '==', 'customer.id', $id ), |
|
| 492 | + $search->compare('==', 'customer.id', $id), |
|
| 493 | 493 | $search->getConditions(), |
| 494 | 494 | ); |
| 495 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 495 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 496 | 496 | |
| 497 | - $items = $customerManager->searchItems( $search ); |
|
| 497 | + $items = $customerManager->searchItems($search); |
|
| 498 | 498 | |
| 499 | - if( ( $item = reset( $items ) ) === false || $id != $context->getUserId() ) { |
|
| 500 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Customer with ID "%1$s" not found', $id ) ); |
|
| 499 | + if (($item = reset($items)) === false || $id != $context->getUserId()) { |
|
| 500 | + throw new \Aimeos\Client\Html\Exception(sprintf('Customer with ID "%1$s" not found', $id)); |
|
| 501 | 501 | } |
| 502 | 502 | |
| 503 | 503 | return $item; |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | */ |
| 512 | 512 | protected function getSubClientNames() |
| 513 | 513 | { |
| 514 | - return $this->getContext()->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 514 | + return $this->getContext()->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 515 | 515 | } |
| 516 | 516 | |
| 517 | 517 | |
@@ -522,10 +522,10 @@ discard block |
||
| 522 | 522 | * @throws \Aimeos\Client\Html\Exception If an error occurs |
| 523 | 523 | * @since 2016.05 |
| 524 | 524 | */ |
| 525 | - protected function setAddress( \Aimeos\MW\View\Iface $view ) |
|
| 525 | + protected function setAddress(\Aimeos\MW\View\Iface $view) |
|
| 526 | 526 | { |
| 527 | 527 | $context = $this->getContext(); |
| 528 | - $basketCtrl = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' ); |
|
| 528 | + $basketCtrl = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket'); |
|
| 529 | 529 | |
| 530 | 530 | |
| 531 | 531 | /** client/html/checkout/standard/address/billing/disable-new |
@@ -547,53 +547,53 @@ discard block |
||
| 547 | 547 | * @see client/html/checkout/standard/address/billing/optional |
| 548 | 548 | * @see client/html/checkout/standard/address/billing/hidden |
| 549 | 549 | */ |
| 550 | - $disable = $view->config( 'client/html/checkout/standard/address/billing/disable-new', false ); |
|
| 550 | + $disable = $view->config('client/html/checkout/standard/address/billing/disable-new', false); |
|
| 551 | 551 | $type = \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT; |
| 552 | 552 | |
| 553 | - if( ( $option = $view->param( 'ca_billingoption', 'null' ) ) === 'null' && $disable === false ) // new address |
|
| 553 | + if (($option = $view->param('ca_billingoption', 'null')) === 'null' && $disable === false) // new address |
|
| 554 | 554 | { |
| 555 | - $params = $view->param( 'ca_billing', array() ); |
|
| 556 | - $invalid = $this->checkFields( $params ); |
|
| 555 | + $params = $view->param('ca_billing', array()); |
|
| 556 | + $invalid = $this->checkFields($params); |
|
| 557 | 557 | |
| 558 | - if( count( $invalid ) > 0 ) |
|
| 558 | + if (count($invalid) > 0) |
|
| 559 | 559 | { |
| 560 | 560 | $view->billingError = $invalid; |
| 561 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'At least one billing address part is missing or invalid' ) ); |
|
| 561 | + throw new \Aimeos\Client\Html\Exception(sprintf('At least one billing address part is missing or invalid')); |
|
| 562 | 562 | } |
| 563 | 563 | |
| 564 | - $basketCtrl->setAddress( $type, $params ); |
|
| 564 | + $basketCtrl->setAddress($type, $params); |
|
| 565 | 565 | } |
| 566 | 566 | else // existing address |
| 567 | 567 | { |
| 568 | - $item = $this->getCustomerItem( $option ); |
|
| 569 | - $customerManager = \Aimeos\MShop\Factory::createManager( $context, 'customer' ); |
|
| 568 | + $item = $this->getCustomerItem($option); |
|
| 569 | + $customerManager = \Aimeos\MShop\Factory::createManager($context, 'customer'); |
|
| 570 | 570 | |
| 571 | 571 | $invalid = array(); |
| 572 | 572 | $addr = $item->getPaymentAddress(); |
| 573 | - $params = $view->param( 'ca_billing_' . $option, array() ); |
|
| 573 | + $params = $view->param('ca_billing_'.$option, array()); |
|
| 574 | 574 | |
| 575 | - if( !empty( $params ) ) |
|
| 575 | + if (!empty($params)) |
|
| 576 | 576 | { |
| 577 | 577 | $list = array(); |
| 578 | - $invalid = $this->checkFields( $params ); |
|
| 578 | + $invalid = $this->checkFields($params); |
|
| 579 | 579 | |
| 580 | - foreach( $params as $key => $value ) { |
|
| 581 | - $list[str_replace( 'order.base', 'customer', $key )] = $value; |
|
| 580 | + foreach ($params as $key => $value) { |
|
| 581 | + $list[str_replace('order.base', 'customer', $key)] = $value; |
|
| 582 | 582 | } |
| 583 | 583 | |
| 584 | - $addr->fromArray( $list ); |
|
| 585 | - $item->setPaymentAddress( $addr ); |
|
| 584 | + $addr->fromArray($list); |
|
| 585 | + $item->setPaymentAddress($addr); |
|
| 586 | 586 | |
| 587 | - $customerManager->saveItem( $item ); |
|
| 587 | + $customerManager->saveItem($item); |
|
| 588 | 588 | } |
| 589 | 589 | |
| 590 | - if( count( $invalid ) > 0 ) |
|
| 590 | + if (count($invalid) > 0) |
|
| 591 | 591 | { |
| 592 | 592 | $view->billingError = $invalid; |
| 593 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'At least one billing address part is missing or invalid' ) ); |
|
| 593 | + throw new \Aimeos\Client\Html\Exception(sprintf('At least one billing address part is missing or invalid')); |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | - $basketCtrl->setAddress( $type, $addr ); |
|
| 596 | + $basketCtrl->setAddress($type, $addr); |
|
| 597 | 597 | } |
| 598 | 598 | } |
| 599 | 599 | |
@@ -606,17 +606,17 @@ discard block |
||
| 606 | 606 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 607 | 607 | * @return \Aimeos\MW\View\Iface Modified view object |
| 608 | 608 | */ |
| 609 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 609 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 610 | 610 | { |
| 611 | - if( !isset( $this->cache ) ) |
|
| 611 | + if (!isset($this->cache)) |
|
| 612 | 612 | { |
| 613 | 613 | $context = $this->getContext(); |
| 614 | - $basketCntl = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' ); |
|
| 614 | + $basketCntl = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket'); |
|
| 615 | 615 | |
| 616 | 616 | try { |
| 617 | - $langid = $basketCntl->get()->getAddress( 'payment' )->getLanguageId(); |
|
| 618 | - } catch( \Exception $e ) { |
|
| 619 | - $langid = $view->param( 'ca_billing/order.base.address.languageid', $context->getLocale()->getLanguageId() ); |
|
| 617 | + $langid = $basketCntl->get()->getAddress('payment')->getLanguageId(); |
|
| 618 | + } catch (\Exception $e) { |
|
| 619 | + $langid = $view->param('ca_billing/order.base.address.languageid', $context->getLocale()->getLanguageId()); |
|
| 620 | 620 | } |
| 621 | 621 | $view->billingLanguage = $langid; |
| 622 | 622 | |
@@ -659,13 +659,13 @@ discard block |
||
| 659 | 659 | * @see client/html/checkout/standard/address/billing/optional |
| 660 | 660 | * @see client/html/checkout/standard/address/countries |
| 661 | 661 | */ |
| 662 | - $hidden = $view->config( 'client/html/checkout/standard/address/billing/hidden', array() ); |
|
| 662 | + $hidden = $view->config('client/html/checkout/standard/address/billing/hidden', array()); |
|
| 663 | 663 | |
| 664 | - if( count( $view->get( 'addressLanguages', array() ) ) === 1 ) { |
|
| 664 | + if (count($view->get('addressLanguages', array())) === 1) { |
|
| 665 | 665 | $hidden[] = 'order.base.address.languageid'; |
| 666 | 666 | } |
| 667 | 667 | |
| 668 | - $salutations = array( 'company', 'mr', 'mrs' ); |
|
| 668 | + $salutations = array('company', 'mr', 'mrs'); |
|
| 669 | 669 | |
| 670 | 670 | /** client/html/checkout/standard/address/billing/salutations |
| 671 | 671 | * List of salutions the customer can select from for the billing address |
@@ -695,10 +695,10 @@ discard block |
||
| 695 | 695 | * @see client/html/checkout/standard/address/billing/hidden |
| 696 | 696 | * @see client/html/checkout/standard/address/countries |
| 697 | 697 | */ |
| 698 | - $view->billingSalutations = $view->config( 'client/html/checkout/standard/address/billing/salutations', $salutations ); |
|
| 698 | + $view->billingSalutations = $view->config('client/html/checkout/standard/address/billing/salutations', $salutations); |
|
| 699 | 699 | |
| 700 | - $view->billingMandatory = $view->config( 'client/html/checkout/standard/address/billing/mandatory', $this->mandatory ); |
|
| 701 | - $view->billingOptional = $view->config( 'client/html/checkout/standard/address/billing/optional', $this->optional ); |
|
| 700 | + $view->billingMandatory = $view->config('client/html/checkout/standard/address/billing/mandatory', $this->mandatory); |
|
| 701 | + $view->billingOptional = $view->config('client/html/checkout/standard/address/billing/optional', $this->optional); |
|
| 702 | 702 | $view->billingHidden = $hidden; |
| 703 | 703 | |
| 704 | 704 | $this->cache = $view; |
@@ -716,7 +716,7 @@ discard block |
||
| 716 | 716 | * @return array List of invalid address keys |
| 717 | 717 | * @since 2016.05 |
| 718 | 718 | */ |
| 719 | - protected function validateFields( array &$params, array $fields ) |
|
| 719 | + protected function validateFields(array &$params, array $fields) |
|
| 720 | 720 | { |
| 721 | 721 | $config = $this->getContext()->getConfig(); |
| 722 | 722 | |
@@ -824,23 +824,23 @@ discard block |
||
| 824 | 824 | |
| 825 | 825 | $invalid = array(); |
| 826 | 826 | |
| 827 | - foreach( $params as $key => $value ) |
|
| 827 | + foreach ($params as $key => $value) |
|
| 828 | 828 | { |
| 829 | - if( isset( $fields[$key] ) ) |
|
| 829 | + if (isset($fields[$key])) |
|
| 830 | 830 | { |
| 831 | - $name = substr( $key, 19 ); |
|
| 832 | - $regex = $config->get( 'client/html/checkout/standard/address/validate/' . $name ); |
|
| 831 | + $name = substr($key, 19); |
|
| 832 | + $regex = $config->get('client/html/checkout/standard/address/validate/'.$name); |
|
| 833 | 833 | |
| 834 | - if( $regex && preg_match( '/' . $regex . '/', $value ) !== 1 ) |
|
| 834 | + if ($regex && preg_match('/'.$regex.'/', $value) !== 1) |
|
| 835 | 835 | { |
| 836 | 836 | $msg = |
| 837 | 837 | $invalid[$key] = $name; |
| 838 | - unset( $params[$key] ); |
|
| 838 | + unset($params[$key]); |
|
| 839 | 839 | } |
| 840 | 840 | } |
| 841 | 841 | else |
| 842 | 842 | { |
| 843 | - unset( $params[$key] ); |
|
| 843 | + unset($params[$key]); |
|
| 844 | 844 | } |
| 845 | 845 | } |
| 846 | 846 | |
@@ -68,42 +68,42 @@ discard block |
||
| 68 | 68 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 69 | 69 | * @return string HTML code |
| 70 | 70 | */ |
| 71 | - public function getBody( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 71 | + public function getBody($uid = '', array &$tags = array(), &$expire = null) |
|
| 72 | 72 | { |
| 73 | 73 | $context = $this->getContext(); |
| 74 | 74 | $view = $this->getView(); |
| 75 | 75 | |
| 76 | 76 | try |
| 77 | 77 | { |
| 78 | - $view = $this->setViewParams( $view, $tags, $expire ); |
|
| 78 | + $view = $this->setViewParams($view, $tags, $expire); |
|
| 79 | 79 | |
| 80 | 80 | $html = ''; |
| 81 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 82 | - $html .= $subclient->setView( $view )->getBody( $uid, $tags, $expire ); |
|
| 81 | + foreach ($this->getSubClients() as $subclient) { |
|
| 82 | + $html .= $subclient->setView($view)->getBody($uid, $tags, $expire); |
|
| 83 | 83 | } |
| 84 | 84 | $view->watchBody = $html; |
| 85 | 85 | } |
| 86 | - catch( \Aimeos\Client\Html\Exception $e ) |
|
| 86 | + catch (\Aimeos\Client\Html\Exception $e) |
|
| 87 | 87 | { |
| 88 | - $error = array( $this->getContext()->getI18n()->dt( 'client', $e->getMessage() ) ); |
|
| 89 | - $view->watchErrorList = $view->get( 'watchErrorList', array() ) + $error; |
|
| 88 | + $error = array($this->getContext()->getI18n()->dt('client', $e->getMessage())); |
|
| 89 | + $view->watchErrorList = $view->get('watchErrorList', array()) + $error; |
|
| 90 | 90 | } |
| 91 | - catch( \Aimeos\Controller\Frontend\Exception $e ) |
|
| 91 | + catch (\Aimeos\Controller\Frontend\Exception $e) |
|
| 92 | 92 | { |
| 93 | - $error = array( $this->getContext()->getI18n()->dt( 'controller/frontend', $e->getMessage() ) ); |
|
| 94 | - $view->watchErrorList = $view->get( 'watchErrorList', array() ) + $error; |
|
| 93 | + $error = array($this->getContext()->getI18n()->dt('controller/frontend', $e->getMessage())); |
|
| 94 | + $view->watchErrorList = $view->get('watchErrorList', array()) + $error; |
|
| 95 | 95 | } |
| 96 | - catch( \Aimeos\MShop\Exception $e ) |
|
| 96 | + catch (\Aimeos\MShop\Exception $e) |
|
| 97 | 97 | { |
| 98 | - $error = array( $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ) ); |
|
| 99 | - $view->watchErrorList = $view->get( 'watchErrorList', array() ) + $error; |
|
| 98 | + $error = array($this->getContext()->getI18n()->dt('mshop', $e->getMessage())); |
|
| 99 | + $view->watchErrorList = $view->get('watchErrorList', array()) + $error; |
|
| 100 | 100 | } |
| 101 | - catch( \Exception $e ) |
|
| 101 | + catch (\Exception $e) |
|
| 102 | 102 | { |
| 103 | - $context->getLogger()->log( $e->getMessage() . PHP_EOL . $e->getTraceAsString() ); |
|
| 103 | + $context->getLogger()->log($e->getMessage().PHP_EOL.$e->getTraceAsString()); |
|
| 104 | 104 | |
| 105 | - $error = array( $context->getI18n()->dt( 'client', 'A non-recoverable error occured' ) ); |
|
| 106 | - $view->watchErrorList = $view->get( 'watchErrorList', array() ) + $error; |
|
| 105 | + $error = array($context->getI18n()->dt('client', 'A non-recoverable error occured')); |
|
| 106 | + $view->watchErrorList = $view->get('watchErrorList', array()) + $error; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** client/html/account/watch/standard/template-body |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $tplconf = 'client/html/account/watch/standard/template-body'; |
| 130 | 130 | $default = 'account/watch/body-default.php'; |
| 131 | 131 | |
| 132 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 132 | + return $view->render($view->config($tplconf, $default)); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | |
@@ -141,15 +141,15 @@ discard block |
||
| 141 | 141 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 142 | 142 | * @return string|null String including HTML tags for the header on error |
| 143 | 143 | */ |
| 144 | - public function getHeader( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 144 | + public function getHeader($uid = '', array &$tags = array(), &$expire = null) |
|
| 145 | 145 | { |
| 146 | 146 | try |
| 147 | 147 | { |
| 148 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 148 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 149 | 149 | |
| 150 | 150 | $html = ''; |
| 151 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 152 | - $html .= $subclient->setView( $view )->getHeader( $uid, $tags, $expire ); |
|
| 151 | + foreach ($this->getSubClients() as $subclient) { |
|
| 152 | + $html .= $subclient->setView($view)->getHeader($uid, $tags, $expire); |
|
| 153 | 153 | } |
| 154 | 154 | $view->watchHeader = $html; |
| 155 | 155 | |
@@ -177,11 +177,11 @@ discard block |
||
| 177 | 177 | $tplconf = 'client/html/account/watch/standard/template-header'; |
| 178 | 178 | $default = 'account/watch/header-default.php'; |
| 179 | 179 | |
| 180 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 180 | + return $view->render($view->config($tplconf, $default)); |
|
| 181 | 181 | } |
| 182 | - catch( \Exception $e ) |
|
| 182 | + catch (\Exception $e) |
|
| 183 | 183 | { |
| 184 | - $this->getContext()->getLogger()->log( $e->getMessage() . PHP_EOL . $e->getTraceAsString() ); |
|
| 184 | + $this->getContext()->getLogger()->log($e->getMessage().PHP_EOL.$e->getTraceAsString()); |
|
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | * @param string|null $name Name of the sub-client (Default if null) |
| 194 | 194 | * @return \Aimeos\Client\Html\Iface Sub-client object |
| 195 | 195 | */ |
| 196 | - public function getSubClient( $type, $name = null ) |
|
| 196 | + public function getSubClient($type, $name = null) |
|
| 197 | 197 | { |
| 198 | 198 | /** client/html/account/watch/decorators/excludes |
| 199 | 199 | * Excludes decorators added by the "common" option from the account watch html client |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | * @see client/html/account/watch/decorators/global |
| 270 | 270 | */ |
| 271 | 271 | |
| 272 | - return $this->createSubClient( 'account/watch/' . $type, $name ); |
|
| 272 | + return $this->createSubClient('account/watch/'.$type, $name); |
|
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | |
@@ -283,15 +283,15 @@ discard block |
||
| 283 | 283 | $view = $this->getView(); |
| 284 | 284 | $context = $this->getContext(); |
| 285 | 285 | $userId = $context->getUserId(); |
| 286 | - $ids = (array) $view->param( 'wat_id', array() ); |
|
| 286 | + $ids = (array) $view->param('wat_id', array()); |
|
| 287 | 287 | |
| 288 | - if( $userId != null && !empty( $ids ) ) |
|
| 288 | + if ($userId != null && !empty($ids)) |
|
| 289 | 289 | { |
| 290 | - $typeId = $this->getTypeItem( 'customer/lists/type', 'product', 'watch' )->getId(); |
|
| 291 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists' ); |
|
| 292 | - $items = $this->getListItems( $manager, $ids, $typeId, $userId ); |
|
| 290 | + $typeId = $this->getTypeItem('customer/lists/type', 'product', 'watch')->getId(); |
|
| 291 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists'); |
|
| 292 | + $items = $this->getListItems($manager, $ids, $typeId, $userId); |
|
| 293 | 293 | |
| 294 | - switch( $view->param( 'wat_action' ) ) |
|
| 294 | + switch ($view->param('wat_action')) |
|
| 295 | 295 | { |
| 296 | 296 | case 'add': |
| 297 | 297 | |
@@ -313,34 +313,34 @@ discard block |
||
| 313 | 313 | * @category User |
| 314 | 314 | * @category Developer |
| 315 | 315 | */ |
| 316 | - $max = $context->getConfig()->get( 'client/html/account/watch/standard/maxitems', 100 ); |
|
| 317 | - $cnt = count( $ids ); |
|
| 316 | + $max = $context->getConfig()->get('client/html/account/watch/standard/maxitems', 100); |
|
| 317 | + $cnt = count($ids); |
|
| 318 | 318 | |
| 319 | - if( $this->checkLimit( $manager, $typeId, $userId, $max, $cnt ) === false ) |
|
| 319 | + if ($this->checkLimit($manager, $typeId, $userId, $max, $cnt) === false) |
|
| 320 | 320 | { |
| 321 | - $error = sprintf( $context->getI18n()->dt( 'client', 'You can only watch up to %1$s products' ), $max ); |
|
| 322 | - $view->watchErrorList = $view->get( 'watchErrorList', array() ) + array( $error ); |
|
| 321 | + $error = sprintf($context->getI18n()->dt('client', 'You can only watch up to %1$s products'), $max); |
|
| 322 | + $view->watchErrorList = $view->get('watchErrorList', array()) + array($error); |
|
| 323 | 323 | break; |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - $this->addItems( $manager, $items, $ids, $typeId, $userId ); |
|
| 326 | + $this->addItems($manager, $items, $ids, $typeId, $userId); |
|
| 327 | 327 | break; |
| 328 | 328 | |
| 329 | 329 | case 'edit': |
| 330 | 330 | |
| 331 | 331 | $config = array( |
| 332 | - 'timeframe' => $view->param( 'wat_timeframe', 7 ), |
|
| 333 | - 'pricevalue' => $view->param( 'wat_pricevalue', '0.00' ), |
|
| 334 | - 'price' => $view->param( 'wat_price', 0 ), |
|
| 335 | - 'stock' => $view->param( 'wat_stock', 0 ), |
|
| 332 | + 'timeframe' => $view->param('wat_timeframe', 7), |
|
| 333 | + 'pricevalue' => $view->param('wat_pricevalue', '0.00'), |
|
| 334 | + 'price' => $view->param('wat_price', 0), |
|
| 335 | + 'stock' => $view->param('wat_stock', 0), |
|
| 336 | 336 | 'currency' => $context->getLocale()->getCurrencyId(), |
| 337 | 337 | ); |
| 338 | - $this->editItems( $manager, $items, $ids, $config ); |
|
| 338 | + $this->editItems($manager, $items, $ids, $config); |
|
| 339 | 339 | break; |
| 340 | 340 | |
| 341 | 341 | case 'delete': |
| 342 | 342 | |
| 343 | - $this->deleteItems( $manager, $items, $ids ); |
|
| 343 | + $this->deleteItems($manager, $items, $ids); |
|
| 344 | 344 | break; |
| 345 | 345 | } |
| 346 | 346 | } |
@@ -359,21 +359,21 @@ discard block |
||
| 359 | 359 | * @param integer $cnt Number of items that should be added |
| 360 | 360 | * @return boolean True if items can be added, false if not |
| 361 | 361 | */ |
| 362 | - protected function checkLimit( \Aimeos\MShop\Common\Manager\Iface $manager, $typeId, $userId, $max, $cnt ) |
|
| 362 | + protected function checkLimit(\Aimeos\MShop\Common\Manager\Iface $manager, $typeId, $userId, $max, $cnt) |
|
| 363 | 363 | { |
| 364 | 364 | $search = $manager->createSearch(); |
| 365 | 365 | $expr = array( |
| 366 | - $search->compare( '==', 'customer.lists.parentid', $userId ), |
|
| 367 | - $search->compare( '==', 'customer.lists.typeid', $typeId ), |
|
| 368 | - $search->compare( '==', 'customer.lists.domain', 'product' ), |
|
| 366 | + $search->compare('==', 'customer.lists.parentid', $userId), |
|
| 367 | + $search->compare('==', 'customer.lists.typeid', $typeId), |
|
| 368 | + $search->compare('==', 'customer.lists.domain', 'product'), |
|
| 369 | 369 | ); |
| 370 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 371 | - $search->setSlice( 0, 0 ); |
|
| 370 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 371 | + $search->setSlice(0, 0); |
|
| 372 | 372 | |
| 373 | 373 | $total = 0; |
| 374 | - $manager->searchItems( $search, array(), $total ); |
|
| 374 | + $manager->searchItems($search, array(), $total); |
|
| 375 | 375 | |
| 376 | - if( $total + $cnt > $max ) { |
|
| 376 | + if ($total + $cnt > $max) { |
|
| 377 | 377 | return false; |
| 378 | 378 | } |
| 379 | 379 | |
@@ -390,23 +390,23 @@ discard block |
||
| 390 | 390 | * @param string $typeId List type ID of the referenced items |
| 391 | 391 | * @param string $userId Unique user ID |
| 392 | 392 | */ |
| 393 | - protected function addItems( \Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids, $typeId, $userId ) |
|
| 393 | + protected function addItems(\Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids, $typeId, $userId) |
|
| 394 | 394 | { |
| 395 | 395 | $item = $manager->createItem(); |
| 396 | - $item->setParentId( $userId ); |
|
| 397 | - $item->setTypeId( $typeId ); |
|
| 398 | - $item->setDomain( 'product' ); |
|
| 399 | - $item->setStatus( 1 ); |
|
| 396 | + $item->setParentId($userId); |
|
| 397 | + $item->setTypeId($typeId); |
|
| 398 | + $item->setDomain('product'); |
|
| 399 | + $item->setStatus(1); |
|
| 400 | 400 | |
| 401 | - foreach( $ids as $id ) |
|
| 401 | + foreach ($ids as $id) |
|
| 402 | 402 | { |
| 403 | - if( !isset( $listItems[$id] ) ) |
|
| 403 | + if (!isset($listItems[$id])) |
|
| 404 | 404 | { |
| 405 | - $item->setId( null ); |
|
| 406 | - $item->setRefId( $id ); |
|
| 405 | + $item->setId(null); |
|
| 406 | + $item->setRefId($id); |
|
| 407 | 407 | |
| 408 | - $manager->saveItem( $item ); |
|
| 409 | - $manager->moveItem( $item->getId() ); |
|
| 408 | + $manager->saveItem($item); |
|
| 409 | + $manager->moveItem($item->getId()); |
|
| 410 | 410 | } |
| 411 | 411 | } |
| 412 | 412 | } |
@@ -419,18 +419,18 @@ discard block |
||
| 419 | 419 | * @param array $listItems Associative list of the reference IDs as keys and the list items as values |
| 420 | 420 | * @param array $ids List of referenced IDs |
| 421 | 421 | */ |
| 422 | - protected function deleteItems( \Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids ) |
|
| 422 | + protected function deleteItems(\Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids) |
|
| 423 | 423 | { |
| 424 | 424 | $listIds = array(); |
| 425 | 425 | |
| 426 | - foreach( $ids as $id ) |
|
| 426 | + foreach ($ids as $id) |
|
| 427 | 427 | { |
| 428 | - if( isset( $listItems[$id] ) ) { |
|
| 428 | + if (isset($listItems[$id])) { |
|
| 429 | 429 | $listIds[] = $listItems[$id]->getId(); |
| 430 | 430 | } |
| 431 | 431 | } |
| 432 | 432 | |
| 433 | - $manager->deleteItems( $listIds ); |
|
| 433 | + $manager->deleteItems($listIds); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | |
@@ -442,19 +442,19 @@ discard block |
||
| 442 | 442 | * @param array $ids List of referenced IDs |
| 443 | 443 | * @param array $config Configuration settins with "timeframe", "pricevalue", "price", "stock" and "currency" |
| 444 | 444 | */ |
| 445 | - protected function editItems( \Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids, array $config ) |
|
| 445 | + protected function editItems(\Aimeos\MShop\Common\Manager\Iface $manager, array $listItems, array $ids, array $config) |
|
| 446 | 446 | { |
| 447 | - foreach( $ids as $id ) |
|
| 447 | + foreach ($ids as $id) |
|
| 448 | 448 | { |
| 449 | - if( isset( $listItems[$id] ) ) |
|
| 449 | + if (isset($listItems[$id])) |
|
| 450 | 450 | { |
| 451 | 451 | $item = $listItems[$id]; |
| 452 | - $time = time() + ( $config['timeframe'] + 1 ) * 86400; |
|
| 452 | + $time = time() + ($config['timeframe'] + 1) * 86400; |
|
| 453 | 453 | |
| 454 | - $item->setDateEnd( date( 'Y-m-d 00:00:00', $time ) ); |
|
| 455 | - $item->setConfig( $config ); |
|
| 454 | + $item->setDateEnd(date('Y-m-d 00:00:00', $time)); |
|
| 455 | + $item->setConfig($config); |
|
| 456 | 456 | |
| 457 | - $manager->saveItem( $item ); |
|
| 457 | + $manager->saveItem($item); |
|
| 458 | 458 | } |
| 459 | 459 | } |
| 460 | 460 | } |
@@ -469,19 +469,19 @@ discard block |
||
| 469 | 469 | * @param string $userId Unique user ID |
| 470 | 470 | * @return array Associative list of the reference IDs as keys and the list items as values |
| 471 | 471 | */ |
| 472 | - protected function getListItems( \Aimeos\MShop\Common\Manager\Iface $manager, array $refIds, $typeId, $userId ) |
|
| 472 | + protected function getListItems(\Aimeos\MShop\Common\Manager\Iface $manager, array $refIds, $typeId, $userId) |
|
| 473 | 473 | { |
| 474 | 474 | $search = $manager->createSearch(); |
| 475 | 475 | $expr = array( |
| 476 | - $search->compare( '==', 'customer.lists.parentid', $userId ), |
|
| 477 | - $search->compare( '==', 'customer.lists.refid', $refIds ), |
|
| 478 | - $search->compare( '==', 'customer.lists.domain', 'product' ), |
|
| 479 | - $search->compare( '==', 'customer.lists.typeid', $typeId ), |
|
| 476 | + $search->compare('==', 'customer.lists.parentid', $userId), |
|
| 477 | + $search->compare('==', 'customer.lists.refid', $refIds), |
|
| 478 | + $search->compare('==', 'customer.lists.domain', 'product'), |
|
| 479 | + $search->compare('==', 'customer.lists.typeid', $typeId), |
|
| 480 | 480 | ); |
| 481 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 481 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 482 | 482 | |
| 483 | 483 | $items = array(); |
| 484 | - foreach( $manager->searchItems( $search ) as $item ) { |
|
| 484 | + foreach ($manager->searchItems($search) as $item) { |
|
| 485 | 485 | $items[$item->getRefId()] = $item; |
| 486 | 486 | } |
| 487 | 487 | |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | */ |
| 497 | 497 | protected function getSubClientNames() |
| 498 | 498 | { |
| 499 | - return $this->getContext()->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 499 | + return $this->getContext()->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | 502 | |
@@ -506,10 +506,10 @@ discard block |
||
| 506 | 506 | * @param \Aimeos\MW\View\Iface $view View instance with helper for retrieving the required parameters |
| 507 | 507 | * @return integer Page number starting from 1 |
| 508 | 508 | */ |
| 509 | - protected function getProductListPage( \Aimeos\MW\View\Iface $view ) |
|
| 509 | + protected function getProductListPage(\Aimeos\MW\View\Iface $view) |
|
| 510 | 510 | { |
| 511 | - $page = (int) $view->param( 'wat_page', 1 ); |
|
| 512 | - return ( $page < 1 ? 1 : $page ); |
|
| 511 | + $page = (int) $view->param('wat_page', 1); |
|
| 512 | + return ($page < 1 ? 1 : $page); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | |
@@ -519,7 +519,7 @@ discard block |
||
| 519 | 519 | * @param \Aimeos\MW\View\Iface $view View instance with helper for retrieving the required parameters |
| 520 | 520 | * @return integer Page size |
| 521 | 521 | */ |
| 522 | - protected function getProductListSize( \Aimeos\MW\View\Iface $view ) |
|
| 522 | + protected function getProductListSize(\Aimeos\MW\View\Iface $view) |
|
| 523 | 523 | { |
| 524 | 524 | /** client/html/account/watch/size |
| 525 | 525 | * The number of products shown in a list page for watch products |
@@ -540,10 +540,10 @@ discard block |
||
| 540 | 540 | * @category Developer |
| 541 | 541 | * @see client/html/catalog/lists/size |
| 542 | 542 | */ |
| 543 | - $defaultSize = $this->getContext()->getConfig()->get( 'client/html/account/watch/size', 48 ); |
|
| 543 | + $defaultSize = $this->getContext()->getConfig()->get('client/html/account/watch/size', 48); |
|
| 544 | 544 | |
| 545 | - $size = (int) $view->param( 'watch-size', $defaultSize ); |
|
| 546 | - return ( $size < 1 || $size > 100 ? $defaultSize : $size ); |
|
| 545 | + $size = (int) $view->param('watch-size', $defaultSize); |
|
| 546 | + return ($size < 1 || $size > 100 ? $defaultSize : $size); |
|
| 547 | 547 | } |
| 548 | 548 | |
| 549 | 549 | |
@@ -555,33 +555,33 @@ discard block |
||
| 555 | 555 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 556 | 556 | * @return \Aimeos\MW\View\Iface Modified view object |
| 557 | 557 | */ |
| 558 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 558 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 559 | 559 | { |
| 560 | - if( !isset( $this->cache ) ) |
|
| 560 | + if (!isset($this->cache)) |
|
| 561 | 561 | { |
| 562 | 562 | $total = 0; |
| 563 | 563 | $productIds = array(); |
| 564 | 564 | $context = $this->getContext(); |
| 565 | - $typeItem = $this->getTypeItem( 'customer/lists/type', 'product', 'watch' ); |
|
| 565 | + $typeItem = $this->getTypeItem('customer/lists/type', 'product', 'watch'); |
|
| 566 | 566 | |
| 567 | - $size = $this->getProductListSize( $view ); |
|
| 568 | - $current = $this->getProductListPage( $view ); |
|
| 569 | - $last = ( $total != 0 ? ceil( $total / $size ) : 1 ); |
|
| 567 | + $size = $this->getProductListSize($view); |
|
| 568 | + $current = $this->getProductListPage($view); |
|
| 569 | + $last = ($total != 0 ? ceil($total / $size) : 1); |
|
| 570 | 570 | |
| 571 | 571 | |
| 572 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists' ); |
|
| 572 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists'); |
|
| 573 | 573 | |
| 574 | 574 | $search = $manager->createSearch(); |
| 575 | 575 | $expr = array( |
| 576 | - $search->compare( '==', 'customer.lists.parentid', $context->getUserId() ), |
|
| 577 | - $search->compare( '==', 'customer.lists.typeid', $typeItem->getId() ), |
|
| 578 | - $search->compare( '==', 'customer.lists.domain', 'product' ), |
|
| 576 | + $search->compare('==', 'customer.lists.parentid', $context->getUserId()), |
|
| 577 | + $search->compare('==', 'customer.lists.typeid', $typeItem->getId()), |
|
| 578 | + $search->compare('==', 'customer.lists.domain', 'product'), |
|
| 579 | 579 | ); |
| 580 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 581 | - $search->setSortations( array( $search->sort( '-', 'customer.lists.position' ) ) ); |
|
| 582 | - $search->setSlice( ( $current - 1 ) * $size, $size ); |
|
| 580 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 581 | + $search->setSortations(array($search->sort('-', 'customer.lists.position'))); |
|
| 582 | + $search->setSlice(($current - 1) * $size, $size); |
|
| 583 | 583 | |
| 584 | - $view->watchListItems = $manager->searchItems( $search, array(), $total ); |
|
| 584 | + $view->watchListItems = $manager->searchItems($search, array(), $total); |
|
| 585 | 585 | |
| 586 | 586 | |
| 587 | 587 | /** client/html/account/watch/domains |
@@ -600,19 +600,19 @@ discard block |
||
| 600 | 600 | * @category Developer |
| 601 | 601 | * @see client/html/catalog/domains |
| 602 | 602 | */ |
| 603 | - $default = array( 'text', 'price', 'media' ); |
|
| 604 | - $domains = $context->getConfig()->get( 'client/html/account/watch/domains', $default ); |
|
| 603 | + $default = array('text', 'price', 'media'); |
|
| 604 | + $domains = $context->getConfig()->get('client/html/account/watch/domains', $default); |
|
| 605 | 605 | |
| 606 | - foreach( $view->watchListItems as $listItem ) { |
|
| 606 | + foreach ($view->watchListItems as $listItem) { |
|
| 607 | 607 | $productIds[] = $listItem->getRefId(); |
| 608 | 608 | } |
| 609 | 609 | |
| 610 | - $controller = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' ); |
|
| 610 | + $controller = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog'); |
|
| 611 | 611 | |
| 612 | - $view->watchProductItems = $controller->getProductItems( $productIds, $domains ); |
|
| 612 | + $view->watchProductItems = $controller->getProductItems($productIds, $domains); |
|
| 613 | 613 | $view->watchPageFirst = 1; |
| 614 | - $view->watchPagePrev = ( $current > 1 ? $current - 1 : 1 ); |
|
| 615 | - $view->watchPageNext = ( $current < $last ? $current + 1 : $last ); |
|
| 614 | + $view->watchPagePrev = ($current > 1 ? $current - 1 : 1); |
|
| 615 | + $view->watchPageNext = ($current < $last ? $current + 1 : $last); |
|
| 616 | 616 | $view->watchPageLast = $last; |
| 617 | 617 | $view->watchPageCurr = $current; |
| 618 | 618 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * @param array $templatePaths Associative list of the file system paths to the core or the extensions as key |
| 36 | 36 | * and a list of relative paths inside the core or the extension as values |
| 37 | 37 | */ |
| 38 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context, array $templatePaths ) |
|
| 38 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context, array $templatePaths) |
|
| 39 | 39 | { |
| 40 | 40 | $this->context = $context; |
| 41 | 41 | $this->templatePaths = $templatePaths; |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function getView() |
| 51 | 51 | { |
| 52 | - if( !isset( $this->view ) ) { |
|
| 53 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'No view available' ) ); |
|
| 52 | + if (!isset($this->view)) { |
|
| 53 | + throw new \Aimeos\Client\Html\Exception(sprintf('No view available')); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | return $this->view; |
@@ -64,14 +64,14 @@ discard block |
||
| 64 | 64 | * @param string $uid Unique identifier for the output if the content is placed more than once on the same page |
| 65 | 65 | * @return string Modified body content |
| 66 | 66 | */ |
| 67 | - public function modifyBody( $content, $uid ) |
|
| 67 | + public function modifyBody($content, $uid) |
|
| 68 | 68 | { |
| 69 | 69 | $view = $this->getView(); |
| 70 | 70 | |
| 71 | - foreach( $this->getSubClients() as $subclient ) |
|
| 71 | + foreach ($this->getSubClients() as $subclient) |
|
| 72 | 72 | { |
| 73 | - $subclient->setView( $view ); |
|
| 74 | - $content = $subclient->modifyBody( $content, $uid ); |
|
| 73 | + $subclient->setView($view); |
|
| 74 | + $content = $subclient->modifyBody($content, $uid); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | return $content; |
@@ -85,14 +85,14 @@ discard block |
||
| 85 | 85 | * @param string $uid Unique identifier for the output if the content is placed more than once on the same page |
| 86 | 86 | * @return string Modified header content |
| 87 | 87 | */ |
| 88 | - public function modifyHeader( $content, $uid ) |
|
| 88 | + public function modifyHeader($content, $uid) |
|
| 89 | 89 | { |
| 90 | 90 | $view = $this->getView(); |
| 91 | 91 | |
| 92 | - foreach( $this->getSubClients() as $subclient ) |
|
| 92 | + foreach ($this->getSubClients() as $subclient) |
|
| 93 | 93 | { |
| 94 | - $subclient->setView( $view ); |
|
| 95 | - $content = $subclient->modifyHeader( $content, $uid ); |
|
| 94 | + $subclient->setView($view); |
|
| 95 | + $content = $subclient->modifyHeader($content, $uid); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | return $content; |
@@ -110,11 +110,11 @@ discard block |
||
| 110 | 110 | { |
| 111 | 111 | $view = $this->getView(); |
| 112 | 112 | |
| 113 | - foreach( $this->getSubClients() as $subclient ) |
|
| 113 | + foreach ($this->getSubClients() as $subclient) |
|
| 114 | 114 | { |
| 115 | - $subclient->setView( $view ); |
|
| 115 | + $subclient->setView($view); |
|
| 116 | 116 | |
| 117 | - if( $subclient->process() === false ) { |
|
| 117 | + if ($subclient->process() === false) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | } |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | * @param \Aimeos\MW\View\Iface $view The view object which generates the HTML output |
| 130 | 130 | * @return \Aimeos\Client\Html\Iface Reference to this object for fluent calls |
| 131 | 131 | */ |
| 132 | - public function setView( \Aimeos\MW\View\Iface $view ) |
|
| 132 | + public function setView(\Aimeos\MW\View\Iface $view) |
|
| 133 | 133 | { |
| 134 | 134 | $this->view = $view; |
| 135 | 135 | return $this; |
@@ -145,29 +145,29 @@ discard block |
||
| 145 | 145 | * @param string $classprefix Decorator class prefix, e.g. "\Aimeos\Client\Html\Catalog\Decorator\" |
| 146 | 146 | * @return \Aimeos\Client\Html\Iface Client object |
| 147 | 147 | */ |
| 148 | - protected function addDecorators( \Aimeos\Client\Html\Iface $client, array $templatePaths, |
|
| 149 | - array $decorators, $classprefix ) |
|
| 148 | + protected function addDecorators(\Aimeos\Client\Html\Iface $client, array $templatePaths, |
|
| 149 | + array $decorators, $classprefix) |
|
| 150 | 150 | { |
| 151 | 151 | $iface = '\\Aimeos\\Client\\Html\\Common\\Decorator\\Iface'; |
| 152 | 152 | |
| 153 | - foreach( $decorators as $name ) |
|
| 153 | + foreach ($decorators as $name) |
|
| 154 | 154 | { |
| 155 | - if( ctype_alnum( $name ) === false ) |
|
| 155 | + if (ctype_alnum($name) === false) |
|
| 156 | 156 | { |
| 157 | - $classname = is_string( $name ) ? $classprefix . $name : '<not a string>'; |
|
| 158 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Invalid class name "%1$s"', $classname ) ); |
|
| 157 | + $classname = is_string($name) ? $classprefix.$name : '<not a string>'; |
|
| 158 | + throw new \Aimeos\Client\Html\Exception(sprintf('Invalid class name "%1$s"', $classname)); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - $classname = $classprefix . $name; |
|
| 161 | + $classname = $classprefix.$name; |
|
| 162 | 162 | |
| 163 | - if( class_exists( $classname ) === false ) { |
|
| 164 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Class "%1$s" not found', $classname ) ); |
|
| 163 | + if (class_exists($classname) === false) { |
|
| 164 | + throw new \Aimeos\Client\Html\Exception(sprintf('Class "%1$s" not found', $classname)); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - $client = new $classname( $client, $this->context, $this->templatePaths ); |
|
| 167 | + $client = new $classname($client, $this->context, $this->templatePaths); |
|
| 168 | 168 | |
| 169 | - if( !( $client instanceof $iface ) ) { |
|
| 170 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Class "%1$s" does not implement "%2$s"', $classname, $iface ) ); |
|
| 169 | + if (!($client instanceof $iface)) { |
|
| 170 | + throw new \Aimeos\Client\Html\Exception(sprintf('Class "%1$s" does not implement "%2$s"', $classname, $iface)); |
|
| 171 | 171 | } |
| 172 | 172 | } |
| 173 | 173 | |
@@ -183,35 +183,35 @@ discard block |
||
| 183 | 183 | * @param string $path Client string in lower case, e.g. "catalog/detail/basic" |
| 184 | 184 | * @return \Aimeos\Client\Html\Iface Client object |
| 185 | 185 | */ |
| 186 | - protected function addClientDecorators( \Aimeos\Client\Html\Iface $client, array $templatePaths, $path ) |
|
| 186 | + protected function addClientDecorators(\Aimeos\Client\Html\Iface $client, array $templatePaths, $path) |
|
| 187 | 187 | { |
| 188 | - if( !is_string( $path ) || $path === '' ) { |
|
| 189 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Invalid domain "%1$s"', $path ) ); |
|
| 188 | + if (!is_string($path) || $path === '') { |
|
| 189 | + throw new \Aimeos\Client\Html\Exception(sprintf('Invalid domain "%1$s"', $path)); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - $localClass = str_replace( ' ', '\\', ucwords( str_replace( '/', ' ', $path ) ) ); |
|
| 192 | + $localClass = str_replace(' ', '\\', ucwords(str_replace('/', ' ', $path))); |
|
| 193 | 193 | $config = $this->context->getConfig(); |
| 194 | 194 | |
| 195 | - $decorators = $config->get( 'client/html/common/decorators/default', array() ); |
|
| 196 | - $excludes = $config->get( 'client/html/' . $path . '/decorators/excludes', array() ); |
|
| 195 | + $decorators = $config->get('client/html/common/decorators/default', array()); |
|
| 196 | + $excludes = $config->get('client/html/'.$path.'/decorators/excludes', array()); |
|
| 197 | 197 | |
| 198 | - foreach( $decorators as $key => $name ) |
|
| 198 | + foreach ($decorators as $key => $name) |
|
| 199 | 199 | { |
| 200 | - if( in_array( $name, $excludes ) ) { |
|
| 201 | - unset( $decorators[$key] ); |
|
| 200 | + if (in_array($name, $excludes)) { |
|
| 201 | + unset($decorators[$key]); |
|
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | $classprefix = '\\Aimeos\\Client\\Html\\Common\\Decorator\\'; |
| 206 | - $client = $this->addDecorators( $client, $templatePaths, $decorators, $classprefix ); |
|
| 206 | + $client = $this->addDecorators($client, $templatePaths, $decorators, $classprefix); |
|
| 207 | 207 | |
| 208 | 208 | $classprefix = '\\Aimeos\\Client\\Html\\Common\\Decorator\\'; |
| 209 | - $decorators = $config->get( 'client/html/' . $path . '/decorators/global', array() ); |
|
| 210 | - $client = $this->addDecorators( $client, $templatePaths, $decorators, $classprefix ); |
|
| 209 | + $decorators = $config->get('client/html/'.$path.'/decorators/global', array()); |
|
| 210 | + $client = $this->addDecorators($client, $templatePaths, $decorators, $classprefix); |
|
| 211 | 211 | |
| 212 | - $classprefix = '\\Aimeos\\Client\\Html\\' . $localClass . '\\Decorator\\'; |
|
| 213 | - $decorators = $config->get( 'client/html/' . $path . '/decorators/local', array() ); |
|
| 214 | - $client = $this->addDecorators( $client, $templatePaths, $decorators, $classprefix ); |
|
| 212 | + $classprefix = '\\Aimeos\\Client\\Html\\'.$localClass.'\\Decorator\\'; |
|
| 213 | + $decorators = $config->get('client/html/'.$path.'/decorators/local', array()); |
|
| 214 | + $client = $this->addDecorators($client, $templatePaths, $decorators, $classprefix); |
|
| 215 | 215 | |
| 216 | 216 | return $client; |
| 217 | 217 | } |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | * @param string|null &$expire Expiration date that will be overwritten if an earlier date is found |
| 226 | 226 | * @param array &$tags List of tags the new tags will be added to |
| 227 | 227 | */ |
| 228 | - protected function addMetaItem( $items, $domain, &$expire, array &$tags ) |
|
| 228 | + protected function addMetaItem($items, $domain, &$expire, array &$tags) |
|
| 229 | 229 | { |
| 230 | 230 | /** client/html/common/cache/tag-all |
| 231 | 231 | * Adds tags for all items used in a cache entry |
@@ -259,18 +259,18 @@ discard block |
||
| 259 | 259 | * @see madmin/cache/manager/name |
| 260 | 260 | * @see madmin/cache/name |
| 261 | 261 | */ |
| 262 | - $tagAll = $this->context->getConfig()->get( 'client/html/common/cache/tag-all', false ); |
|
| 262 | + $tagAll = $this->context->getConfig()->get('client/html/common/cache/tag-all', false); |
|
| 263 | 263 | |
| 264 | - if( !is_array( $items ) ) { |
|
| 265 | - $items = array( $items ); |
|
| 264 | + if (!is_array($items)) { |
|
| 265 | + $items = array($items); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - if( $tagAll !== true && !empty( $items ) ) { |
|
| 268 | + if ($tagAll !== true && !empty($items)) { |
|
| 269 | 269 | $tags[] = $domain; |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | - foreach( $items as $item ) { |
|
| 273 | - $this->addMetaItemSingle( $item, $domain, $expire, $tags, $tagAll ); |
|
| 272 | + foreach ($items as $item) { |
|
| 273 | + $this->addMetaItemSingle($item, $domain, $expire, $tags, $tagAll); |
|
| 274 | 274 | } |
| 275 | 275 | } |
| 276 | 276 | |
@@ -284,25 +284,25 @@ discard block |
||
| 284 | 284 | * @param array &$tags List of tags the new tags will be added to |
| 285 | 285 | * @param boolean $tagAll True of tags for all items should be added, false if only for the main item |
| 286 | 286 | */ |
| 287 | - private function addMetaItemSingle( \Aimeos\MShop\Common\Item\Iface $item, $domain, &$expire, array &$tags, $tagAll ) |
|
| 287 | + private function addMetaItemSingle(\Aimeos\MShop\Common\Item\Iface $item, $domain, &$expire, array &$tags, $tagAll) |
|
| 288 | 288 | { |
| 289 | 289 | $expires = array(); |
| 290 | - $domain = str_replace( '/', '_', $domain ); // maximum compatiblity |
|
| 290 | + $domain = str_replace('/', '_', $domain); // maximum compatiblity |
|
| 291 | 291 | |
| 292 | - if( $tagAll === true ) { |
|
| 293 | - $tags[] = $domain . '-' . $item->getId(); |
|
| 292 | + if ($tagAll === true) { |
|
| 293 | + $tags[] = $domain.'-'.$item->getId(); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - if( $item instanceof \Aimeos\MShop\Common\Item\Time\Iface && ( $date = $item->getDateEnd() ) !== null ) { |
|
| 296 | + if ($item instanceof \Aimeos\MShop\Common\Item\Time\Iface && ($date = $item->getDateEnd()) !== null) { |
|
| 297 | 297 | $expires[] = $date; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - if( $item instanceof \Aimeos\MShop\Common\Item\ListRef\Iface ) { |
|
| 301 | - $this->addMetaItemRef( $item, $expires, $tags, $tagAll ); |
|
| 300 | + if ($item instanceof \Aimeos\MShop\Common\Item\ListRef\Iface) { |
|
| 301 | + $this->addMetaItemRef($item, $expires, $tags, $tagAll); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - if( !empty( $expires ) ) { |
|
| 305 | - $expire = min( $expires ); |
|
| 304 | + if (!empty($expires)) { |
|
| 305 | + $expire = min($expires); |
|
| 306 | 306 | } |
| 307 | 307 | } |
| 308 | 308 | |
@@ -315,15 +315,15 @@ discard block |
||
| 315 | 315 | * @param array &$tags List of tags the new tags will be added to |
| 316 | 316 | * @param boolean $tagAll True of tags for all items should be added, false if only for the main item |
| 317 | 317 | */ |
| 318 | - private function addMetaItemRef( \Aimeos\MShop\Common\Item\ListRef\Iface $item, array &$expires, array &$tags, $tagAll ) |
|
| 318 | + private function addMetaItemRef(\Aimeos\MShop\Common\Item\ListRef\Iface $item, array &$expires, array &$tags, $tagAll) |
|
| 319 | 319 | { |
| 320 | - foreach( $item->getListItems() as $listitem ) |
|
| 320 | + foreach ($item->getListItems() as $listitem) |
|
| 321 | 321 | { |
| 322 | - if( $tagAll === true ) { |
|
| 323 | - $tags[] = str_replace( '/', '_', $listitem->getDomain() ) . '-' . $listitem->getRefId(); |
|
| 322 | + if ($tagAll === true) { |
|
| 323 | + $tags[] = str_replace('/', '_', $listitem->getDomain()).'-'.$listitem->getRefId(); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - if( ( $date = $listitem->getDateEnd() ) !== null ) { |
|
| 326 | + if (($date = $listitem->getDateEnd()) !== null) { |
|
| 327 | 327 | $expires[] = $date; |
| 328 | 328 | } |
| 329 | 329 | } |
@@ -337,21 +337,21 @@ discard block |
||
| 337 | 337 | * @param string $domain Name of the domain the item IDs are from |
| 338 | 338 | * @param string|null &$expire Expiration date that will be overwritten if an start date in the future is available |
| 339 | 339 | */ |
| 340 | - protected function addMetaList( $ids, $domain, &$expire ) |
|
| 340 | + protected function addMetaList($ids, $domain, &$expire) |
|
| 341 | 341 | { |
| 342 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $domain . '/lists' ); |
|
| 342 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $domain.'/lists'); |
|
| 343 | 343 | |
| 344 | 344 | $search = $manager->createSearch(); |
| 345 | 345 | $expr = array( |
| 346 | - $search->compare( '==', $domain . '.lists.parentid', $ids ), |
|
| 347 | - $search->compare( '>', $domain . '.lists.datestart', date( 'Y-m-d H:i:00' ) ), |
|
| 346 | + $search->compare('==', $domain.'.lists.parentid', $ids), |
|
| 347 | + $search->compare('>', $domain.'.lists.datestart', date('Y-m-d H:i:00')), |
|
| 348 | 348 | ); |
| 349 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 350 | - $search->setSortations( array( $search->sort( '+', $domain . '.lists.datestart' ) ) ); |
|
| 351 | - $search->setSlice( 0, 1 ); |
|
| 349 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 350 | + $search->setSortations(array($search->sort('+', $domain.'.lists.datestart'))); |
|
| 351 | + $search->setSlice(0, 1); |
|
| 352 | 352 | |
| 353 | - foreach( $manager->searchItems( $search ) as $listItem ) { |
|
| 354 | - $expire = $this->expires( $expire, $listItem->getDateStart() ); |
|
| 353 | + foreach ($manager->searchItems($search) as $listItem) { |
|
| 354 | + $expire = $this->expires($expire, $listItem->getDateStart()); |
|
| 355 | 355 | } |
| 356 | 356 | } |
| 357 | 357 | |
@@ -363,34 +363,34 @@ discard block |
||
| 363 | 363 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
| 364 | 364 | * @return \Aimeos\Client\Html\Iface Sub-part object |
| 365 | 365 | */ |
| 366 | - protected function createSubClient( $path, $name ) |
|
| 366 | + protected function createSubClient($path, $name) |
|
| 367 | 367 | { |
| 368 | - $path = strtolower( $path ); |
|
| 368 | + $path = strtolower($path); |
|
| 369 | 369 | |
| 370 | - if( $name === null ) { |
|
| 371 | - $name = $this->context->getConfig()->get( 'client/html/' . $path . '/name', 'Standard' ); |
|
| 370 | + if ($name === null) { |
|
| 371 | + $name = $this->context->getConfig()->get('client/html/'.$path.'/name', 'Standard'); |
|
| 372 | 372 | } |
| 373 | 373 | |
| 374 | - if( empty( $name ) || ctype_alnum( $name ) === false ) { |
|
| 375 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Invalid characters in client name "%1$s"', $name ) ); |
|
| 374 | + if (empty($name) || ctype_alnum($name) === false) { |
|
| 375 | + throw new \Aimeos\Client\Html\Exception(sprintf('Invalid characters in client name "%1$s"', $name)); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - $subnames = str_replace( ' ', '\\', ucwords( str_replace( '/', ' ', $path ) ) ); |
|
| 378 | + $subnames = str_replace(' ', '\\', ucwords(str_replace('/', ' ', $path))); |
|
| 379 | 379 | |
| 380 | - $classname = '\\Aimeos\\Client\\Html\\' . $subnames . '\\' . $name; |
|
| 380 | + $classname = '\\Aimeos\\Client\\Html\\'.$subnames.'\\'.$name; |
|
| 381 | 381 | $interface = '\\Aimeos\\Client\\Html\\Iface'; |
| 382 | 382 | |
| 383 | - if( class_exists( $classname ) === false ) { |
|
| 384 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Class "%1$s" not available', $classname ) ); |
|
| 383 | + if (class_exists($classname) === false) { |
|
| 384 | + throw new \Aimeos\Client\Html\Exception(sprintf('Class "%1$s" not available', $classname)); |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | - $object = new $classname( $this->context, $this->templatePaths ); |
|
| 387 | + $object = new $classname($this->context, $this->templatePaths); |
|
| 388 | 388 | |
| 389 | - if( ( $object instanceof $interface ) === false ) { |
|
| 390 | - throw new \Aimeos\Client\Html\Exception( sprintf( 'Class "%1$s" does not implement interface "%2$s"', $classname, $interface ) ); |
|
| 389 | + if (($object instanceof $interface) === false) { |
|
| 390 | + throw new \Aimeos\Client\Html\Exception(sprintf('Class "%1$s" does not implement interface "%2$s"', $classname, $interface)); |
|
| 391 | 391 | } |
| 392 | 392 | |
| 393 | - return $this->addClientDecorators( $object, $this->templatePaths, $path ); |
|
| 393 | + return $this->addClientDecorators($object, $this->templatePaths, $path); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | |
@@ -401,9 +401,9 @@ discard block |
||
| 401 | 401 | * @param string|null $second Second expiration date or null |
| 402 | 402 | * @return string|null Expiration date |
| 403 | 403 | */ |
| 404 | - protected function expires( $first, $second ) |
|
| 404 | + protected function expires($first, $second) |
|
| 405 | 405 | { |
| 406 | - return ( $first !== null ? ( $second !== null ? min( $first, $second ) : $first ) : $second ); |
|
| 406 | + return ($first !== null ? ($second !== null ? min($first, $second) : $first) : $second); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | |
@@ -414,13 +414,13 @@ discard block |
||
| 414 | 414 | * @param array $prefixes List of prefixes the parameters must start with |
| 415 | 415 | * @return array Associative list of parameters used by the html client |
| 416 | 416 | */ |
| 417 | - protected function getClientParams( array $params, array $prefixes = array( 'f', 'l', 'd', 'a' ) ) |
|
| 417 | + protected function getClientParams(array $params, array $prefixes = array('f', 'l', 'd', 'a')) |
|
| 418 | 418 | { |
| 419 | 419 | $list = array(); |
| 420 | 420 | |
| 421 | - foreach( $params as $key => $value ) |
|
| 421 | + foreach ($params as $key => $value) |
|
| 422 | 422 | { |
| 423 | - if( in_array( $key[0], $prefixes ) && $key[1] === '_' ) { |
|
| 423 | + if (in_array($key[0], $prefixes) && $key[1] === '_') { |
|
| 424 | 424 | $list[$key] = $value; |
| 425 | 425 | } |
| 426 | 426 | } |
@@ -448,17 +448,17 @@ discard block |
||
| 448 | 448 | * @param array $config Multi-dimensional array of configuration options used by the client and sub-clients |
| 449 | 449 | * @return string Unique hash |
| 450 | 450 | */ |
| 451 | - protected function getParamHash( array $prefixes = array( 'f', 'l', 'd' ), $key = '', array $config = array() ) |
|
| 451 | + protected function getParamHash(array $prefixes = array('f', 'l', 'd'), $key = '', array $config = array()) |
|
| 452 | 452 | { |
| 453 | 453 | $locale = $this->getContext()->getLocale(); |
| 454 | - $params = $this->getClientParams( $this->getView()->param(), $prefixes ); |
|
| 455 | - ksort( $params ); |
|
| 454 | + $params = $this->getClientParams($this->getView()->param(), $prefixes); |
|
| 455 | + ksort($params); |
|
| 456 | 456 | |
| 457 | - if( ( $pstr = json_encode( $params ) ) === false || ( $cstr = json_encode( $config ) ) === false ) { |
|
| 458 | - throw new \Aimeos\Client\Html\Exception( 'Unable to encode parameters or configuration options' ); |
|
| 457 | + if (($pstr = json_encode($params)) === false || ($cstr = json_encode($config)) === false) { |
|
| 458 | + throw new \Aimeos\Client\Html\Exception('Unable to encode parameters or configuration options'); |
|
| 459 | 459 | } |
| 460 | 460 | |
| 461 | - return md5( $key . $pstr . $cstr . $locale->getLanguageId() . $locale->getCurrencyId() ); |
|
| 461 | + return md5($key.$pstr.$cstr.$locale->getLanguageId().$locale->getCurrencyId()); |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | |
@@ -477,12 +477,12 @@ discard block |
||
| 477 | 477 | */ |
| 478 | 478 | protected function getSubClients() |
| 479 | 479 | { |
| 480 | - if( !isset( $this->subclients ) ) |
|
| 480 | + if (!isset($this->subclients)) |
|
| 481 | 481 | { |
| 482 | 482 | $this->subclients = array(); |
| 483 | 483 | |
| 484 | - foreach( $this->getSubClientNames() as $name ) { |
|
| 485 | - $this->subclients[] = $this->getSubClient( $name ); |
|
| 484 | + foreach ($this->getSubClientNames() as $name) { |
|
| 485 | + $this->subclients[] = $this->getSubClient($name); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | |
@@ -511,23 +511,23 @@ discard block |
||
| 511 | 511 | * @return \Aimeos\MShop\Common\Item\Type\Iface Type item |
| 512 | 512 | * @throws \Aimeos\Controller\Jobs\Exception If no item is found |
| 513 | 513 | */ |
| 514 | - protected function getTypeItem( $prefix, $domain, $code ) |
|
| 514 | + protected function getTypeItem($prefix, $domain, $code) |
|
| 515 | 515 | { |
| 516 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $prefix ); |
|
| 517 | - $prefix = str_replace( '/', '.', $prefix ); |
|
| 516 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $prefix); |
|
| 517 | + $prefix = str_replace('/', '.', $prefix); |
|
| 518 | 518 | |
| 519 | 519 | $search = $manager->createSearch(); |
| 520 | 520 | $expr = array( |
| 521 | - $search->compare( '==', $prefix . '.domain', $domain ), |
|
| 522 | - $search->compare( '==', $prefix . '.code', $code ), |
|
| 521 | + $search->compare('==', $prefix.'.domain', $domain), |
|
| 522 | + $search->compare('==', $prefix.'.code', $code), |
|
| 523 | 523 | ); |
| 524 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 525 | - $result = $manager->searchItems( $search ); |
|
| 524 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 525 | + $result = $manager->searchItems($search); |
|
| 526 | 526 | |
| 527 | - if( ( $item = reset( $result ) ) === false ) |
|
| 527 | + if (($item = reset($result)) === false) |
|
| 528 | 528 | { |
| 529 | - $msg = sprintf( 'No type item for "%1$s/%2$s" in "%3$s" found', $domain, $code, $prefix ); |
|
| 530 | - throw new \Aimeos\Controller\Jobs\Exception( $msg ); |
|
| 529 | + $msg = sprintf('No type item for "%1$s/%2$s" in "%3$s" found', $domain, $code, $prefix); |
|
| 530 | + throw new \Aimeos\Controller\Jobs\Exception($msg); |
|
| 531 | 531 | } |
| 532 | 532 | |
| 533 | 533 | return $item; |
@@ -543,9 +543,9 @@ discard block |
||
| 543 | 543 | * @param string $confkey Configuration key prefix that matches all relevant settings for the component |
| 544 | 544 | * @return string Cached entry or empty string if not available |
| 545 | 545 | */ |
| 546 | - protected function getCached( $type, $uid, array $prefixes, $confkey ) |
|
| 546 | + protected function getCached($type, $uid, array $prefixes, $confkey) |
|
| 547 | 547 | { |
| 548 | - if( !isset( $this->cache ) ) |
|
| 548 | + if (!isset($this->cache)) |
|
| 549 | 549 | { |
| 550 | 550 | $context = $this->getContext(); |
| 551 | 551 | $config = $context->getConfig(); |
@@ -568,28 +568,28 @@ discard block |
||
| 568 | 568 | * @category User |
| 569 | 569 | * @see client/html/common/cache/tag-all |
| 570 | 570 | */ |
| 571 | - $force = $config->get( 'client/html/common/cache/force', false ); |
|
| 571 | + $force = $config->get('client/html/common/cache/force', false); |
|
| 572 | 572 | |
| 573 | - if( $force == false && $context->getUserId() !== null ) { |
|
| 573 | + if ($force == false && $context->getUserId() !== null) { |
|
| 574 | 574 | return null; |
| 575 | 575 | } |
| 576 | 576 | |
| 577 | - $cfg = $config->get( $confkey, array() ); |
|
| 577 | + $cfg = $config->get($confkey, array()); |
|
| 578 | 578 | |
| 579 | 579 | $keys = array( |
| 580 | - 'body' => $this->getParamHash( $prefixes, $uid . ':' . $confkey . ':body', $cfg ), |
|
| 581 | - 'header' => $this->getParamHash( $prefixes, $uid . ':' . $confkey . ':header', $cfg ), |
|
| 580 | + 'body' => $this->getParamHash($prefixes, $uid.':'.$confkey.':body', $cfg), |
|
| 581 | + 'header' => $this->getParamHash($prefixes, $uid.':'.$confkey.':header', $cfg), |
|
| 582 | 582 | ); |
| 583 | 583 | |
| 584 | - $entries = $context->getCache()->getList( $keys ); |
|
| 584 | + $entries = $context->getCache()->getList($keys); |
|
| 585 | 585 | $this->cache = array(); |
| 586 | 586 | |
| 587 | - foreach( $keys as $key => $hash ) { |
|
| 588 | - $this->cache[$key] = ( array_key_exists( $hash, $entries ) ? $entries[$hash] : null ); |
|
| 587 | + foreach ($keys as $key => $hash) { |
|
| 588 | + $this->cache[$key] = (array_key_exists($hash, $entries) ? $entries[$hash] : null); |
|
| 589 | 589 | } |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | - return ( array_key_exists( $type, $this->cache ) ? $this->cache[$type] : null ); |
|
| 592 | + return (array_key_exists($type, $this->cache) ? $this->cache[$type] : null); |
|
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | |
@@ -606,28 +606,28 @@ discard block |
||
| 606 | 606 | * @param string|null $expire Date/time string in "YYYY-MM-DD HH:mm:ss" |
| 607 | 607 | * format when the cache entry expires |
| 608 | 608 | */ |
| 609 | - protected function setCached( $type, $uid, array $prefixes, $confkey, $value, array $tags, $expire ) |
|
| 609 | + protected function setCached($type, $uid, array $prefixes, $confkey, $value, array $tags, $expire) |
|
| 610 | 610 | { |
| 611 | 611 | $context = $this->getContext(); |
| 612 | 612 | $config = $context->getConfig(); |
| 613 | 613 | |
| 614 | - $force = $config->get( 'client/html/common/cache/force', false ); |
|
| 614 | + $force = $config->get('client/html/common/cache/force', false); |
|
| 615 | 615 | |
| 616 | - if( $force == false && $context->getUserId() !== null ) { |
|
| 616 | + if ($force == false && $context->getUserId() !== null) { |
|
| 617 | 617 | return; |
| 618 | 618 | } |
| 619 | 619 | |
| 620 | 620 | try |
| 621 | 621 | { |
| 622 | - $cfg = $config->get( $confkey, array() ); |
|
| 623 | - $key = $this->getParamHash( $prefixes, $uid . ':' . $confkey . ':' . $type, $cfg ); |
|
| 622 | + $cfg = $config->get($confkey, array()); |
|
| 623 | + $key = $this->getParamHash($prefixes, $uid.':'.$confkey.':'.$type, $cfg); |
|
| 624 | 624 | |
| 625 | - $context->getCache()->set( $key, $value, array_unique( $tags ), $expire ); |
|
| 625 | + $context->getCache()->set($key, $value, array_unique($tags), $expire); |
|
| 626 | 626 | } |
| 627 | - catch( \Exception $e ) |
|
| 627 | + catch (\Exception $e) |
|
| 628 | 628 | { |
| 629 | - $msg = sprintf( 'Unable to set cache entry: %1$s', $e->getMessage() ); |
|
| 630 | - $context->getLogger()->log( $msg, \Aimeos\MW\Logger\Base::NOTICE ); |
|
| 629 | + $msg = sprintf('Unable to set cache entry: %1$s', $e->getMessage()); |
|
| 630 | + $context->getLogger()->log($msg, \Aimeos\MW\Logger\Base::NOTICE); |
|
| 631 | 631 | } |
| 632 | 632 | } |
| 633 | 633 | |
@@ -639,19 +639,19 @@ discard block |
||
| 639 | 639 | * @param string $section New section content |
| 640 | 640 | * @param string $marker Name of the section marker without "<!-- " and " -->" parts |
| 641 | 641 | */ |
| 642 | - protected function replaceSection( $content, $section, $marker ) |
|
| 642 | + protected function replaceSection($content, $section, $marker) |
|
| 643 | 643 | { |
| 644 | 644 | $start = 0; |
| 645 | - $len = strlen( $section ); |
|
| 646 | - $marker = '<!-- ' . $marker . ' -->'; |
|
| 645 | + $len = strlen($section); |
|
| 646 | + $marker = '<!-- '.$marker.' -->'; |
|
| 647 | 647 | |
| 648 | - while( ( $start = @strpos( $content, $marker, $start ) ) !== false ) |
|
| 648 | + while (($start = @strpos($content, $marker, $start)) !== false) |
|
| 649 | 649 | { |
| 650 | - if( ( $end = strpos( $content, $marker, $start + 1 ) ) !== false ) { |
|
| 651 | - $content = substr_replace( $content, $section, $start, $end - $start + strlen( $marker ) ); |
|
| 650 | + if (($end = strpos($content, $marker, $start + 1)) !== false) { |
|
| 651 | + $content = substr_replace($content, $section, $start, $end - $start + strlen($marker)); |
|
| 652 | 652 | } |
| 653 | 653 | |
| 654 | - $start += 2 * strlen( $marker ) + $len; |
|
| 654 | + $start += 2 * strlen($marker) + $len; |
|
| 655 | 655 | } |
| 656 | 656 | |
| 657 | 657 | return $content; |
@@ -666,7 +666,7 @@ discard block |
||
| 666 | 666 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 667 | 667 | * @return \Aimeos\MW\View\Iface Modified view object |
| 668 | 668 | */ |
| 669 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 669 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 670 | 670 | { |
| 671 | 671 | return $view; |
| 672 | 672 | } |
@@ -678,17 +678,17 @@ discard block |
||
| 678 | 678 | * @param array $codes Associative list of scope and object as key and error code as value |
| 679 | 679 | * @return array List of translated error messages |
| 680 | 680 | */ |
| 681 | - protected function translatePluginErrorCodes( array $codes ) |
|
| 681 | + protected function translatePluginErrorCodes(array $codes) |
|
| 682 | 682 | { |
| 683 | 683 | $errors = array(); |
| 684 | 684 | $i18n = $this->context->getI18n(); |
| 685 | 685 | |
| 686 | - foreach( $codes as $scope => $list ) |
|
| 686 | + foreach ($codes as $scope => $list) |
|
| 687 | 687 | { |
| 688 | - foreach( $list as $object => $errcode ) |
|
| 688 | + foreach ($list as $object => $errcode) |
|
| 689 | 689 | { |
| 690 | - $key = $scope . ( $scope !== 'product' ? '.' . $object : '' ) . '.' . $errcode; |
|
| 691 | - $errors[] = $i18n->dt( 'mshop/code', $key ); |
|
| 690 | + $key = $scope.($scope !== 'product' ? '.'.$object : '').'.'.$errcode; |
|
| 691 | + $errors[] = $i18n->dt('mshop/code', $key); |
|
| 692 | 692 | } |
| 693 | 693 | } |
| 694 | 694 | |
@@ -70,13 +70,13 @@ discard block |
||
| 70 | 70 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 71 | 71 | * @return string HTML code |
| 72 | 72 | */ |
| 73 | - public function getBody( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 73 | + public function getBody($uid = '', array &$tags = array(), &$expire = null) |
|
| 74 | 74 | { |
| 75 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 75 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 76 | 76 | |
| 77 | 77 | $html = ''; |
| 78 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 79 | - $html .= $subclient->setView( $view )->getBody( $uid, $tags, $expire ); |
|
| 78 | + foreach ($this->getSubClients() as $subclient) { |
|
| 79 | + $html .= $subclient->setView($view)->getBody($uid, $tags, $expire); |
|
| 80 | 80 | } |
| 81 | 81 | $view->treeBody = $html; |
| 82 | 82 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | $tplconf = 'client/html/catalog/filter/tree/standard/template-body'; |
| 104 | 104 | $default = 'catalog/filter/tree-body-default.php'; |
| 105 | 105 | |
| 106 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 106 | + return $view->render($view->config($tplconf, $default)); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | |
@@ -115,13 +115,13 @@ discard block |
||
| 115 | 115 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 116 | 116 | * @return string|null String including HTML tags for the header on error |
| 117 | 117 | */ |
| 118 | - public function getHeader( $uid = '', array &$tags = array(), &$expire = null ) |
|
| 118 | + public function getHeader($uid = '', array &$tags = array(), &$expire = null) |
|
| 119 | 119 | { |
| 120 | - $view = $this->setViewParams( $this->getView(), $tags, $expire ); |
|
| 120 | + $view = $this->setViewParams($this->getView(), $tags, $expire); |
|
| 121 | 121 | |
| 122 | 122 | $html = ''; |
| 123 | - foreach( $this->getSubClients() as $subclient ) { |
|
| 124 | - $html .= $subclient->setView( $view )->getHeader( $uid, $tags, $expire ); |
|
| 123 | + foreach ($this->getSubClients() as $subclient) { |
|
| 124 | + $html .= $subclient->setView($view)->getHeader($uid, $tags, $expire); |
|
| 125 | 125 | } |
| 126 | 126 | $view->treeHeader = $html; |
| 127 | 127 | |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $tplconf = 'client/html/catalog/filter/tree/standard/template-header'; |
| 150 | 150 | $default = 'catalog/filter/tree-header-default.php'; |
| 151 | 151 | |
| 152 | - return $view->render( $view->config( $tplconf, $default ) ); |
|
| 152 | + return $view->render($view->config($tplconf, $default)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string|null $name Name of the sub-client (Default if null) |
| 161 | 161 | * @return \Aimeos\Client\Html\Iface Sub-client object |
| 162 | 162 | */ |
| 163 | - public function getSubClient( $type, $name = null ) |
|
| 163 | + public function getSubClient($type, $name = null) |
|
| 164 | 164 | { |
| 165 | 165 | /** client/html/catalog/filter/tree/decorators/excludes |
| 166 | 166 | * Excludes decorators added by the "common" option from the catalog filter tree html client |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * @see client/html/catalog/filter/tree/decorators/global |
| 237 | 237 | */ |
| 238 | 238 | |
| 239 | - return $this->createSubClient( 'catalog/filter/tree/' . $type, $name ); |
|
| 239 | + return $this->createSubClient('catalog/filter/tree/'.$type, $name); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | */ |
| 248 | 248 | protected function getSubClientNames() |
| 249 | 249 | { |
| 250 | - return $this->getContext()->getConfig()->get( $this->subPartPath, $this->subPartNames ); |
|
| 250 | + return $this->getContext()->getConfig()->get($this->subPartPath, $this->subPartNames); |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | |
@@ -259,16 +259,16 @@ discard block |
||
| 259 | 259 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
| 260 | 260 | * @return \Aimeos\MW\View\Iface Modified view object |
| 261 | 261 | */ |
| 262 | - protected function setViewParams( \Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null ) |
|
| 262 | + protected function setViewParams(\Aimeos\MW\View\Iface $view, array &$tags = array(), &$expire = null) |
|
| 263 | 263 | { |
| 264 | - if( !isset( $this->cache ) ) |
|
| 264 | + if (!isset($this->cache)) |
|
| 265 | 265 | { |
| 266 | 266 | $catItems = array(); |
| 267 | 267 | $context = $this->getContext(); |
| 268 | - $controller = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' ); |
|
| 268 | + $controller = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog'); |
|
| 269 | 269 | |
| 270 | - $currentid = (string) $view->param( 'f_catid', '' ); |
|
| 271 | - $currentid = ( $currentid != '' ? $currentid : null ); |
|
| 270 | + $currentid = (string) $view->param('f_catid', ''); |
|
| 271 | + $currentid = ($currentid != '' ? $currentid : null); |
|
| 272 | 272 | |
| 273 | 273 | /** client/html/catalog/filter/tree/startid |
| 274 | 274 | * The ID of the category node that should be the root of the displayed category tree |
@@ -289,8 +289,8 @@ discard block |
||
| 289 | 289 | * @see client/html/catalog/filter/tree/levels-only |
| 290 | 290 | * @see client/html/catalog/filter/tree/domains |
| 291 | 291 | */ |
| 292 | - $startid = $view->config( 'client/html/catalog/filter/tree/startid', '' ); |
|
| 293 | - $startid = ( $startid != '' ? $startid : null ); |
|
| 292 | + $startid = $view->config('client/html/catalog/filter/tree/startid', ''); |
|
| 293 | + $startid = ($startid != '' ? $startid : null); |
|
| 294 | 294 | |
| 295 | 295 | /** client/html/catalog/filter/tree/domains |
| 296 | 296 | * List of domain names whose items should be fetched with the filter categories |
@@ -310,36 +310,36 @@ discard block |
||
| 310 | 310 | * @see client/html/catalog/filter/tree/levels-always |
| 311 | 311 | * @see client/html/catalog/filter/tree/levels-only |
| 312 | 312 | */ |
| 313 | - $ref = $view->config( 'client/html/catalog/filter/tree/domains', array( 'text', 'media' ) ); |
|
| 313 | + $ref = $view->config('client/html/catalog/filter/tree/domains', array('text', 'media')); |
|
| 314 | 314 | |
| 315 | 315 | |
| 316 | - if( $currentid !== null ) { |
|
| 317 | - $catItems = $this->filterCatalogPath( $controller->getCatalogPath( $currentid ), $startid ); |
|
| 316 | + if ($currentid !== null) { |
|
| 317 | + $catItems = $this->filterCatalogPath($controller->getCatalogPath($currentid), $startid); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if( ( $node = reset( $catItems ) ) === false ) |
|
| 320 | + if (($node = reset($catItems)) === false) |
|
| 321 | 321 | { |
| 322 | - $node = $controller->getCatalogTree( $startid, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ); |
|
| 323 | - $catItems = array( $node->getId() => $node ); |
|
| 322 | + $node = $controller->getCatalogTree($startid, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE); |
|
| 323 | + $catItems = array($node->getId() => $node); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | |
| 327 | - $catIds = array_keys( $catItems ); |
|
| 328 | - $search = $this->addSearchConditions( $controller->createCatalogFilter(), $catIds, $node->getId() ); |
|
| 327 | + $catIds = array_keys($catItems); |
|
| 328 | + $search = $this->addSearchConditions($controller->createCatalogFilter(), $catIds, $node->getId()); |
|
| 329 | 329 | $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE; |
| 330 | 330 | |
| 331 | 331 | $view->treeCatalogPath = $catItems; |
| 332 | - $view->treeCatalogTree = $controller->getCatalogTree( $startid, $ref, $level, $search ); |
|
| 333 | - $view->treeCatalogIds = $this->getCatalogIds( $view->treeCatalogTree, $catItems, $currentid ); |
|
| 334 | - $view->treeFilterParams = $this->getClientParams( $view->param(), array( 'f' ) ); |
|
| 332 | + $view->treeCatalogTree = $controller->getCatalogTree($startid, $ref, $level, $search); |
|
| 333 | + $view->treeCatalogIds = $this->getCatalogIds($view->treeCatalogTree, $catItems, $currentid); |
|
| 334 | + $view->treeFilterParams = $this->getClientParams($view->param(), array('f')); |
|
| 335 | 335 | |
| 336 | - $this->addMetaItemCatalog( $view->treeCatalogTree, $this->expire, $this->tags ); |
|
| 336 | + $this->addMetaItemCatalog($view->treeCatalogTree, $this->expire, $this->tags); |
|
| 337 | 337 | |
| 338 | 338 | $this->cache = $view; |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | - $expire = $this->expires( $this->expire, $expire ); |
|
| 342 | - $tags = array_merge( $tags, $this->tags ); |
|
| 341 | + $expire = $this->expires($this->expire, $expire); |
|
| 342 | + $tags = array_merge($tags, $this->tags); |
|
| 343 | 343 | |
| 344 | 344 | return $this->cache; |
| 345 | 345 | } |
@@ -352,12 +352,12 @@ discard block |
||
| 352 | 352 | * @param string|null &$expire Expiration date that will be overwritten if an earlier date is found |
| 353 | 353 | * @param array &$tags List of tags the new tags will be added to |
| 354 | 354 | */ |
| 355 | - protected function addMetaItemCatalog( \Aimeos\MShop\Catalog\Item\Iface $tree, &$expire, array &$tags = array() ) |
|
| 355 | + protected function addMetaItemCatalog(\Aimeos\MShop\Catalog\Item\Iface $tree, &$expire, array &$tags = array()) |
|
| 356 | 356 | { |
| 357 | - $this->addMetaItem( $tree, 'catalog', $expire, $tags ); |
|
| 357 | + $this->addMetaItem($tree, 'catalog', $expire, $tags); |
|
| 358 | 358 | |
| 359 | - foreach( $tree->getChildren() as $child ) { |
|
| 360 | - $this->addMetaItemCatalog( $child, $expire, $tags ); |
|
| 359 | + foreach ($tree->getChildren() as $child) { |
|
| 360 | + $this->addMetaItemCatalog($child, $expire, $tags); |
|
| 361 | 361 | } |
| 362 | 362 | } |
| 363 | 363 | |
@@ -368,12 +368,12 @@ discard block |
||
| 368 | 368 | * @param \Aimeos\MW\Criteria\Iface $search Search object |
| 369 | 369 | * @return \Aimeos\MW\Criteria\Iface Enhanced search object |
| 370 | 370 | */ |
| 371 | - protected function addSearchConditions( \Aimeos\MW\Criteria\Iface $search, array $catIds, $catId ) |
|
| 371 | + protected function addSearchConditions(\Aimeos\MW\Criteria\Iface $search, array $catIds, $catId) |
|
| 372 | 372 | { |
| 373 | 373 | $config = $this->getContext()->getConfig(); |
| 374 | 374 | |
| 375 | - $expr = $search->compare( '==', 'catalog.parentid', $catIds ); |
|
| 376 | - $expr = $search->combine( '||', array( $expr, $search->compare( '==', 'catalog.id', $catId ) ) ); |
|
| 375 | + $expr = $search->compare('==', 'catalog.parentid', $catIds); |
|
| 376 | + $expr = $search->combine('||', array($expr, $search->compare('==', 'catalog.id', $catId))); |
|
| 377 | 377 | |
| 378 | 378 | /** client/html/catalog/filter/tree/levels-always |
| 379 | 379 | * The number of levels in the category tree that should be always displayed |
@@ -399,8 +399,8 @@ discard block |
||
| 399 | 399 | * @see client/html/catalog/filter/tree/levels-only |
| 400 | 400 | * @see client/html/catalog/filter/tree/domains |
| 401 | 401 | */ |
| 402 | - if( ( $levels = $config->get( 'client/html/catalog/filter/tree/levels-always' ) ) != null ) { |
|
| 403 | - $expr = $search->combine( '||', array( $expr, $search->compare( '<=', 'catalog.level', $levels ) ) ); |
|
| 402 | + if (($levels = $config->get('client/html/catalog/filter/tree/levels-always')) != null) { |
|
| 403 | + $expr = $search->combine('||', array($expr, $search->compare('<=', 'catalog.level', $levels))); |
|
| 404 | 404 | } |
| 405 | 405 | |
| 406 | 406 | /** client/html/catalog/filter/tree/levels-only |
@@ -424,11 +424,11 @@ discard block |
||
| 424 | 424 | * @see client/html/catalog/filter/tree/levels-always |
| 425 | 425 | * @see client/html/catalog/filter/tree/domains |
| 426 | 426 | */ |
| 427 | - if( ( $levels = $config->get( 'client/html/catalog/filter/tree/levels-only' ) ) != null ) { |
|
| 428 | - $expr = $search->combine( '&&', array( $expr, $search->compare( '<=', 'catalog.level', $levels ) ) ); |
|
| 427 | + if (($levels = $config->get('client/html/catalog/filter/tree/levels-only')) != null) { |
|
| 428 | + $expr = $search->combine('&&', array($expr, $search->compare('<=', 'catalog.level', $levels))); |
|
| 429 | 429 | } |
| 430 | 430 | |
| 431 | - $search->setConditions( $expr ); |
|
| 431 | + $search->setConditions($expr); |
|
| 432 | 432 | |
| 433 | 433 | return $search; |
| 434 | 434 | } |
@@ -445,22 +445,22 @@ discard block |
||
| 445 | 445 | * @param string $currentId Currently selected category |
| 446 | 446 | * @return array List of category IDs |
| 447 | 447 | */ |
| 448 | - protected function getCatalogIds( \Aimeos\MShop\Catalog\Item\Iface $tree, array $path, $currentId ) |
|
| 448 | + protected function getCatalogIds(\Aimeos\MShop\Catalog\Item\Iface $tree, array $path, $currentId) |
|
| 449 | 449 | { |
| 450 | - if( $tree->getId() == $currentId ) |
|
| 450 | + if ($tree->getId() == $currentId) |
|
| 451 | 451 | { |
| 452 | 452 | $ids = array(); |
| 453 | - foreach( $tree->getChildren() as $item ) { |
|
| 453 | + foreach ($tree->getChildren() as $item) { |
|
| 454 | 454 | $ids[] = $item->getId(); |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | return $ids; |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - foreach( $tree->getChildren() as $child ) |
|
| 460 | + foreach ($tree->getChildren() as $child) |
|
| 461 | 461 | { |
| 462 | - if( isset( $path[$child->getId()] ) ) { |
|
| 463 | - return $this->getCatalogIds( $child, $path, $currentId ); |
|
| 462 | + if (isset($path[$child->getId()])) { |
|
| 463 | + return $this->getCatalogIds($child, $path, $currentId); |
|
| 464 | 464 | } |
| 465 | 465 | } |
| 466 | 466 | |
@@ -475,16 +475,16 @@ discard block |
||
| 475 | 475 | * @param string $startid Catalog ID the subtree starts from |
| 476 | 476 | * @return array Filtered associative list of catalog items |
| 477 | 477 | */ |
| 478 | - protected function filterCatalogPath( array $catItems, $startid ) |
|
| 478 | + protected function filterCatalogPath(array $catItems, $startid) |
|
| 479 | 479 | { |
| 480 | - if( $startid ) |
|
| 480 | + if ($startid) |
|
| 481 | 481 | { |
| 482 | - foreach( $catItems as $key => $item ) |
|
| 482 | + foreach ($catItems as $key => $item) |
|
| 483 | 483 | { |
| 484 | - if( $key == $startid ) { |
|
| 484 | + if ($key == $startid) { |
|
| 485 | 485 | break; |
| 486 | 486 | } |
| 487 | - unset( $catItems[$key] ); |
|
| 487 | + unset($catItems[$key]); |
|
| 488 | 488 | } |
| 489 | 489 | } |
| 490 | 490 | |
@@ -19,14 +19,14 @@ discard block |
||
| 19 | 19 | $paths = \TestHelperHtml::getHtmlTemplatePaths(); |
| 20 | 20 | $this->context = \TestHelperHtml::getContext(); |
| 21 | 21 | |
| 22 | - $this->object = new \Aimeos\Client\Html\Catalog\Filter\Tree\Standard( $this->context, $paths ); |
|
| 23 | - $this->object->setView( \TestHelperHtml::getView() ); |
|
| 22 | + $this->object = new \Aimeos\Client\Html\Catalog\Filter\Tree\Standard($this->context, $paths); |
|
| 23 | + $this->object->setView(\TestHelperHtml::getView()); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
| 27 | 27 | protected function tearDown() |
| 28 | 28 | { |
| 29 | - unset( $this->context, $this->object ); |
|
| 29 | + unset($this->context, $this->object); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | |
@@ -34,82 +34,82 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $tags = array(); |
| 36 | 36 | $expire = null; |
| 37 | - $output = $this->object->getHeader( 1, $tags, $expire ); |
|
| 37 | + $output = $this->object->getHeader(1, $tags, $expire); |
|
| 38 | 38 | |
| 39 | - $this->assertNotNull( $output ); |
|
| 40 | - $this->assertEquals( '2022-01-01 00:00:00', $expire ); |
|
| 41 | - $this->assertEquals( 3, count( $tags ) ); |
|
| 39 | + $this->assertNotNull($output); |
|
| 40 | + $this->assertEquals('2022-01-01 00:00:00', $expire); |
|
| 41 | + $this->assertEquals(3, count($tags)); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | |
| 45 | 45 | public function testGetBody() |
| 46 | 46 | { |
| 47 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperHtml::getContext() ); |
|
| 48 | - $node = $catalogManager->getTree( null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST ); |
|
| 47 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperHtml::getContext()); |
|
| 48 | + $node = $catalogManager->getTree(null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST); |
|
| 49 | 49 | |
| 50 | 50 | $view = $this->object->getView(); |
| 51 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $view, array( 'f_catid' => $node->getChild( 1 )->getId() ) ); |
|
| 52 | - $view->addHelper( 'param', $helper ); |
|
| 51 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($view, array('f_catid' => $node->getChild(1)->getId())); |
|
| 52 | + $view->addHelper('param', $helper); |
|
| 53 | 53 | |
| 54 | 54 | $tags = array(); |
| 55 | 55 | $expire = null; |
| 56 | - $output = $this->object->getBody( 1, $tags, $expire ); |
|
| 56 | + $output = $this->object->getBody(1, $tags, $expire); |
|
| 57 | 57 | |
| 58 | - $this->assertContains( 'Groups', $output ); |
|
| 59 | - $this->assertContains( 'Neu', $output ); |
|
| 60 | - $this->assertContains( 'level-2', $output ); |
|
| 58 | + $this->assertContains('Groups', $output); |
|
| 59 | + $this->assertContains('Neu', $output); |
|
| 60 | + $this->assertContains('level-2', $output); |
|
| 61 | 61 | |
| 62 | - $this->assertEquals( '2022-01-01 00:00:00', $expire ); |
|
| 63 | - $this->assertEquals( 5, count( $tags ) ); |
|
| 62 | + $this->assertEquals('2022-01-01 00:00:00', $expire); |
|
| 63 | + $this->assertEquals(5, count($tags)); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | |
| 67 | 67 | public function testGetBodyLevelsAlways() |
| 68 | 68 | { |
| 69 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperHtml::getContext() ); |
|
| 70 | - $node = $catalogManager->getTree( null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ); |
|
| 69 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperHtml::getContext()); |
|
| 70 | + $node = $catalogManager->getTree(null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE); |
|
| 71 | 71 | |
| 72 | - $this->context->getConfig()->set( 'client/html/catalog/filter/tree/levels-always', 2 ); |
|
| 72 | + $this->context->getConfig()->set('client/html/catalog/filter/tree/levels-always', 2); |
|
| 73 | 73 | |
| 74 | 74 | $view = $this->object->getView(); |
| 75 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $view, array( 'f_catid' => $node->getId() ) ); |
|
| 76 | - $view->addHelper( 'param', $helper ); |
|
| 75 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($view, array('f_catid' => $node->getId())); |
|
| 76 | + $view->addHelper('param', $helper); |
|
| 77 | 77 | |
| 78 | 78 | $tags = array(); |
| 79 | 79 | $expire = null; |
| 80 | - $output = $this->object->getBody( 1, $tags, $expire ); |
|
| 80 | + $output = $this->object->getBody(1, $tags, $expire); |
|
| 81 | 81 | |
| 82 | - $this->assertContains( 'level-2', $output ); |
|
| 83 | - $this->assertEquals( '2022-01-01 00:00:00', $expire ); |
|
| 84 | - $this->assertEquals( 8, count( $tags ) ); |
|
| 82 | + $this->assertContains('level-2', $output); |
|
| 83 | + $this->assertEquals('2022-01-01 00:00:00', $expire); |
|
| 84 | + $this->assertEquals(8, count($tags)); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | |
| 88 | 88 | public function testGetBodyLevelsOnly() |
| 89 | 89 | { |
| 90 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperHtml::getContext() ); |
|
| 91 | - $node = $catalogManager->getTree( null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE ); |
|
| 90 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperHtml::getContext()); |
|
| 91 | + $node = $catalogManager->getTree(null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE); |
|
| 92 | 92 | |
| 93 | - $this->context->getConfig()->set( 'client/html/catalog/filter/tree/levels-only', 1 ); |
|
| 93 | + $this->context->getConfig()->set('client/html/catalog/filter/tree/levels-only', 1); |
|
| 94 | 94 | |
| 95 | 95 | $view = $this->object->getView(); |
| 96 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $view, array( 'f_catid' => $node->getChild( 0 )->getId() ) ); |
|
| 97 | - $view->addHelper( 'param', $helper ); |
|
| 96 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($view, array('f_catid' => $node->getChild(0)->getId())); |
|
| 97 | + $view->addHelper('param', $helper); |
|
| 98 | 98 | |
| 99 | 99 | $tags = array(); |
| 100 | 100 | $expire = null; |
| 101 | - $output = $this->object->getBody( 1, $tags, $expire ); |
|
| 101 | + $output = $this->object->getBody(1, $tags, $expire); |
|
| 102 | 102 | |
| 103 | - $this->assertNotContains( 'level-2', $output ); |
|
| 104 | - $this->assertEquals( '2022-01-01 00:00:00', $expire ); |
|
| 105 | - $this->assertEquals( 3, count( $tags ) ); |
|
| 103 | + $this->assertNotContains('level-2', $output); |
|
| 104 | + $this->assertEquals('2022-01-01 00:00:00', $expire); |
|
| 105 | + $this->assertEquals(3, count($tags)); |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | |
| 109 | 109 | public function testGetSubClient() |
| 110 | 110 | { |
| 111 | - $this->setExpectedException( '\\Aimeos\\Client\\Html\\Exception' ); |
|
| 112 | - $this->object->getSubClient( 'invalid', 'invalid' ); |
|
| 111 | + $this->setExpectedException('\\Aimeos\\Client\\Html\\Exception'); |
|
| 112 | + $this->object->getSubClient('invalid', 'invalid'); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | } |