Duplicate message id GUEST_GENDER removed, column type TIMESTAMP in ext-sponsor,
[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 `id`, `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['reason']  = secureString(postRequestParameter('reason'));
60
61                         // Prepare message and send it away
62                         $message = loadEmailTemplate('del_sponsor', $content, bigintval(getRequestParameter('id')));
63                         sendEmail($content['email'], '{--ADMIN_SPONSOR_DELETE_SUBJECT--}', $message);
64
65                         // Remove account
66                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
67                                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
68
69                         // Remove orders
70                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_orders` WHERE `sponsor_id`='%s' LIMIT 1",
71                                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
72
73                         // Output message
74                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_DELETED', bigintval(getRequestParameter('id'))));
75                 } elseif (isPostRequestParameterSet('no')) {
76                         // Do not delete him...
77                         redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id='.bigintval(getRequestParameter('id')));
78                 } else {
79                         // Load data
80                         $content = SQL_FETCHARRAY($result);
81
82                         // Transfer data to constants for the template
83                         $content['gender'] = translateGender($content['gender']);
84                         $content['userid'] = bigintval(getRequestParameter('id'));
85
86                         // Display form
87                         loadTemplate('admin_del_sponsor', false, $content);
88                 }
89         } else {
90                 // Sponsor not found!
91                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id'))));
92         }
93
94         // Free result
95         SQL_FREERESULT($result);
96 } else {
97         // Not called by what-list_sponsor.php
98         loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}');
99 }
100
101 // [EOF]
102 ?>