Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-del_sponsor.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isGetRequestParameterSet('id')) {
49         // Check for selected sponsor
50         $result = SQL_QUERY_ESC("SELECT email, gender, surname, family FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
51                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
52         if (SQL_NUMROWS($result) == 1) {
53                 // Remove sponsor
54                 if (isFormSent()) {
55                         // Load data and remember it in constants
56                         $content = SQL_FETCHARRAY($result);
57
58                         // Prepare data for the template
59                         $content['gender']  = translateGender($content['gender']);
60                         $content['reason']  = secureString(postRequestParameter('reason'));
61
62                         // Prepare message and send it away
63                         $message = loadEmailTemplate('del_sponsor', $content, bigintval(getRequestParameter('id')));
64                         sendEmail($content['email'], getMessage('ADMIN_SPONSOR_DEL_SUBJECT'), $message);
65
66                         // Remove account
67                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
68                                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
69
70                         // Remove orders
71                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_orders` WHERE `sponsorid`='%s' LIMIT 1",
72                                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
73
74                         // Output message
75                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_DELETED', bigintval(getRequestParameter('id'))));
76                 } elseif (isPostRequestParameterSet('no')) {
77                         // Do not delete him...
78                         redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id='.bigintval(getRequestParameter('id')));
79                 } else {
80                         // Load data
81                         $content = SQL_FETCHARRAY($result);
82
83                         // Transfer data to constants for the template
84                         $content['gender'] = translateGender($content['gender']);
85                         $content['userid'] = bigintval(getRequestParameter('id'));
86
87                         // Display form
88                         loadTemplate('admin_del_sponsor', false, $content);
89                 }
90         } else {
91                 // Sponsor not found!
92                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id'))));
93         }
94
95         // Free result
96         SQL_FREERESULT($result);
97 } else {
98         // Not called by what-list_sponsor.php
99         loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}');
100 }
101
102 // [EOF]
103 ?>