5866 |
hartmut |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des Moduls "Kreditkarte"
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
<?php echo wpsg_drawForm_Input('wpsg_mod_creditcard_bezeichnung', __('Bezeichnung', 'wpsg'), $this->get_option('wpsg_mod_creditcard_bezeichnung'), array('help' => 'wpsg_shippay_name')); ?>
|
|
|
9 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_creditcard_aktiv', __('Aktiv', 'wpsg'), $this->get_option('wpsg_mod_creditcard_aktiv'), array('help' => 'wpsg_shippay_activ')); ?>
|
|
|
10 |
<?php echo wpsg_drawForm_Textarea('wpsg_mod_creditcard_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_creditcard_hint'), array('help' => 'wpsg_shippay_hint')); ?>
|
|
|
11 |
|
|
|
12 |
<br />
|
|
|
13 |
<?php echo wpsg_drawForm_Input('wpsg_mod_creditcard_gebuehr', __('Gebühr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_creditcard_gebuehr'), true), array('unit' => $this->get_option('wpsg_currency').' / %', 'help' => 'wpsg_shippay_gebuehr')); ?>
|
|
|
14 |
<?php echo wpsg_drawForm_Select('wpsg_mod_creditcard_mwst', __('Mehrwertsteuersatz', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_creditcard_mwst')); ?>
|
|
|
15 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_creditcard_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_creditcard_mwstland'), array('help' => 'wpsg_shippay_mwstland')); ?>
|
|
|
16 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_creditcard_iban', __('IBAN/BIC statt Kontonummer/BLZ verwenden', 'wpsg'), $this->get_option('wpsg_mod_creditcard_iban'), array('help' => 'wpsg_mod_creditcard_iban')); ?>
|
|
|
17 |
<?php echo wpsg_drawForm_Input('wpsg_mod_creditcard_schluessel', __('Schluessel', 'wpsg'), $this->get_option('wpsg_mod_creditcard_schluessel'), array('help' => 'wpsg_shippay_name')); ?>
|