Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5261 Rev 6332
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
	/**
3
	/**
4
	 * Template für die Anzeige der Abo-Verlängerung im Warenkorb
4
	 * Template für die Anzeige der Abo-Verlängerung im Overview
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
<tr class="wpsg_<?php echo (($this->view['i'] == 0)?'odd':'even'); ?>">
-
 
9
	<td><?php echo __('Abo Verlängerung', 'wpsg'); ?>:</td>
-
 
10
	<td colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'4':'3'); ?>">
-
 
11
		<?php echo wpsg_translate(__('Verlängerung zu Bestellung #1# (#2# Tage)', 'wpsg'), $this->view['wpsg_mod_abo']['order']['onr'], $this->view['wpsg_mod_abo']['wpsg_mod_abo_durration_menge']); ?>
-
 
12
	</td>
-
 
13
</tr>
-
 
14
8
<div class="product_info">
-
 
9
	<div 
-
 
10
	<?php if ($this->view['$bPicture'] == true) { ?>class="titlep"><?php } else { ?>class="title"><?php } ?>
-
 
11
		<?php echo __("Abo Verlängerung", "wpsg"); ?>
-
 
12
	</div>
-
 
13
	<div class="valuel">
-
 
14
		<?php echo wpsg_translate(__('Verlängerung zu Bestellung #1# (#2# Tage)', 'wpsg'), $this->view['wpsg_mod_abo']['order']['onr'], $this->view['wpsg_mod_abo']['wpsg_mod_abo_durration_menge']); ?>	
-
 
15
	</div>
-
 
16
	<div class="dummyr">
-
 
17
		<?php echo __('&nbsp;'); ?>
-
 
18
	</div>
-
 
19
	
-
 
20
</div>
-
 
21
15
22