More language strings rewritten
[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, 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')) || (!IS_ADMIN())) {
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", __FILE__);
42 $MSG = "";
43
44 if (!empty($_GET['id'])) {
45         // Check for selected sponsor
46         $result = SQL_QUERY_ESC("SELECT gender, surname, family, email, status FROM `{!_MYSQL_PREFIX!}_sponsor_data` WHERE id='%s' LIMIT 1",
47          array(bigintval($_GET['id'])), __FILE__, __LINE__);
48         if (SQL_NUMROWS($result) == 1) {
49                 // Get sponsor's current status and let only confirmed and locked status pass
50                 list($gender, $sname, $fname, $email, $status) = SQL_FETCHROW($result);
51                 SQL_FREERESULT($result);
52
53                 if (($status == "CONFIRMED") || ($status == "LOCKED")) {
54                         // Transfer data to constants
55                         define('__GENDER'  , TRANSLATE_GENDER($gender));
56                         define('__SURNAME', $sname);
57                         define('__FAMILY' , $fname);
58                         define('__ID'     , bigintval($_GET['id']));
59
60                         if (isset($_POST['ok'])) {
61                                 // Create messages
62                                 if ($status == "CONFIRMED") {
63                                         // Message when sponsor's account got lock
64                                         define('__EMAIL_MSG', getMessage('SPONSOR_ACCOUNT_LOCKED'));
65                                         $subject = getMessage('SPONSOR_SUBJECT_LOCKED');
66                                         $status = "LOCKED";
67                                 } else {
68                                         // Message when sponsor's account got unlock
69                                         define('__EMAIL_MSG', getMessage('SPONSOR_ACCOUNT_UNLOCKED'));
70                                         $subject = getMessage('SPONSOR_SUBJECT_UNLOCKED');
71                                         $status = "CONFIRMED";
72                                 }
73
74                                 // Load email message
75                                 $msg = LOAD_EMAIL_TEMPLATE("lock_sponsor", $_POST['reason'], bigintval($_GET['id']));
76
77                                 // And send it away
78                                 SEND_EMAIL($email, $subject, $msg);
79
80                                 // Update sponsor's account
81                                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` SET `status`='".$status."' WHERE id='%s' LIMIT 1",
82                                         array(bigintval($_GET['id'])), __FILE__, __LINE__);
83                         } elseif (!empty($_POST['no'])) {
84                                 // No don't lock / unlock now!
85                                 LOAD_URL("modules.php?module=admin&amp;what=list_sponsor&amp;id=".bigintval($_GET['id']));
86                         } else {
87                                 // Create header and text messages
88                                 if ($status == "CONFIRMED") {
89                                         // Messages when sponsor's account is confirmed
90                                         define('__HEADER_MESSAGE', getMessage('SPONSOR_LOCK_SPONSOR_HEADER'));
91                                         define('__TEXT_MESSAGE'  , getMessage('SPONSOR_LOCK_SPONSOR_TEXT'));
92                                 } else {
93                                         // Messages when sponsor's account is locked
94                                         define('__HEADER_MESSAGE', getMessage('SPONSOR_UNLOCK_SPONSOR_HEADER'));
95                                         define('__TEXT_MESSAGE'  , getMessage('SPONSOR_UNLOCK_SPONSOR_TEXT'));
96                                 }
97
98                                 // Create email link
99                                 define('__EMAIL_LINK', "<a href=\"mailto:".$email."\">{!__GENDER!} {!__SURNAME!} {!__FAMILY!}</a>");
100
101                                 // Display form
102                                 LOAD_TEMPLATE("admin_lock_sponsor");
103                         }
104                 } else {
105                         // Cannot change status on unconfirmed or pending accounts!
106                         $MSG = getMessage('ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS');
107                 }
108         } else {
109                 // Sponsor not found!
110                 $MSG = sprintf(getMessage('ADMIN_SPONSOR_404'), bigintval($_GET['id']));
111         }
112 } else {
113         // Not called by what-list_sponsor.php
114         $MSG = getMessage('ADMIN_CALL_NOT_DIRECTLY');
115 }
116
117 if (!empty($MSG)) {
118         // Output message
119         LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
120 }
121
122 //
123 ?>