Unlock of booked URLs in surfbar added, fix for URL-encoded links in loader module
[mailer.git] / inc / modules / admin / what-lock_sponsor.php
1 <?php
2 /************************************************************************
3  * M-XChange v0.2.1                                   Start: 04/24/2005 *
4  * ================                             Last change: 05/19/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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
36         require($INC);
37 }
38
39 // Add description as navigation point
40 ADD_DESCR("admin", basename(__FILE__));
41 $MSG = "";
42
43 if (!empty($_GET['id'])) {
44         // Check for selected sponsor
45         $result = SQL_QUERY_ESC("SELECT salut, surname, family, email, status FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
46          array(bigintval($_GET['id'])), __FILE__, __LINE__);
47         if (SQL_NUMROWS($result) == 1) {
48                 // Get sponsor's current status and let only confirmed and locked status pass
49                 list($salut, $sname, $fname, $email, $status) = SQL_FETCHROW($result);
50                 SQL_FREERESULT($result);
51
52                 if (($status == "CONFIRMED") || ($status == "LOCKED")) {
53                         // Transfer data to constants
54                         define('__SALUT'  , TRANSLATE_SEX($salut));
55                         define('__SURNAME', $sname);
56                         define('__FAMILY' , $fname);
57                         define('__ID'     , bigintval($_GET['id']));
58
59                         if (isset($_POST['ok'])) {
60                                 // Create messages
61                                 if ($status == "CONFIRMED") {
62                                         // Message when sponsor's account got lock
63                                         define('__EMAIL_MSG', SPONSOR_ACCOUNT_LOCKED);
64                                         $subject = SPONSOR_SUBJECT_LOCKED;
65                                         $status = "LOCKED";
66                                 } else {
67                                         // Message when sponsor's account got unlock
68                                         define('__EMAIL_MSG', SPONSOR_ACCOUNT_UNLOCKED);
69                                         $subject = SPONSOR_SUBJECT_UNLOCKED;
70                                         $status = "CONFIRMED";
71                                 }
72
73                                 // Load email message
74                                 $msg = LOAD_EMAIL_TEMPLATE("lock_sponsor", $_POST['reason'], bigintval($_GET['id']));
75
76                                 // And send it away
77                                 SEND_EMAIL($email, $subject, $msg);
78
79                                 // Update sponsor's account
80                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='".$status."' WHERE id='%s' LIMIT 1",
81                                  array(bigintval($_GET['id'])), __FILE__, __LINE__);
82                         } elseif (!empty($_POST['no'])) {
83                                 // No don't lock / unlock now!
84                                 LOAD_URL(URL."/modules.php?module=admin&what=list_sponsor&id=".bigintval($_GET['id']));
85                         } else {
86                                 // Create header and text messages
87                                 if ($status == "CONFIRMED") {
88                                         // Messages when sponsor's account is confirmed
89                                         define('__HEADER_MESSAGE', SPONSOR_LOCK_SPONSOR_HEADER);
90                                         define('__TEXT_MESSAGE'  , SPONSOR_LOCK_SPONSOR_TEXT);
91                                 } else {
92                                         // Messages when sponsor's account is locked
93                                         define('__HEADER_MESSAGE', SPONSOR_UNLOCK_SPONSOR_HEADER);
94                                         define('__TEXT_MESSAGE'  , SPONSOR_UNLOCK_SPONSOR_TEXT);
95                                 }
96
97                                 // Create email link
98                                 define('__EMAIL_LINK', "<A href=\"mailto:".$email."\">".__SALUT." ".__SURNAME." ".__FAMILY."</A>");
99
100                                 // Display form
101                                 LOAD_TEMPLATE("admin_lock_sponsor");
102                         }
103                 } else {
104                         // Cannot change status on unconfirmed or pending accounts!
105                         $MSG = ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS;
106                 }
107         } else {
108                 // Sponsor not found!
109                 $MSG = ADMIN_SPONSOR_404_1.bigintval($_GET['id']).ADMIN_SPONSOR_404_2;
110         }
111 } else {
112         // Not called by what-list_sponsor.php
113         $MSG = ADMIN_CALL_NOT_DIRECTLY;
114 }
115
116 if (!empty($MSG)) {
117         // Output message
118         LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
119 }
120 //
121 ?>