Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 5598 | 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>
4372 daniel 10
	<td colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'2':'1'); ?>" class="wpsg_cell_deliverytime_value">
5578 thomas 11
		<?php if (($this->view['data']['wpsg_mod_deliverytime_deliverytime']) >= '1') { /* Lieferzeit > 0 */ ?>
12
				<?php echo $this->view['wpsg_mod_deliverytime']['deliverytime']; ?>
13
		<?php } else {?>
14
			<?php echo wpsg_translate(__('sofort lieferbar','wpsg')); ?>
15
	<?php } ?>
3525 daniel 16
	</td>
5578 thomas 17
</tr>