2d22e80e03f0b707496ac3991edfa57606a3a997
[mailer.git] / inc / modules / admin / what-lock_sponsor.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/24/2005 *
4  * ===============                              Last change: 05/18/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-lock_sponsor.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Edit sponsor account                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sponsorenaccount aendern                         *
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.       *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin()))
35 {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42 $MSG = "";
43
44 if (!empty($HTTP_GET_VARS['id']))
45 {
46         // Check for selected sponsor
47         $result = SQL_QUERY_ESC("SELECT salut, surname, family, email, status FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
48          array($HTTP_GET_VARS['id']), __FILE__, __LINE__);
49         if (SQL_NUMROWS($result) == 1)
50         {
51                 // Get sponsor's current status and let only confirmed and locked status pass
52                 list($salut, $sname, $fname, $email, $status) = SQL_FETCHROW($result);
53                 SQL_FREERESULT($result);
54
55                 if (($status == "CONFIRMED") || ($status == "LOCKED"))
56                 {
57                         // Transfer data to constants
58                         define('__SALUT'  , TRANSLATE_SEX($salut));
59                         define('__SURNAME', $sname);
60                         define('__FAMILY' , $fname);
61                         define('__ID'     , $HTTP_GET_VARS['id']);
62
63                         if (isset($HTTP_POST_VARS['ok']))
64                         {
65                                 // Create messages
66                                 if ($status == "CONFIRMED")
67                                 {
68                                         // Message when sponsor's account got lock
69                                         define('__EMAIL_MSG', SPONSOR_ACCOUNT_LOCKED);
70                                         $subject = SPONSOR_SUBJECT_LOCKED;
71                                         $status = "LOCKED";
72                                 }
73                                  else
74                                 {
75                                         // Message when sponsor's account got unlock
76                                         define('__EMAIL_MSG', SPONSOR_ACCOUNT_UNLOCKED);
77                                         $subject = SPONSOR_SUBJECT_UNLOCKED;
78                                         $status = "CONFIRMED";
79                                 }
80
81                                 // Load email message
82                                 $msg = LOAD_EMAIL_TEMPLATE("lock_sponsor", $HTTP_POST_VARS['reason'], $HTTP_GET_VARS['id']);
83
84                                 // And send it away
85                                 SEND_EMAIL($email, $subject, $msg);
86
87                                 // Update sponsor's account
88                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='".$status."' WHERE id='%s' LIMIT 1",
89                                  array(bigintval($HTTP_GET_VARS['id'])), __FILE__, __LINE__);
90                         }
91                          elseif (!empty($HTTP_POST_VARS['no']))
92                         {
93                                 // No don't lock / unlock now!
94                                 LOAD_URL(URL."/modules.php?module=admin&what=list_sponsor&id=".$HTTP_GET_VARS['id']);
95                         }
96                          else
97                         {
98                                 // Create header and text messages
99                                 if ($status == "CONFIRMED")
100                                 {
101                                         // Messages when sponsor's account is confirmed
102                                         define('__HEADER_MESSAGE', SPONSOR_LOCK_SPONSOR_HEADER);
103                                         define('__TEXT_MESSAGE'  , SPONSOR_LOCK_SPONSOR_TEXT);
104                                 }
105                                  else
106                                 {
107                                         // Messages when sponsor's account is locked
108                                         define('__HEADER_MESSAGE', SPONSOR_UNLOCK_SPONSOR_HEADER);
109                                         define('__TEXT_MESSAGE'  , SPONSOR_UNLOCK_SPONSOR_TEXT);
110                                 }
111
112                                 // Create email link
113                                 define('__EMAIL_LINK', "<A href=\"mailto:".$email."\">".__SALUT." ".__SURNAME." ".__FAMILY."</A>");
114
115                                 // Display form
116                                 LOAD_TEMPLATE("admin_lock_sponsor");
117                         }
118                 }
119                  else
120                 {
121                         // Cannot change status on unconfirmed or pending accounts!
122                         $MSG = ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS;
123                 }
124         }
125          else
126         {
127                 // Sponsor not found!
128                 $MSG = ADMIN_SPONSOR_404_1.$HTTP_GET_VARS['id'].ADMIN_SPONSOR_404_2;
129         }
130 }
131  else
132 {
133         // Not called by what-list_sponsor.php
134         $MSG = ADMIN_CALL_NOT_DIRECTLY;
135 }
136
137 if (!empty($MSG))
138 {
139         // Output message
140         LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
141 }
142 //
143 ?>