Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3350 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Einstellungen des SecurePay Moduls
5
	 */
6
 
7
?>
3712 daniel 8
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_securepay_sandbox', __('Sandbox Modus', 'wpsg'), $this->get_option('wpsg_mod_securepay_sandbox'), array('help' => 'wpsg_mod_securepay_sandbox')); ?>
3766 daniel 9
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_sender', __('Sender ID', 'wpsg'), $this->get_option('wpsg_mod_securepay_sender'), array('help' => 'wpsg_mod_securepay_sender')); ?>
3711 daniel 10
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_channelid', __('Channel ID', 'wpsg'), $this->get_option('wpsg_mod_securepay_channelid'), array('help' => 'wpsg_mod_securepay_channelid')); ?>
3350 daniel 11
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_userid', __('UserID', 'wpsg'), $this->get_option('wpsg_mod_securepay_userid'), array('help' => 'wpsg_mod_securepay_userid')); ?>
12
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_password', __('Passwort', 'wpsg'), $this->get_option('wpsg_mod_securepay_password'), array('help' => 'wpsg_mod_securepay_password')); ?>
3711 daniel 13
 
3712 daniel 14
<br />
3711 daniel 15
 
3712 daniel 16
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_securepay_activ', __('Zahlungsart aktiv', 'wpsg'), $this->get_option('wpsg_mod_securepay_activ')); ?>
3774 daniel 17
<?php /* echo wpsg_drawForm_Select('wpsg_mod_securepay_paymenttypes', __('Zahlungsarten', 'wpsg'), array(
18
// 	'AMEX' => 'American Express',
19
// 	'BARPAY' => 'BarPay',
20
// 	'BOLETO' => 'Boleto',
21
// 	'CARTEBLEUE' => 'Carte Bleue',
22
// 	'CHINAUNIONPAY' => 'China UnionPay',
23
// 	'DANKORT' => 'Dankort',
24
// 	'DINERS' => 'Diners',
3717 daniel 25
	'DIRECTDEBIT_SEPA' => 'Direct Debit Sepa',
3774 daniel 26
// 	'DIRECTDEBIT_SEPA_MIX_DE' => 'Direct Debit Germany and Sepa',
27
// 	'DIRECTDEBIT_SEPA_MIX_AT' => 'Direct Debit Austria and Sepa',
28
// 	'DIRECTDEBIT_DE' => 'Direct Debit Germany',
29
// 	'DIRECTDEBIT_AT' => 'Direct Debit Austria',
30
// 	'DISCOVER' => 'Discover',
31
// 	'GIROPAY' => 'Giropay',
32
// 	'IDEAL' => 'iDeal',
33
// 	'INVOICE' => 'Invoice',
34
// 	'JCB' => 'JCB',
35
// 	'MAESTRO' => 'Maestro',
3717 daniel 36
	'MASTER' => 'MasterCard',
3774 daniel 37
// 	'PASTEANDPAY_V' => 'PasteAndPay',
38
// 	'PAYPAL' => 'PayPal',
39
// 	'POSTEPAY' => 'PostePay',
40
// 	'SOFORTUEBERWEISUNG' => 'sofort Überweisung',
41
// 	'UKASH' => 'Ukash',
3717 daniel 42
	'VISA' => 'Visa',
3774 daniel 43
// 	'VISADEBIT' => 'Visa Debit',
44
// 	'VISAELECTRON' => 'Visa Electron',
45
// 	'VPAY' => 'V PAY',
46
// 	'VSTATION_V' => 'Voucher Station',
47
// 	'AXESS' => 'AXESS',
48
// 	'BONUS' => 'Bonus',
49
// 	'MAXIMUM' => 'Maximum',
50
// 	'WORLD' => 'World',
51
// 	'CARDFINANS' => 'CardFinans',
52
// 	'ADVANTAGE' => 'Advantage',
53
// 	'QOOQO' => 'Qooqo',
54
// 	'KLARNA_INVOICE' => 'Klarna Invoice',
55
// 	'KLARNA_INSTALLMENTS' => 'Klarna Installments',
56
// 	'ASYACARD' => 'AsyaCard'
57
), @explode(' ', $this->get_option('wpsg_mod_securepay_paymenttypes')), array('multiple' => '3', 'help' => 'wpsg_mod_securepay_paymenttypes', 'hint' => __('STRG für Mehrfachauswahl', 'wpsg'))); */ ?>
58
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_paymenttypes', __('Zahlungsarten', 'wpsg'), $this->get_option('wpsg_mod_securepay_paymenttypes'), array('help' => 'wpsg_mod_securepay_paymenttypes')); ?>
3712 daniel 59
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_name', __('Bezeichnung der Zahlungsart', 'wpsg'), $this->get_option('wpsg_mod_securepay_name'), array('help' => 'wpsg_mod_securepay_name')); ?>
60
<?php echo wpsg_drawForm_Textarea('wpsg_mod_securepay_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_securepay_hint'), array('help' => 'wpsg_mod_securepay_hint')); ?>
3915 daniel 61
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_logo', __('Alternative Logo URL', 'wpsg'), $this->get_option('wpsg_mod_securepay_logo'), array('help' => 'wpsg_mod_securepay_logo')); ?>
3716 daniel 62
<?php echo wpsg_drawForm_Select('wpsg_mod_securepay_language', __('Sprache', 'wpsg'), array(
3717 daniel 63
	'auto' => __('Automatisch', 'wpsg'),
64
	'de' => __('Deutsch', 'wpsg'),
65
	'en' => __('Englisch', 'wpsg')
66
), $this->get_option('wpsg_mod_securepay_language'), array('help' => 'wpsg_mod_securepay_language')); ?>
3350 daniel 67
<?php echo wpsg_drawForm_Input('wpsg_mod_securepay_gebuehr', __('Gebühr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_securepay_gebuehr'), true), array('unit' => $this->get_option('wpsg_currency').' / %', 'help' => 'wpsg_shippay_gebuehr')); ?>
4057 daniel 68
<?php echo wpsg_drawForm_Select('wpsg_mod_securepay_mwst', __('Mehrwertsteuersatz', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_securepay_mwst')); ?>
3350 daniel 69
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_securepay_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_securepay_mwstland'), array('help' => 'wpsg_shippay_mwstland')); ?>
3712 daniel 70
<br />
71
 
3350 daniel 72
<?php echo wpsg_drawForm_Select('wpsg_mod_securepay_successPage', __('Seite nach erfolgreicher Zahlung', 'wpsg'), $this->view['wpsg_mod_securepay']['arPages'], $this->get_option('wpsg_mod_securepay_successPage'), array('help' => 'wpsg_mod_securepay_successPage')); ?>
3387 daniel 73
<?php echo wpsg_drawForm_Select('wpsg_mod_securepay_errorPage', __('Seite nach fehlgeschlagener Zahlung', 'wpsg'), $this->view['wpsg_mod_securepay']['arPages'], $this->get_option('wpsg_mod_securepay_errorPage'), array('help' => 'wpsg_mod_securepay_errorPage')); ?>
3719 daniel 74
 
75
<br /><div class="wpsg_hinweis"><?php echo __('Die verfügbaren Zahlungsarten müssen mit <a href="http://www.iw-systeme.de">IW Systeme</a> vereinbart werden.', 'wpsg'); ?></div>