7057 |
thomas |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Einstellungen des Satollo Newsletter Moduls
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
<?php if ($this->view['plugin_active'] !== true) { ?>
|
|
|
9 |
|
|
|
10 |
<div class="wpsg_error"><br /><?php echo __('Das Modul ist nur mit aktiviertem Satollo Newsletter Plugin funktionsfaehig.', 'wpsg'); ?><br /></div>
|
|
|
11 |
|
|
|
12 |
<?php } else { ?>
|
|
|
13 |
|
|
|
14 |
<?php echo wpsg_drawForm_Select('wpsg_mod_nlsatolo_status', __('Statuszuordnung nach Registrierung', 'wpsg'), array('0' => __('bestaetigt', 'wpsg'), '1' => __('nicht bestaetigt', 'wpsg')), $this->get_option('wpsg_mod_nlsatolo_status'), array('help' => 'wpsg_mod_nlsatolo_status')); ?>
|
|
|
15 |
|
|
|
16 |
<?php /* Listen werden im Satolo-Newsletter-Plugin unter Subscribers > Listen erstellen > Listen angelegt*/ ?>
|
|
|
17 |
<?php echo wpsg_drawForm_Select('wpsg_mod_nlsatolo_group', __('Gruppezuordnung nach Registrierung', 'wpsg'), array('0' => __(' TODO ', 'wpsg')), $this->get_option('wpsg_mod_nlsatolo_group'), array('help' => 'wpsg_mod_nlsatolo_group')); ?>
|
|
|
18 |
|
|
|
19 |
<br />
|
|
|
20 |
|
|
|
21 |
<?php echo wpsg_drawForm_Select('wpsg_mod_nlsatolo_action', __('Aktion', 'wpsg'), array('0' => __('Opt-In Mail versenden', 'wpsg'), '1' => __('Direkt anmelden', 'wpsg')), $this->get_option('wpsg_mod_nlsatolo_action'), array('help' => 'wpsg_mod_nlsatolo_action')); ?>
|
|
|
22 |
|
|
|
23 |
<?php } ?>
|