Subversion Repositories wpShopGermany4

Rev

Rev 6332 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1390 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Integration der Warenkorbteaserprodukte innerhalb des Warenkorbs
5
	 */
6
 
7
?>
6330 hartmut 8
<div class="wpsg_mod_basketteaser_row wpsg_mod_basketteaser_row_<?php echo $this->view['data']['id']; ?>">
9
    <div class="valuel">
1390 daniel 10
		<?php if ($this->getProduktLink($this->view['data'])) { ?>
11
		<a href="<?php echo $this->getProduktLink($this->view['data']); ?>"><?php echo wpsg_hspc((($this->view['data']['detailname'] != '')?$this->view['data']['detailname']:$this->view['data']['name'])); ?></a>
12
		<?php } else { ?>
13
		<?php echo wpsg_hspc((($this->view['data']['detailname'] != '')?$this->view['data']['detailname']:$this->view['data']['name'])); ?>
14
		<?php } ?>
6330 hartmut 15
    </div>
16
    <div class="valuel">
17
		<?php echo wpsg_ff($this->view['data']['preis'], $this->get_option('wpsg_currency')); ?>
18
    </div>
19
    <div class="valuel">
20
		<?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') { ?>
21
			<?php echo wpsg_ff($this->view['data']['mwst_value'], '%'); ?>
22
		<?php } ?>
23
    </div>
24
    <div class="valuer">
6332 hartmut 25
		<input name="wpsg_mod_basketteaser_row[<?php echo $this->view['data']['id']; ?>]" type="text" size="3" value="0" />
6330 hartmut 26
    </div>
27
    <div class="valuer">
1390 daniel 28
		<a href="#" onclick="return wpsg_mod_basketteaser_add(<?php echo $this->view['data']['id']; ?>);"><?php echo __('Hinzufügen', 'wpsg'); ?></a>
6330 hartmut 29
    </div>
6332 hartmut 30
 
6330 hartmut 31
</div>
6338 hartmut 32
<br />
33
<div class="wpsg_spacer"></div>