@@ -35,7 +35,7 @@ |
||
35 | 35 | $params = array( 'd_name' => $productItem->getName( 'url' ), 'd_prodid' => $id ); |
36 | 36 | if( $position !== null ) { $params['d_pos'] = $position++; } |
37 | 37 | |
38 | - $url = $this->url( ($productItem->getTarget() ?: $detailTarget ), $detailController, $detailAction, $params, [], $detailConfig ); |
|
38 | + $url = $this->url( ( $productItem->getTarget() ?: $detailTarget ), $detailController, $detailAction, $params, [], $detailConfig ); |
|
39 | 39 | ?> |
40 | 40 | |
41 | 41 | --><li class="product <?= $enc->attr( $css ); ?>" |
@@ -69,7 +69,7 @@ |
||
69 | 69 | <h2><?= $enc->html( $this->translate( 'client', 'Billing address' ), $enc::TRUST ); ?></h2> |
70 | 70 | |
71 | 71 | |
72 | - <?php if( isset( $this->addressPaymentItem ) ) : ?> |
|
72 | + <?php if( isset( $this->addressPaymentItem ) ) : ?> |
|
73 | 73 | <div class="item-address"> |
74 | 74 | <div class="header"> |
75 | 75 |
@@ -204,7 +204,7 @@ |
||
204 | 204 | { |
205 | 205 | if( is_array( $item->getDefault() ) ) |
206 | 206 | { |
207 | - foreach( (array) $item->getDefault() as $key2 => $value ){ |
|
207 | + foreach( (array) $item->getDefault() as $key2 => $value ) { |
|
208 | 208 | $urlParams[] = $namefcn( $this, array( $item->getInternalCode(), $key2 ) ) . '=' . urlencode( $value ); |
209 | 209 | } |
210 | 210 | } |
@@ -83,7 +83,7 @@ |
||
83 | 83 | <?php endforeach; ?> |
84 | 84 | <?php foreach( $product->getAttributeItems( 'hidden' ) as $attribute ) : ?> |
85 | 85 | <?php if( $unhide && $attribute->getCode() === 'download' ) : ?> |
86 | -- <?php echo strip_tags( $attribute->getName()); ?>: <?= $this->url( $dlTarget, $dlController, $dlAction, array( 'dl_id' => $attribute->getId() ), [], $dlConfig ); ?> |
|
86 | +- <?php echo strip_tags( $attribute->getName() ); ?>: <?= $this->url( $dlTarget, $dlController, $dlAction, array( 'dl_id' => $attribute->getId() ), [], $dlConfig ); ?> |
|
87 | 87 | |
88 | 88 | <?php endif; ?> |
89 | 89 | <?php endforeach; ?> |
@@ -20,6 +20,6 @@ |
||
20 | 20 | <?= wordwrap( strip_tags( $this->translate( 'client', 'If you have any questions, please reply to this e-mail' ) ) ); ?> |
21 | 21 | |
22 | 22 | |
23 | -<?= wordwrap( strip_tags( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ) ) ); ?> |
|
23 | +<?= wordwrap( strip_tags( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ) ) ); ?> |
|
24 | 24 | <?php $this->block()->stop(); ?> |
25 | 25 | <?= $this->block()->get( 'email/delivery/text' ); ?> |
@@ -61,7 +61,7 @@ |
||
61 | 61 | </p> |
62 | 62 | |
63 | 63 | <p class="email-common-legal content-block"> |
64 | - <?= nl2br( $enc->html( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ), $enc::TRUST ) ); ?> |
|
64 | + <?= nl2br( $enc->html( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ), $enc::TRUST ) ); ?> |
|
65 | 65 | </p> |
66 | 66 | |
67 | 67 | </div> |
@@ -20,6 +20,6 @@ |
||
20 | 20 | <?= wordwrap( strip_tags( $this->translate( 'client', 'If you have any questions, please reply to this e-mail' ) ) ); ?> |
21 | 21 | |
22 | 22 | |
23 | -<?= wordwrap( strip_tags( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ) ) ); ?> |
|
23 | +<?= wordwrap( strip_tags( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ) ) ); ?> |
|
24 | 24 | <?php $this->block()->stop(); ?> |
25 | 25 | <?= $this->block()->get( 'email/payment/text' ); ?> |
@@ -61,7 +61,7 @@ |
||
61 | 61 | </p> |
62 | 62 | |
63 | 63 | <p class="email-common-legal content-block"> |
64 | - <?= nl2br( $enc->html( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ), $enc::TRUST ) ); ?> |
|
64 | + <?= nl2br( $enc->html( $this->translate( 'client', 'All orders are subject to our terms and conditions.' ), $enc::TRUST ) ); ?> |
|
65 | 65 | </p> |
66 | 66 | |
67 | 67 | </div> |
@@ -35,7 +35,7 @@ |
||
35 | 35 | ->getMock(); |
36 | 36 | |
37 | 37 | $this->object = new \Aimeos\Client\Html\Common\Decorator\Example( $this->client, $context, [] ); |
38 | - $this->object->setView( \TestHelperHtml::getView()); |
|
38 | + $this->object->setView( \TestHelperHtml::getView() ); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 |