1067 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
1623 |
daniel |
4 |
* Template für die Einstellungen des Kundenverwaltungsdialoges
|
1067 |
daniel |
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
7955 |
karl |
8 |
<?php echo wpsg_drawForm_Input('wpsg_mod_kundenverwaltung_perpage', __('Kunden pro Seite (Backend)', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_perpage'), array('help' => 'wpsg_mod_kundenverwaltung_perpage')); ?>
|
5750 |
daniel |
9 |
|
|
|
10 |
<br />
|
|
|
11 |
|
4929 |
thomas |
12 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_showCheckoutLogin', __('Login in Checkout integrieren', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_showCheckoutLogin'), array('help' => 'wpsg_mod_kundenverwaltung_showCheckoutLogin')); ?>
|
7112 |
thomas |
13 |
|
|
|
14 |
<br />
|
|
|
15 |
|
4929 |
thomas |
16 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_showCheckoutRegister', __('Registrierung im Checkout', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegister'), array('help' => 'wpsg_mod_kundenverwaltung_showCheckoutRegister')); ?>
|
5934 |
hartmut |
17 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang', __('Registrierungzwang im Checkout', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang'), array('help' => 'wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang')); ?>
|
7112 |
thomas |
18 |
|
|
|
19 |
<br />
|
|
|
20 |
|
7390 |
thomas |
21 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_loginZwang', __('E-Mail darf nur für einmaligen Einkauf genutzt werden', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_loginZwang'), array('help' => 'wpsg_mod_kundenverwaltung_loginZwang')); ?>
|
7112 |
thomas |
22 |
|
|
|
23 |
<br />
|
|
|
24 |
|
6469 |
thomas |
25 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_preisAnzeige', __('Bestellung und Preisanzeige nur für eingeloggte Benutzer', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_preisAnzeige'), array('help' => 'wpsg_mod_kundenverwaltung_preisAnzeige')); ?>
|
5548 |
thomas |
26 |
|
5750 |
daniel |
27 |
<br />
|
|
|
28 |
|
5573 |
daniel |
29 |
<?php echo wpsg_drawForm_Select('wpsg_mod_kundenverwaltung_redirectlogin', __('Weiterleitung nach Login', 'wpsg'), wpsg_array_merge(array(
|
|
|
30 |
'0' => __('Auf aktueller Seite bleiben', 'wpsg')
|
5750 |
daniel |
31 |
), $this->view['arPageWithoutCreate']), $this->get_option('wpsg_mod_kundenverwaltung_redirectlogin'), array('help' => 'wpsg_mod_kundenverwaltung_redirectlogin')); ?>
|
5573 |
daniel |
32 |
|
|
|
33 |
<?php echo wpsg_drawForm_Select('wpsg_mod_kundenverwaltung_redirectLogout', __('Weiterleitung nach Logout', 'wpsg'), wpsg_array_merge(array(
|
|
|
34 |
'0' => __('Auf aktueller Seite bleiben', 'wpsg')
|
5750 |
daniel |
35 |
), $this->view['arPageWithoutCreate']), $this->get_option('wpsg_mod_kundenverwaltung_redirectLogout'), array('help' => 'wpsg_mod_kundenverwaltung_redirectLogout')); ?>
|
5573 |
daniel |
36 |
|
2614 |
david |
37 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_status', __('Status nach Registrierung', 'wpsg'), array('inaktiv', 'aktiv'), $this->get_option('wpsg_page_mod_kundenverwaltung_status'), array('help' => 'wpsg_mod_kundenverwaltung_status')); ?>
|
2597 |
daniel |
38 |
<div class="wpsg_form_field">
|
|
|
39 |
<div class="wpsg_form_left">
|
|
|
40 |
<label for=""> </label>
|
|
|
41 |
</div>
|
|
|
42 |
<div class="wpsg_form_right">
|
5750 |
daniel |
43 |
<a onclick="if (!confirm('<?php echo __('Sind Sie sich sicher, dass Sie alle Kunden auf Aktiv setzen möchten?', 'wpsg'); ?>')) return false;" style="float:left;" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_kundenverwaltung&wpsg_mod_kundenverwaltung_setActiv=1&noheader=1"><?php echo __('Alle Kunden aktivieren', 'wpsg'); ?></a>
|
|
|
44 |
<a onclick="if (!confirm('<?php echo __('Sind Sie sich sicher, dass Sie alle Kunden auf Inaktiv setzen möchten?', 'wpsg'); ?>')) return false;" style="float:right; margin-right:25px;" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_kundenverwaltung&wpsg_mod_kundenverwaltung_setInactiv=1&noheader=1"><?php echo __('Alle Kunden deaktivieren', 'wpsg'); ?></a>
|
2597 |
daniel |
45 |
</div>
|
|
|
46 |
<div class="wpsg_clear"></div>
|
|
|
47 |
</div>
|
2484 |
david |
48 |
|
|
|
49 |
<br />
|
7112 |
thomas |
50 |
|
5382 |
daniel |
51 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_profil', __('Profilseite', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_profil'), array('help' => 'wpsg_page_mod_kundenverwaltung_profil')); ?>
|
|
|
52 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_registrierung', __('Registrierungsseite', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_registrierung'), array('help' => 'wpsg_page_mod_kundenverwaltung_registrierung')); ?>
|
|
|
53 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_weiterleitung_nach_registrierung', __('Weiterleitung nach Registrierung', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_weiterleitung_nach_registrierung'), array('help' => 'wpsg_page_mod_kundenverwaltung_weiterleitung_nach_registrierung')); ?>
|
6168 |
thomas |
54 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_passwordsend', __('Passwort gesendet', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_passwordsend'), array('help' => 'wpsg_page_mod_kundenverwaltung_passwordsend')); ?>
|
5382 |
daniel |
55 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_order', __('Bestellübersichtsseite', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_order'), array('help' => 'wpsg_mod_kundenverwaltung_order')); ?>
|
7112 |
thomas |
56 |
|
2657 |
daniel |
57 |
<br />
|
7112 |
thomas |
58 |
|
6833 |
thomas |
59 |
<?php if ($this->hasMod('wpsg_mod_abo') == '1') { ?>
|
|
|
60 |
<?php echo wpsg_drawForm_Select('wpsg_page_mod_kundenverwaltung_abo', __('Abonnementenübersichtsseite', 'wpsg'), $this->view['pages'], $this->get_option('wpsg_page_mod_kundenverwaltung_abo'), array('help' => 'wpsg_mod_kundenverwaltung_abo')); ?>
|
|
|
61 |
<?php } ?>
|
7112 |
thomas |
62 |
|
6833 |
thomas |
63 |
<br />
|
1385 |
daniel |
64 |
|
4932 |
thomas |
65 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_wpuser', __('Wordpress User koppeln', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_wpuser'), array('help' => 'wpsg_mod_kundenverwaltung_wpuser_role')); ?>
|
2657 |
daniel |
66 |
<div id="wpsg_mod_kundenverwaltung_wpuser_layer" style="display:none;">
|
|
|
67 |
|
4932 |
thomas |
68 |
<?php echo wpsg_drawForm_Select('wpsg_mod_kundenverwaltung_wpuser_role', __('Benutzerrolle', 'wpsg'), $this->view['arRoles'], $this->get_option('wpsg_mod_kundenverwaltung_wpuser_role')); ?>
|
7140 |
daniel |
69 |
<br />
|
|
|
70 |
|
2657 |
daniel |
71 |
</div>
|
|
|
72 |
|
8167 |
karl |
73 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_recaptcha_register', __('reCaptcha V2 für Registrierung', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_recaptcha_register'), array('help' => 'wpsg_mod_kundenverwaltung_recaptcha_register')); ?>
|
7140 |
daniel |
74 |
<div id="wpsg_mod_kundenverwaltung_register_recaptcha_layer" style="display:none;">
|
|
|
75 |
|
|
|
76 |
<?php echo wpsg_drawForm_Input('wpsg_mod_kundenveraltung_recaptcha_key', __('Websiteschlüssel', 'wpsg'), $this->get_option('wpsg_mod_kundenveraltung_recaptcha_key')); ?>
|
|
|
77 |
<?php echo wpsg_drawForm_Input('wpsg_mod_kundenveraltung_recaptcha_secretkey', __('Geheimer Schlüssel', 'wpsg'), $this->get_option('wpsg_mod_kundenveraltung_recaptcha_secretkey')); ?>
|
8123 |
karl |
78 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_recaptcha_dsgvo_layer', __('DSGVO Layer für das Recaptcha', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_recaptcha_dsgvo_layer')); ?>
|
7140 |
daniel |
79 |
|
|
|
80 |
</div>
|
7944 |
daniel |
81 |
|
|
|
82 |
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_kundenverwaltung_mathcaptcha', __('Captcha Mathe Aufgabe', 'wpsg'), $this->get_option('wpsg_mod_kundenverwaltung_mathcaptcha')); ?>
|
|
|
83 |
|
7140 |
daniel |
84 |
<script>
|
|
|
85 |
|
|
|
86 |
jQuery('#wpsg_mod_kundenverwaltung_recaptcha_register').on('change', function() {
|
|
|
87 |
|
|
|
88 |
if (jQuery(this).prop('checked')) jQuery('#wpsg_mod_kundenverwaltung_register_recaptcha_layer').show();
|
|
|
89 |
else jQuery('#wpsg_mod_kundenverwaltung_register_recaptcha_layer').hide();
|
|
|
90 |
|
|
|
91 |
} ).change(); </script>
|
|
|
92 |
|
1538 |
daniel |
93 |
<br />
|
5750 |
daniel |
94 |
<div class="info">
|
1538 |
daniel |
95 |
<?php echo wpsg_translate(__('Die Einstellungen für die E-Mails (Betreff, Absender, CC) können in der <a href="#1#">E-Mail Konfiguration</a> durchgeführt werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf'); ?>
|
|
|
96 |
</div>
|
|
|
97 |
|
1385 |
daniel |
98 |
<script type="text/javascript">
|
2657 |
daniel |
99 |
|
1385 |
daniel |
100 |
jQuery(document).ready(function() {
|
|
|
101 |
|
2657 |
daniel |
102 |
jQuery('#wpsg_mod_kundenverwaltung_wpuser').bind('change', function() {
|
|
|
103 |
|
|
|
104 |
if (jQuery(this).attr("checked") == "checked") jQuery('#wpsg_mod_kundenverwaltung_wpuser_layer').show();
|
|
|
105 |
else jQuery('#wpsg_mod_kundenverwaltung_wpuser_layer').hide();
|
|
|
106 |
|
|
|
107 |
} ).change();
|
5439 |
daniel |
108 |
|
1385 |
daniel |
109 |
} );
|
|
|
110 |
|
|
|
111 |
</script>
|