8868b04a40e7723d9ec1da4568407a89da8a0524
[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 (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         LOAD_URL("modules.php?module=index");
40 } elseif ((!EXT_IS_ACTIVE("newsletter")) && (!IS_ADMIN())) {
41         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "newsletter");
42         return;
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", __FILE__);
47
48 // Load status
49 $result = SQL_QUERY_ESC("SELECT nl_receive, nl_until, nl_timespan FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
50  array($GLOBALS['userid']), __FILE__, __LINE__);
51 list($status, $until, $span) = SQL_FETCHROW($result);
52 SQL_FREERESULT($result);
53
54 // Remember charge value
55 define('__CHARGE_VALUE', TRANSLATE_COMMA(getConfig('nl_charge')));
56
57 if ((isset($_POST['ok'])) && ($status == "Y") && ($span == "0"))
58 {
59         // Save request
60         $result = SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET nl_timespan='".(getConfig('one_day') * 30)."' WHERE userid=%s LIMIT 1",
61          array($GLOBALS['userid']), __FILE__, __LINE__);
62
63         // Load admin message
64         $admin_msg = LOAD_EMAIL_TEMPLATE("admin_newsletter_request", array(), $GLOBALS['userid']);
65
66         // Add task
67         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_task_system (assigned_admin, status, task_type, subject, text, task_created, userid)
68 VALUES ('0','NEW','NL_UNSUBSCRIBE','".ADMIN_NL_SUBJECT."','".$admin_msg."', UNIX_TIMESTAMP(),'%s')", array($GLOBALS['userid']), __FILE__, __LINE__);
69
70         // Send mail to member
71         $msg = LOAD_EMAIL_TEMPLATE("member_newsletter_request", array(), $GLOBALS['userid']);
72         SEND_EMAIL($GLOBALS['userid'], NL_MEMBER_SUBJECT, $msg);
73
74         // Send mail to all admins
75         SEND_ADMIN_NOTIFICATION(NL_ADMIN_SUBJECT, "admin_newsletter_request", array(), $GLOBALS['userid']);
76
77         // Display message
78         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_DONE);
79 }
80  elseif ($span > 0)
81 {
82         // Already ordered
83         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_ALREADY);
84 }
85  else
86 {
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', NL_MEMBER_ON);
95                 define('__UNTIL_VALUE', "");
96                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_OFF);
97                 break;
98
99         case "N": // Does not receive the newsletter
100                 define('__STATUS_VALUE', NL_MEMBER_OFF);
101                 define('__UNTIL_VALUE', MAKE_DATETIME($until, "2"));
102                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_ON);
103                 break;
104         }
105
106         // Load template and member settings
107         LOAD_TEMPLATE("member_newsletter");
108 }
109 //
110 ?>
111