Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
1508 daniel 1
<?php
2
 
3
	/**
4
	 * Das Template wird in der Bestellansicht eingebunden und zeigt die Kontodaten des Kunden an, die er während der Bestellung angegeben hat
5
	 */
6
 
7
?>
8
<br />
9
<?php echo wpsg_drawForm_Input('', __('Name der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['name'], array('text' => true, 'clear_after' => true)); ?>
3429 daniel 10
 
11
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
12
<?php echo wpsg_drawForm_Input('', __('BIC der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['bic'], array('text' => true, 'clear_after' => true)); ?>
13
<?php } else { ?>
1508 daniel 14
<?php echo wpsg_drawForm_Input('', __('BLZ der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['blz'], array('text' => true, 'clear_after' => true)); ?>
3429 daniel 15
<?php } ?>
16
 
1508 daniel 17
<?php echo wpsg_drawForm_Input('', __('Inhaber', 'wpsg'), $this->view['wpsg_mod_autodebit']['inhaber'], array('text' => true, 'clear_after' => true)); ?>
3429 daniel 18
 
19
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
20
<?php echo wpsg_drawForm_Input('', __('IBAN Nr.', 'wpsg'), $this->view['wpsg_mod_autodebit']['iban'], array('text' => true, 'clear_after' => true)); ?>
21
<?php } else { ?>
3344 daniel 22
<?php echo wpsg_drawForm_Input('', __('Kontonummer', 'wpsg'), $this->view['wpsg_mod_autodebit']['knr'], array('text' => true, 'clear_after' => true)); ?>
3429 daniel 23
<?php } ?>