Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 5532 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1067 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die E-Mail Konfiguration
5
	 */
6
 
7
?>
8
<div class="wpsg_admin_submenu">
9
 
5455 thomas 10
	<div class="list-group">
11
		<span class="list-group-head list-group-item"><?php echo __('Konfiguration'); ?></span>
12
		<?php foreach ($this->view['arSubAction'] as $k => $v) { ?>
13
		<a class="list-group-item <?php echo (($k == $this->view['subAction'])?'active':''); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=<?php echo $k; ?>"><?php echo $v['Menutext']; ?></a>
1067 daniel 14
		<?php } ?>
5455 thomas 15
	</div>
1067 daniel 16
 
17
</div>
18
 
19
<div class="wpsg_admin_content">
2587 daniel 20
 
21
	<h3>
22
		<?php echo __('E-Mail Konfiguration', 'wpsg'); ?>
23
		<a title="<?php echo __('Hilfeseite zur E-Mail Konfiguration', 'wpsg'); ?>" class="wpsg_form_help_notip" href="http://wpshopgermany.maennchen1.de/?p=3284" target="_blank"></a>
24
	</h3>
3663 daniel 25
 
2587 daniel 26
	<p><?php echo __('Hier können die Betreffs, Empfänger und BCC/CC der E-Mails konfiguriert werden.', 'wpsg')?></p>
3663 daniel 27
 
28
	<form name="form1" method="post" enctype="multipart/form-data" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=<?php echo $_REQUEST['subaction']; ?>">
2587 daniel 29
 
3663 daniel 30
		<?php echo wpsg_drawForm_Checkbox('wpsg_htmlmail', __('HTML Mails versenden', 'wpsg'), $this->get_option('wpsg_htmlmail')); ?>
31
 
32
		<br />
33
 
1067 daniel 34
		<div class="wpsg_admin_box">
4882 daniel 35
 
36
			<?php echo wpsg_drawEMailConfig(
37
					'global',
38
					__('Globale Vorgaben', 'wpsg'),
39
					__('Werden keine Angaben für die folgenden E-Mails gemacht, so gelten die globalen Angaben.', 'wpsg')); ?>
40
 
41
			<?php echo wpsg_drawEMailConfig(
42
					'adminmail',
43
					__('Bestellbestätigung (Admin)', 'wpsg'),
44
					__('Diese Mail bekommt der Admin beim Eingang einer neuen Bestellung.', 'wpsg'),
45
					true); ?>
1067 daniel 46
 
4882 daniel 47
			<?php echo wpsg_drawEMailConfig(
48
					'kundenmail',
49
					__('Bestellbestätigung (Kunde)', 'wpsg'),
50
					__('Diese Mail bekommt der Kunde nach Durchführung der Bestellung.', 'wpsg'),
51
					false,
52
					true); ?>
1067 daniel 53
 
4882 daniel 54
			<?php echo wpsg_drawEMailConfig(
55
					'status',
56
					__('Statusänderung (Kunde)', 'wpsg'),
57
					__('Diese Mail bekommt der Kunde bei der Änderung des Bestellstatus.', 'wpsg')); ?>
58
 
1401 daniel 59
			<?php $this->callMods('admin_emailconf'); ?>
1067 daniel 60
 
61
		</div>
62
 
3433 daniel 63
		<div class="wpsg_hinweis"><?php echo __('Klicken Sie auf die jeweilige Mail um die Einstellungen angezeigt zu bekommen bzw. zu ändern.', 'wpsg'); ?></div>
1414 daniel 64
 
1067 daniel 65
		<p class="submit"><input type="submit" value="<?php echo __('Einstellungen speichern', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
1414 daniel 66
 
67
	</form>
68
</div>
69
 
70
<script type="text/javascript">/* <![CDATA[ */
71
 
72
	/**
73
	 * Speichert die Informationen ob die Mailboxen auf oder zugeklappt sind in dem Cookie
74
	 */
75
	function wpsg_mail_save_cookie()
76
	{
77
 
78
		var wpsg_mail_open = Array();
1067 daniel 79
 
1414 daniel 80
		jQuery('.wpsg_admin_box .wpsg_mail_content:visible').each(function() {
81
 
82
			wpsg_mail_open.push(jQuery(this).prev().attr("id"));
83
 
84
		} );
85
 
86
		jQuery.cookie('wpsg_mail', wpsg_mail_open.join(','));
87
 
88
	} // function wpsg_mail_save_cookie()
89
 
90
	jQuery(document).ready(function() {
91
 
92
		jQuery('.wpsg_admin_box .wpsg_mail_head').bind('click', function() {
93
 
94
			jQuery(this).next().toggle();
95
 
96
			if (!jQuery(this).next().is(":visible"))
97
			{
98
				jQuery(this).css('border-bottom', '1px solid #AAAAAA');
99
			}
100
			else
101
			{
102
				jQuery(this).css('border-bottom', '0px');
103
			}
104
 
105
			wpsg_mail_save_cookie();
106
 
107
		} );
108
 
109
		jQuery('.wpsg_admin_box .wpsg_mail_head').disableSelection();
110
 
111
		if (jQuery.cookie('wpsg_mail') != null)
112
		{
113
 
114
			var arOpen = jQuery.cookie('wpsg_mail').split(',');
115
 
116
			for (var i = 0; i < arOpen.length; i ++)
117
			{
118
 
119
				jQuery('#' + arOpen[i]).next().show();
120
				jQuery('#' + arOpen[i]).css('border-bottom', '0px');
121
 
122
			}
123
 
124
		}
125
 
126
	} );
127
 
128
/* ]]> */</script>