3766 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des FlexiPay Moduls
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
3771 |
daniel |
8 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_integratormode', __('Integrationsmodus', 'wpsg'), array(
|
|
|
9 |
'INTEGRATOR_TEST' => 'INTEGRATOR_TEST',
|
|
|
10 |
'CONNECTOR_TEST' => 'CONNECTOR_TEST',
|
|
|
11 |
'LIVE' => 'LIVE'
|
|
|
12 |
), $this->get_option('wpsg_mod_flexipay_integratormode')); ?>
|
|
|
13 |
|
3766 |
daniel |
14 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_sender', __('Sender ID', 'wpsg'), $this->get_option('wpsg_mod_flexipay_sender'), array('help' => 'wpsg_mod_flexipay_sender')); ?>
|
|
|
15 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_channelid', __('Channel ID', 'wpsg'), $this->get_option('wpsg_mod_flexipay_channelid'), array('help' => 'wpsg_mod_flexipay_channelid')); ?>
|
|
|
16 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_userid', __('UserID', 'wpsg'), $this->get_option('wpsg_mod_flexipay_userid'), array('help' => 'wpsg_mod_flexipay_userid')); ?>
|
|
|
17 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_password', __('Passwort', 'wpsg'), $this->get_option('wpsg_mod_flexipay_password'), array('help' => 'wpsg_mod_flexipay_password')); ?>
|
|
|
18 |
|
|
|
19 |
<br />
|
|
|
20 |
|
|
|
21 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_flexipay_activ', __('Zahlungsart aktiv', 'wpsg'), $this->get_option('wpsg_mod_flexipay_activ')); ?>
|
|
|
22 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_paymenttypes', __('Zahlungsarten', 'wpsg'), array(
|
|
|
23 |
'AMEX' => 'American Express',
|
|
|
24 |
'BARPAY' => 'BarPay',
|
|
|
25 |
'BOLETO' => 'Boleto',
|
|
|
26 |
'CARTEBLEUE' => 'Carte Bleue',
|
|
|
27 |
'CHINAUNIONPAY' => 'China UnionPay',
|
|
|
28 |
'DANKORT' => 'Dankort',
|
|
|
29 |
'DINERS' => 'Diners',
|
|
|
30 |
'DIRECTDEBIT_SEPA' => 'Direct Debit Sepa',
|
|
|
31 |
'DIRECTDEBIT_SEPA_MIX_DE' => 'Direct Debit Germany and Sepa',
|
|
|
32 |
'DIRECTDEBIT_SEPA_MIX_AT' => 'Direct Debit Austria and Sepa',
|
|
|
33 |
'DIRECTDEBIT_DE' => 'Direct Debit Germany',
|
|
|
34 |
'DIRECTDEBIT_AT' => 'Direct Debit Austria',
|
|
|
35 |
'DISCOVER' => 'Discover',
|
|
|
36 |
'GIROPAY' => 'Giropay',
|
|
|
37 |
'IDEAL' => 'iDeal',
|
|
|
38 |
'INVOICE' => 'Invoice',
|
|
|
39 |
'JCB' => 'JCB',
|
|
|
40 |
'MAESTRO' => 'Maestro',
|
|
|
41 |
'MASTER' => 'MasterCard',
|
|
|
42 |
'PASTEANDPAY_V' => 'PasteAndPay',
|
|
|
43 |
'PAYPAL' => 'PayPal',
|
|
|
44 |
'POSTEPAY' => 'PostePay',
|
|
|
45 |
'SOFORTUEBERWEISUNG' => 'sofort Überweisung',
|
|
|
46 |
'UKASH' => 'Ukash',
|
|
|
47 |
'VISA' => 'Visa',
|
|
|
48 |
'VISADEBIT' => 'Visa Debit',
|
|
|
49 |
'VISAELECTRON' => 'Visa Electron',
|
|
|
50 |
'VPAY' => 'V PAY',
|
|
|
51 |
'VSTATION_V' => 'Voucher Station',
|
|
|
52 |
'AXESS' => 'AXESS',
|
|
|
53 |
'BONUS' => 'Bonus',
|
|
|
54 |
'MAXIMUM' => 'Maximum',
|
|
|
55 |
'WORLD' => 'World',
|
|
|
56 |
'CARDFINANS' => 'CardFinans',
|
|
|
57 |
'ADVANTAGE' => 'Advantage',
|
|
|
58 |
'QOOQO' => 'Qooqo',
|
|
|
59 |
'KLARNA_INVOICE' => 'Klarna Invoice',
|
|
|
60 |
'KLARNA_INSTALLMENTS' => 'Klarna Installments',
|
|
|
61 |
'ASYACARD' => 'AsyaCard'
|
|
|
62 |
), @explode(' ', $this->get_option('wpsg_mod_flexipay_paymenttypes')), array('multiple' => '8', 'help' => 'wpsg_mod_flexipay_paymenttypes', 'hint' => __('STRG für Mehrfachauswahl', 'wpsg'))); ?>
|
|
|
63 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_name', __('Bezeichnung der Zahlungsart', 'wpsg'), $this->get_option('wpsg_mod_flexipay_name'), array('help' => 'wpsg_mod_flexipay_name')); ?>
|
|
|
64 |
<?php echo wpsg_drawForm_Textarea('wpsg_mod_flexipay_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_flexipay_hint'), array('help' => 'wpsg_mod_flexipay_hint')); ?>
|
3915 |
daniel |
65 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_logo', __('Alternative Logo URL', 'wpsg'), $this->get_option('wpsg_mod_flexipay_logo'), array('help' => 'wpsg_mod_flexipay_logo')); ?>
|
3766 |
daniel |
66 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_language', __('Sprache', 'wpsg'), array(
|
|
|
67 |
'auto' => __('Automatisch', 'wpsg'),
|
|
|
68 |
'de' => __('Deutsch', 'wpsg'),
|
|
|
69 |
'en' => __('Englisch', 'wpsg')
|
|
|
70 |
), $this->get_option('wpsg_mod_flexipay_language'), array('help' => 'wpsg_mod_flexipay_language')); ?>
|
|
|
71 |
<?php echo wpsg_drawForm_Input('wpsg_mod_flexipay_gebuehr', __('Gebühr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_flexipay_gebuehr'), true), array('unit' => $this->get_option('wpsg_currency').' / %', 'help' => 'wpsg_flexipay_gebuehr')); ?>
|
6006 |
hartmut |
72 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_mwst', __('Mehrwertsteuersatz', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_flexipay_mwst'), array('help' => 'wpsg_shippay_mwst')); ?>
|
3766 |
daniel |
73 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_flexipay_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_flexipay_mwstland'), array('help' => 'wpsg_shippay_mwstland')); ?>
|
|
|
74 |
<br />
|
|
|
75 |
|
|
|
76 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_successPage', __('Seite nach erfolgreicher Zahlung', 'wpsg'), $this->view['wpsg_mod_flexipay']['arPages'], $this->get_option('wpsg_mod_flexipay_successPage'), array('help' => 'wpsg_mod_flexipay_successPage')); ?>
|
|
|
77 |
<?php echo wpsg_drawForm_Select('wpsg_mod_flexipay_errorPage', __('Seite nach fehlgeschlagener Zahlung', 'wpsg'), $this->view['wpsg_mod_flexipay']['arPages'], $this->get_option('wpsg_mod_flexipay_errorPage'), array('help' => 'wpsg_mod_flexipay_errorPage')); ?>
|