Even more rewritten
[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::                                                        $ *
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 - 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(ADMIN_CREATE_USERID_LINK(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                 // Prepare content
82                 $content = array(
83                         'email'   => CREATE_EMAIL_LINK($email, "user_data"),
84                         'surname' => $sname,
85                         'family'  => $fname,
86                         'header'  => sprintf(getMessage('ADMIN_HEADER_DEL_ACCOUNT'), REQUEST_GET('uid')),
87                         'text'    => sprintf(getMessage('ADMIN_TEXT_DEL_ACCOUNT'), REQUEST_GET('uid'))
88                 );
89
90                 // Display form
91                 LOAD_TEMPLATE("admin_del_user", false, $content);
92         } else {
93                 // Account does not exists!
94                 LOAD_TEMPLATE('admin_settings_saved', false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
95         }
96 }
97
98 //
99 ?>