Subversion Repositories wpShopGermany4

Rev

Rev 5666 | Rev 5671 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3525 daniel 1
<?php
2
 
3
	/**
5578 thomas 4
	 * Template für die Integration der Lieferzeit in die Bestellübersichtsseite
3525 daniel 5
	 */
6
 
7
?>
8
<tr class="wpsg_<?php echo (($this->view['i'] % 2 == 0)?'odd':'even'); ?>">
9
	<td><?php echo __('Lieferzeit', 'wpsg'); ?>:</td>
5669 thomas 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'); ?>">
11
		<?php if ($this->view['data']['wpsg_mod_deliverytime_deliverytime'] >= '1') { /* Lieferzeit > 0 im Produkte */ ?>
12
 			<?php echo $this->view['wpsg_mod_deliverytime']['deliverytime']; ?>
13
		<?php } else if ($this->get_option('wpsg_mod_deliverytime_mode_days_default') >= '1') { /* Lieferzeit > 0 Global */ ?>
14
		<?php } else { /*Sonst sofort lieferbar*/ ?>
15
 			<?php echo wpsg_translate(__('sofort lieferbar', 'wpsg')); ?>
16
		<?php } ?>
17
	</td>
5598 thomas 18
</tr>
19
 
20
<?php /* Hinweistext für Verzögerung in der Lieferzeit */ ?>
21
<?php if ($this->get_option('wpsg_mod_deliverytime_delay') == '1') { ?>
22
	<tr class="wpsg_<?php echo (($this->view['i'] % 2 == 0)?'odd':'even'); ?>">
5627 thomas 23
		<td colspan="3">
5598 thomas 24
			<div class="wpsg_mod_deliverytime_delay">
25
				<?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')); ?>
26
			</div>
27
		</td>
28
	</tr>
29
<?php } ?>