Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
3256 daniel 1
<?php
2
 
3
	/**
4
	 * Zeichnet die Liste der bereits definierten Versand- und Zahlungsbedingunen
5
	 */
6
 
7
?>
8
<?php if (wpsg_isSizedArray($this->view['data'])) { ?>
9
 
10
	<?php foreach ($this->view['data'] as $k => $v) { ?>
11
 
12
		<?php echo wpsg_drawForm_Input('', __('Id', 'wpsg'), $v['id'], array('text' => true)); ?>
13
		<?php echo wpsg_drawForm_Select('shipping_id', __('Versandart', 'wpsg'), $this->view['arShipping'], $v['shipping_id']); ?>
14
		<hr />
15
 
16
	<?php } ?>
17
 
18
<?php } else { ?>
19
	<?php echo __('Es sind noch keine Versand- oder Zahlungsbedingungen angelegt.', 'wpsg'); ?>
20
<?php } ?>