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