Subversion Repositories wpShopGermany4

Rev

Rev 5261 | 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 />
6195 daniel 9
<?php echo wpsg_drawForm_Text(__('Name der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['name']); ?>
3429 daniel 10
 
11
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
6195 daniel 12
<?php echo wpsg_drawForm_Text(__('BIC der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['bic']); ?>
3429 daniel 13
<?php } else { ?>
6195 daniel 14
<?php echo wpsg_drawForm_Text(__('BLZ der Bank', 'wpsg'), $this->view['wpsg_mod_autodebit']['blz']); ?>
3429 daniel 15
<?php } ?>
16
 
6195 daniel 17
<?php echo wpsg_drawForm_Text(__('Inhaber', 'wpsg'), $this->view['wpsg_mod_autodebit']['inhaber']); ?>
3429 daniel 18
 
19
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
6195 daniel 20
<?php echo wpsg_drawForm_Text(__('IBAN Nr.', 'wpsg'), $this->view['wpsg_mod_autodebit']['iban']); ?>
3429 daniel 21
<?php } else { ?>
6195 daniel 22
<?php echo wpsg_drawForm_Text(__('Kontonummer', 'wpsg'), $this->view['wpsg_mod_autodebit']['knr']); ?>
3429 daniel 23
<?php } ?>