RevBomb patch applied (thanks to profi-concept)
[mailer.git] / inc / modules / admin / what-del_user.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 06/10/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-del_user.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Delete members                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mitglieder loeschen                              *
12  * -------------------------------------------------------------------- *
13  * $Revision:: 856                                                    $ *
14  * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: stelzi                                                   $ *
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 - 2008 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')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 }
44
45 // Display only title when no form was submitted
46 ADD_DESCR("admin", __FILE__);
47
48 // User exists..
49 if ((IS_FORM_SENT()) || ((REQUEST_ISSET_POST('del')) && (REQUEST_ISSET_POST(('reason'))))) {
50         // Delete users account
51         $result_user = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
52                 array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
53         if (SQL_NUMROWS($result_user) == 1) {
54                 // Free memory
55                 SQL_FREERESULT($result_user);
56
57                 // Delete user account
58                 DELETE_USER_ACCOUNT(REQUEST_GET('uid'), REQUEST_POST('reason'));
59
60                 // Output message
61                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_DEL_COMPLETED'));
62         } else {
63                 // Account does not exists!
64                 LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
65         }
66 } elseif (REQUEST_ISSET_POST(('no'))) {
67         // Do not delete him...
68         LOAD_URL("modules.php?module=admin&amp;what=list_user&amp;uid=".REQUEST_GET('uid'));
69 } elseif (!REQUEST_ISSET_GET(('uid'))) {
70         // Output selection form with all confirmed user accounts listed
71         ADD_MEMBER_SELECTION_BOX();
72 } else {
73         // Realy want to delete?
74         $result = SQL_QUERY_ESC("SELECT email, surname, family FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
75                 array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
76         if (SQL_NUMROWS($result) == 1) {
77                 // Load data
78                 list ($email, $sname, $fname) = SQL_FETCHROW($result);
79                 SQL_FREERESULT($result);
80
81                 // Transfer data to constants for the template
82                 define('__EMAIL', CREATE_EMAIL_LINK($email, "user_data"));
83                 define('__SNAME', $sname);
84                 define('__FNAME', $fname);
85                 define('__UID'  , REQUEST_GET('uid'));
86
87                 // Display form
88                 LOAD_TEMPLATE("admin_del_user");
89         } else {
90                 // Account does not exists!
91                 LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
92         }
93 }
94
95 //
96 ?>