5517 |
thomas |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des Moduls "SOFORT Ident"
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
|
|
|
9 |
<?php echo wpsg_drawForm_Input('wpsg_mod_si_user_id', __('Kundennummer bei SOFORT Ident', 'wspg'), $this->get_option('wpsg_mod_si_user_id'), array('help' => 'wpsg_mod_si_user_id')); ?>
|
|
|
10 |
<?php echo wpsg_drawForm_Input('wpsg_mod_si_project_id', __('Projektnummer bei SOFORT Ident', 'wspg'), $this->get_option('wpsg_mod_si_project_id'), array('help' => 'wpsg_mod_si_project_id')); ?>
|
|
|
11 |
|
|
|
12 |
<br />
|
|
|
13 |
|
|
|
14 |
<?php echo wpsg_drawForm_Input('wpsg_mod_si_project_pwd', __('Projektpasswort', 'wpsg'), $this->get_option('wpsg_mod_si_project_pwd'), array('help' => 'wpsg_mod_si_project_pwd')); ?>
|
|
|
15 |
<?php echo wpsg_drawForm_Select('wpsg_mod_si_hashalgo', __('HASH Algorithmus', 'wpsg'), array(
|
|
|
16 |
wpsg_mod_si::HASH_MD5 => __('MD5', 'wpsg'),
|
|
|
17 |
wpsg_mod_si::HASH_SHA1 => __('SHA1', 'wpsg'),
|
|
|
18 |
wpsg_mod_si::HASH_SHA256 => __('SHA256', 'wpsg'),
|
|
|
19 |
wpsg_mod_si::HASH_SHA512 => __('SHA512', 'wpsg'),
|
|
|
20 |
), $this->get_option('wpsg_mod_si_hashalgo'), array('help' => 'wpsg_mod_si_hashalgo')); ?>
|
|
|
21 |
|
|
|
22 |
<br />
|
|
|
23 |
|
|
|
24 |
<?php echo wpsg_drawForm_Input('wpsg_mod_si_minAge', __('Mindestalter (Produktvorgabe)', 'wpsg'), $this->get_option('wpsg_mod_si_minAge'), array('help' => 'wpsg_mod_si_minAge')); ?>
|
|
|
25 |
|
|
|
26 |
<br />
|
|
|
27 |
|
5541 |
thomas |
28 |
<?php echo wpsg_drawForm_Input('', __('Rücksprung-URL', 'wpsg'), $this->view['wpsg_mod_si']['returnURL'], array('readonly' => true, 'help' => 'wpsg_mod_si_returnURL')); ?>
|
|
|
29 |
|
|
|
30 |
<br />
|
|
|
31 |
|
|
|
32 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_si_country', __('Prüfung für Ausland deaktivieren', 'wpsg'), $this->get_option('wpsg_mod_si_country'), array('help' => 'wpsg_mod_si_country')); ?>
|