6d21c0c0aa7b47bff1ebbd04b35f196f28e92ee9
[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         if (GET_EXT_VERSION("admins") >= "0.4.1")
81         {
82                 SEND_ADMIN_EMAILS_PRO(NL_ADMIN_SUBJECT, "admin_newsletter_request", "", $GLOBALS['userid']);
83         }
84          else
85         {
86                 SEND_ADMIN_EMAILS(NL_ADMIN_SUBJECT, $admin_msg);
87         }
88
89         // Display message
90         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_DONE);
91 }
92  elseif ($span > 0)
93 {
94         // Already ordered
95         LOAD_TEMPLATE("admin_settings_saved", false, NL_MEMBER_REQUEST_ALREADY);
96 }
97  else
98 {
99         // Load template for the note
100         define('NL_MEMBER_NOTE', LOAD_TEMPLATE("member_newsletter_note", true));
101
102         // Set status message and submit button
103         switch ($status)
104         {
105         case 'Y': // Receives the newsletter
106                 define('__STATUS_VALUE', NL_MEMBER_ON);
107                 define('__UNTIL_VALUE', "");
108                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_OFF);
109                 break;
110
111         case 'N': // Does not receive the newsletter
112                 define('__STATUS_VALUE', NL_MEMBER_OFF);
113                 define('__UNTIL_VALUE', MAKE_DATETIME($until, "2"));
114                 define('NL_SUBMIT', NL_MEMBER_SUBMIT_ON);
115                 break;
116         }
117
118         // Load template and member settings
119         LOAD_TEMPLATE("member_newsletter");
120 }
121 //
122 ?>
123