Found some older words, all now Mailer
[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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isGetRequestElementSet('id')) {
48         // Check for selected sponsor
49         $result = SQL_QUERY_ESC("SELECT email, gender, surname, family FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
50                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
51         if (SQL_NUMROWS($result) == 1) {
52                 // Remove sponsor
53                 if (isFormSent()) {
54                         // Load data and remember it in constants
55                         $content = SQL_FETCHARRAY($result);
56
57                         // Prepare data for the template
58                         $content['gender']  = translateGender($content['gender']);
59                         $content['reason']  = secureString(postRequestElement('reason'));
60
61                         // Prepare message and send it away
62                         $message = loadEmailTemplate('del_sponsor', $content, bigintval(getRequestElement('id')));
63                         sendEmail($content['email'], getMessage('ADMIN_SPONSOR_DEL_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(getRequestElement('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(getRequestElement('id'))), __FILE__, __LINE__);
72
73                         // Output message
74                         loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_DELETED'), bigintval(getRequestElement('id'))));
75                 } elseif (isPostRequestElementSet('no')) {
76                         // Do not delete him...
77                         redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id='.bigintval(getRequestElement('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(getRequestElement('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, sprintf(getMessage('ADMIN_SPONSOR_404'), bigintval(getRequestElement('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, getMessage('ADMIN_CALL_NOT_DIRECTLY'));
99 }
100
101 // [EOF]
102 ?>