Subversion Repositories wpShopGermany4

Rev

Rev 5934 | 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)); ?>
5997 hartmut 13
		<?php $artemp = Array();
14
		foreach ($this->arShipping as $key => $val)
15
			$artemp[] = $val['name'];
16
		?>
17
		<?php echo wpsg_drawForm_Select('shipping_id', __('Versandart', 'wpsg'), wpsg_getArray($artemp), $v['shipping_id']); ?>
3256 daniel 18
		<hr />
19
 
20
	<?php } ?>
21
 
22
<?php } else { ?>
23
	<?php echo __('Es sind noch keine Versand- oder Zahlungsbedingungen angelegt.', 'wpsg'); ?>
24
<?php } ?>