* Member template added for the surfbar which notifies the user that the URL is
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_LOGGED_IN())
41 {
42         LOAD_URL("modules.php?module=index");
43 }
44  elseif ((!EXT_IS_ACTIVE("newsletter")) && (!IS_ADMIN()))
45 {
46         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "newsletter");
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR("member", basename(__FILE__));
52
53 // Load status
54 $result = SQL_QUERY_ESC("SELECT nl_receive, nl_until, nl_timespan FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
55  array($GLOBALS['userid']), __FILE__, __LINE__);
56 list($status, $until, $span) = SQL_FETCHROW($result);
57 SQL_FREERESULT($result);
58
59 // Remember charge value
60 define('__CHARGE_VALUE', TRANSLATE_COMMA($_CONFIG['nl_charge']));
61
62 if ((isset($_POST['ok'])) && ($status == "Y") && ($span == "0"))
63 {
64         // Save request
65         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET nl_timespan='".(ONE_DAY * 30)."' WHERE userid=%d LIMIT 1",
66          array($GLOBALS['userid']), __FILE__, __LINE__);
67
68         // Load admin message
69         $admin_msg = LOAD_EMAIL_TEMPLATE("admin_newsletter_request", "", $GLOBALS['userid']);
70
71         // Add task
72         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_task_system (assigned_admin, status, task_type, subject, text, task_created, userid)
73 VALUES ('0', 'NEW', 'NL_UNSUBSCRIBE', '".ADMIN_NL_SUBJECT."', '".addslashes($admin_msg)."', UNIX_TIMESTAMP(), '%s')", array($GLOBALS['userid']), __FILE__, __LINE__);
74
75         // Send mail to member
76         $msg = LOAD_EMAIL_TEMPLATE("member_newsletter_request", "", $GLOBALS['userid']);
77         SEND_EMAIL($GLOBALS['userid'], NL_MEMBER_SUBJECT, $msg);
78
79         // Send mail to all admins
80         SEND_ADMIN_NOTIFICATION(NL_ADMIN_SUBJECT, "admin_newsletter_request", "", $GLOBALS['userid']);
81
82         // Display message
83         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_DONE);
84 }
85  elseif ($span > 0)
86 {
87         // Already ordered
88         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_ALREADY);
89 }
90  else
91 {
92         // Load template for the note
93         define('NL_MEMBER_NOTE', LOAD_TEMPLATE("member_newsletter_note", true));
94
95         // Set status message and submit button
96         switch ($status)
97         {
98         case 'Y': // Receives the newsletter
99                 define('__STATUS_VALUE', NL_MEMBER_ON);
100                 define('__UNTIL_VALUE', "");
101                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_OFF);
102                 break;
103
104         case 'N': // Does not receive the newsletter
105                 define('__STATUS_VALUE', NL_MEMBER_OFF);
106                 define('__UNTIL_VALUE', MAKE_DATETIME($until, "2"));
107                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_ON);
108                 break;
109         }
110
111         // Load template and member settings
112         LOAD_TEMPLATE("member_newsletter");
113 }
114 //
115 ?>
116