"copied"
[mailer.git] / 0.2.1-FINAL / inc / modules / admin / what-del_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-del_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
43 if (!empty($_GET['id'])) {
44         // Check for selected sponsor
45         $result = SQL_QUERY_ESC("SELECT email, gender, surname, family FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
46                 array(bigintval($_GET['id'])), __FILE__, __LINE__);
47         if (SQL_NUMROWS($result) == 1) {
48                 // Remove sponsor
49                 if (isset($_POST['ok'])) {
50                         // Load data and remember it in constants
51                         list($email, $gender, $surname, $family) = SQL_FETCHROW($result);
52
53                         // Free result
54                         SQL_FREERESULT($result);
55
56                         define('__EMAIL'  , $email);
57                         define('__GENDER'  , TRANSLATE_GENDER($gender));
58                         define('__SURNAME', $surname);
59                         define('__FAMILY' , $family);
60
61                         // Prepare message and send it away
62                         $msg = LOAD_EMAIL_TEMPLATE("del_sponsor", $_POST['reason'], bigintval($_GET['id']));
63                         SEND_EMAIL($email, SPONSOR_ADMIN_DEL_SUBJECT, $msg);
64
65                         // Remove account
66                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
67                                 array(bigintval($_GET['id'])), __FILE__, __LINE__);
68
69                         // Remove orders
70                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_sponsor_orders WHERE sponsorid='%s' LIMIT 1",
71                                 array(bigintval($_GET['id'])), __FILE__, __LINE__);
72
73                         // Output message
74                         LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_DELETED_1.bigintval($_GET['id']).SPONSOR_DELETED_2);
75                 } elseif (!empty($_POST['no'])) {
76                         // Do not delete him...
77                         LOAD_URL(URL."/modules.php?module=admin&amp;what=list_sponsor&amp;id=".bigintval($_GET['id']));
78                 } else {
79                         // Load data
80                         list ($email, $gender, $sname, $fname) = SQL_FETCHROW($result);
81
82                         // Transfer data to constants for the template
83                         define('__EMAIL', $email);
84                         define('__SNAME', $sname);
85                         define('__FNAME', $fname);
86                         define('__GENDER', TRANSLATE_GENDER($gender));
87                         define('__UID'  , bigintval($_GET['id']));
88
89                         // Display form
90                         LOAD_TEMPLATE("admin_del_sponsor");
91                 }
92         } else {
93                 // Sponsor not found!
94                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SPONSOR_404_1.bigintval($_GET['id']).ADMIN_SPONSOR_404_2);
95         }
96 } else {
97         // Not called by what-list_sponsor.php
98         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_CALL_NOT_DIRECTLY);
99 }
100
101 //
102 ?>