Line 3... |
Line 3... |
3 |
/**
|
3 |
/**
|
4 |
* Template für die Integration der Lieferzeit in den Warenkorb
|
4 |
* Template für die Integration der Lieferzeit in den Warenkorb
|
5 |
*/
|
5 |
*/
|
6 |
|
6 |
|
7 |
?>
|
7 |
?>
|
- |
|
8 |
<div class="product_info">
|
- |
|
9 |
<div
|
8 |
<tr class="wpsg_<?php echo (($this->view['i'] % 2 == 0)?'odd':'even'); ?>">
|
10 |
<?php if ($this->view['$bPicture'] == true) { ?>class="titlep"><?php } else { ?>class="title"><?php } ?>
|
9 |
<td colspan="1"><?php echo __('Lieferzeit', 'wpsg'); ?>:</td>
|
11 |
<?php echo __("Lieferzeit", "wpsg"); ?>
|
- |
|
12 |
</div>
|
10 |
<td colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'3':'2'); ?>" class="wpsg_cell_deliverytime_value" colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'4':'3'); ?>">
|
13 |
<div class="valuel">
|
11 |
<?php if (wpsg_isSizedInt($this->view['data']['wpsg_mod_deliverytime_deliverytime'])) { /* Lieferzeit > 0 im Produkte */ ?>
|
14 |
<?php if (wpsg_isSizedInt($this->view['data']['wpsg_mod_deliverytime_deliverytime'])) { /* Lieferzeit > 0 im Produkte */ ?>
|
12 |
<?php echo $this->view['wpsg_mod_deliverytime']['deliverytime'] ?>
|
15 |
<?php echo $this->view['wpsg_mod_deliverytime']['deliverytime'] ?>
|
13 |
<?php } else if (wpsg_isSizedInt($this->get_option('wpsg_mod_deliverytime_mode_days_default')) && $this->view['data']['wpsg_mod_deliverytime_deliverytime'] != '0') { /* Lieferzeit > 0 Global */ ?>
|
16 |
<?php } else if (wpsg_isSizedInt($this->get_option('wpsg_mod_deliverytime_mode_days_default')) && $this->view['data']['wpsg_mod_deliverytime_deliverytime'] != '0') { /* Lieferzeit > 0 Global */ ?>
|
14 |
<?php echo wpsg_translate(__('#1# Tag(e)', 'wpsg'), $this->get_option('wpsg_mod_deliverytime_mode_days_default')); ?>
|
17 |
<?php echo wpsg_translate(__('#1# Tag(e)', 'wpsg'), $this->get_option('wpsg_mod_deliverytime_mode_days_default')); ?>
|
15 |
<?php } else { /* Sonst sofort lieferbar */ ?>
|
18 |
<?php } else { /* Sonst sofort lieferbar */ ?>
|
16 |
<?php echo wpsg_translate(__('sofort lieferbar (0 Tage)', 'wpsg')); ?>
|
19 |
<?php echo wpsg_translate(__('sofort lieferbar (0 Tage)', 'wpsg')); ?>
|
17 |
<?php } ?>
|
20 |
<?php } ?>
|
18 |
</td>
|
21 |
</div>
|
- |
|
22 |
<div class="dummyr">
|
- |
|
23 |
<?php echo __(' '); ?>
|
19 |
</tr>
|
24 |
</div>
|
20 |
|
25 |
|
- |
|
26 |
</div>
|
21 |
<?php /* Hinweistext für Verzögerung in der Lieferzeit */ ?>
|
27 |
<?php /* Hinweistext für Verzögerung in der Lieferzeit */ ?>
|
22 |
<?php if ($this->get_option('wpsg_mod_deliverytime_delay') == '1') { ?>
|
28 |
<?php if ($this->get_option('wpsg_mod_deliverytime_delay') == '1') { ?>
|
23 |
<tr class="wpsg_<?php echo (($this->view['i'] % 2 == 0)?'odd':'even'); ?>">
|
- |
|
24 |
<td colspan="4">
|
29 |
<div class="product_info">
|
25 |
<div class="wpsg_mod_deliverytime_delay">
|
30 |
<div class="fulll">
|
26 |
<?php echo wpsg_translate(__('Aufgrund von #1# kann es zu Verzögerungen von #2# Tage in der Zustellung kommen.', 'wpsg'), $this->get_option('wpsg_mod_deliverytime_delayText'), $this->get_option('wpsg_mod_deliverytime_delayTime')); ?>
|
31 |
<?php echo wpsg_translate(__('Aufgrund von #1# kann es zu Verzögerungen von #2# Tage in der Zustellung kommen.', 'wpsg'), $this->get_option('wpsg_mod_deliverytime_delayText'), $this->get_option('wpsg_mod_deliverytime_delayTime')); ?>
|
- |
|
32 |
|
27 |
</div>
|
33 |
</div>
|
28 |
</td>
|
- |
|
29 |
</tr>
|
34 |
</div>
|
30 |
<?php } ?>
|
35 |
<?php } ?>
|
31 |
|
36 |
|