1e815de44523942417d3a495bdd3029dc5dda0c0
[mailer.git] / inc / modules / member / what-newsletter.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/12/2004 *
4  * ================                             Last change: 01/07/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-                                            *
8  * -------------------------------------------------------------------- *
9  * Short description :                                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  :                                                  *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('newsletter')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('newsletter'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 // Load status
54 $result = SQL_QUERY_ESC("SELECT nl_receive, nl_until, nl_timespan FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
55 array(getUserId()), __FILE__, __LINE__);
56 list($status, $until, $span) = SQL_FETCHROW($result);
57 SQL_FREERESULT($result);
58
59 // Remember charge value
60 define('__CHARGE_VALUE', translateComma(getConfig('nl_charge')));
61
62 if ((isFormSent()) && ($status == 'Y') && ($span == '0')) {
63         // Save request
64         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET nl_timespan='".(getConfig('one_day') * 30)."' WHERE userid=%s LIMIT 1",
65         array(getUserId()), __FILE__, __LINE__);
66
67         // Load admin message
68         $admin_msg = LOAD_EMAIL_TEMPLATE("admin_newsletter_request", array(), getUserId());
69
70         // Add task
71         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_task_system` (assigned_admin, status, task_type, subject, text, task_created, userid)
72 VALUES ('0','NEW','NL_UNSUBSCRIBE','{--ADMIN_NL_SUBJECT--}','".$admin_msg."', UNIX_TIMESTAMP(),'%s')", array(getUserId()), __FILE__, __LINE__);
73
74         // Send mail to member
75         $msg = LOAD_EMAIL_TEMPLATE("member_newsletter_request", array(), getUserId());
76         sendEmail(getUserId(), getMessage('NL_MEMBER_SUBJECT'), $msg);
77
78         // Send mail to all admins
79         sendAdminNotification(getMessage('NL_ADMIN_SUBJECT'), "admin_newsletter_request", array(), getUserId());
80
81         // Display message
82         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('NL_MEMBER_REQUEST_DONE'));
83 } elseif ($span > 0) {
84         // Already ordered
85         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('NL_MEMBER_REQUEST_ALREADY'));
86 } else {
87         // Load template for the note
88         define('NL_MEMBER_NOTE', LOAD_TEMPLATE("member_newsletter_note", true));
89
90         // Set status message and submit button
91         switch ($status)
92         {
93                 case 'Y': // Receives the newsletter
94                         define('__STATUS_VALUE', getMessage('NL_MEMBER_ON'));
95                         define('__UNTIL_VALUE' , '');
96                         define('NL_SUBMIT'     , getMessage('NL_MEMBER_SUBMIT_OFF'));
97                         break;
98
99                 case 'N': // Does not receive the newsletter
100                         define('__STATUS_VALUE', getMessage('NL_MEMBER_OFF'));
101                         define('__UNTIL_VALUE' , generateDateTime($until, '2'));
102                         define('NL_SUBMIT'     , getMessage('NL_MEMBER_SUBMIT_ON'));
103                         break;
104         }
105
106         // Load template and member settings
107         LOAD_TEMPLATE("member_newsletter");
108 }
109
110 //
111 ?>
112