Subversion Repositories wpShopGermany4

Rev

Rev 7057 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7057 Rev 7058
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
	/**
3
/**
4
	 * Template für die Einstellungen des Satollo Newsletter Moduls
4
 * Template für die Einstellungen des Satollo Newsletter Moduls
5
	 */
5
 */
6
 
6
 
7
?>
7
?>
8
<?php if ($this->view['plugin_active'] !== true) { ?>
8
<?php if ($this->view['plugin_active'] !== true) { ?>
9
 
9
 
10
	<div class="wpsg_error"><br /><?php echo __('Das Modul ist nur mit aktiviertem Satollo Newsletter Plugin funktionsfaehig.', 'wpsg'); ?><br /></div>
10
    <div class="wpsg_error"><br /><?php echo __('Das Modul ist nur mit aktiviertem Satollo Newsletter Plugin funktionsfaehig.', 'wpsg'); ?><br /></div>
11
 
11
 
12
<?php } else { ?>
12
<?php } else { ?>
13
 
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')); ?>
14
    <?php echo wpsg_drawForm_Select('wpsg_mod_nlsatolo_doubleoptin', __('Double Opt-In', 'wpsg'), array('0' => __('Nein', 'wpsg'), '1' => __('Ja', 'wpsg')), $this->get_option('wpsg_mod_nlsatolo_doubleoptin'), array('help' => 'wpsg_mod_nlsatolo_doubleoptin')); ?>
15
	
15
 
16
	<?php /* Listen werden im Satolo-Newsletter-Plugin unter Subscribers > Listen erstellen > Listen angelegt*/ ?>
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')); ?>
17
    <?php echo wpsg_drawForm_Select('wpsg_mod_nlsatolo_group', __('Gruppezuordnung nach Registrierung', 'wpsg'), $this->view['arLists'], $this->get_option('wpsg_mod_nlsatolo_group'), array('help' => 'wpsg_mod_nlsatolo_group')); ?>
22
	
18
 
23
<?php } ?>
19
<?php } ?>
24
20