Subversion Repositories wpShopGermany4

Rev

Rev 6338 | Go to most recent revision | 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 Gutscheineingabe innerhalb des Warenkorbes
5
	 */
6
 
7
?>
6330 hartmut 8
<br />
9
<div class="basket_sum_row">
7181 thomas 10
	<?php /* TODO: Kunden bereits über das Widget eingeloggt (Kundengruppenrabatt)? */ ?>
11
	<?php if ($this->hasMod('wpsg_mod_discount') && ($this->get_option('wpsg_mod_discount_voucher') == 1)) { ?>
12
 
13
		<?php echo __('Aufgrund einer Rabattaktion ist das Hinzufügen eines Gutscheines nicht möglich', 'wpsg'); ?>
14
 
15
	<?php } else {?>
16
 
17
		<div class="codegs">
18
			<label class="codegsf" for="wpsg_gutschein_input"><?php echo __('Gutscheincode:', 'wpsg'); ?></label>
19
		</div>
20
		<div class="codegsl">
21
			<input id="wpsg_gutschein_input" class="wpsg_gutschein_input <?php echo ((in_array("gutschein", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" name="wpsg[gutschein]" value="" />
22
		</div>
23
		<div class="codegsr">
24
			<input class="wpsg_button wpsg_gutschein_add" type="submit" name="wpsg_gutschein_add" value="<?php echo '&nbsp;'.__('Einlösen', 'wpsg').'&nbsp;'; ?>" />
25
		</div>
26
 
27
	<?php }?>
6330 hartmut 28
</div>