Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
6165 hartmut 1
 <?php
2
 
3
	/**
4
	 * Render ein Variantenprodukt im Warenkorb (basket.phtml)
5
	 */
7359 daniel 6
 
6165 hartmut 7
?>
7359 daniel 8
 
6330 hartmut 9
<div class="product_info">
7359 daniel 10
	<div class="title">
6857 hartmut 11
		<span class="fa  fa-share-alt"></span>
6726 thomas 12
		<?php echo __("Variante", "wpsg"); ?>:
7359 daniel 13
 
14
 
15
 
6165 hartmut 16
		<?php if (get_option('wpsg_vp_detailview') == 1) { ?>
17
		<?php foreach ($this->view['variante'] as $vari => $value) { ?>
6857 hartmut 18
 
6165 hartmut 19
		<?php if (is_numeric($vari)) { ?>
6857 hartmut 20
		<?php echo $value['name'] ?>:
21
		<strong>
22
		<?php echo $value['value'] ?>; <?php echo __('Art. Nr.', 'wpsg').': '.$value['artnr'] ?>;
6362 hartmut 23
		<?php if ($this->callMod('wpsg_mod_productvariants', 'showVariPrice', array($value['preis']))) { ?>
24
			(<?php echo wpsg_ff($value['preis'], $this->get_option('wpsg_currency')); ?>)
25
		<?php } ?>
6165 hartmut 26
		<br />
27
		<?php } ?>
28
		<?php } ?>
29
		<?php } else { ?>
30
		<?php echo $this->view['variante']['key']; ?>
31
		<?php } ?>
6857 hartmut 32
		</strong>
7359 daniel 33
	</div>
6330 hartmut 34
</div>