Obsoleted parameters to SQL_AFFECTED_ROWS() removed, OPEN_TABLE() and CLOSE_TABLE...
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Display only title when no form was submitted
42 ADD_DESCR("admin", basename(__FILE__));
43
44 // User exists..
45 if ((isset($_POST['ok'])) || ((isset($_POST['del'])) && (!empty($_POST['reason'])))) {
46         // Delete users account
47         $result_user = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
48          array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
49         if (SQL_NUMROWS($result_user) == 1) {
50                 // Free memory
51                 SQL_FREERESULT($result);
52
53                 // Delete user account
54                 DELETE_USER_ACCOUNT(bigintval($_GET['u_id']), $_POST['reason']);
55                 OUTPUT_HTML("<STRONG class=\"admin_green\">".ADMIN_DEL_COMPLETED."</STRONG>");
56         } else {
57                 // Account does not exists!
58                 OUTPUT_HTML("<STRONG class=\"admin_failed\">".ADMIN_MEMBER_404_1.$_GET['u_id'].ADMIN_MEMBER_404_2."</STRONG>");
59         }
60 } elseif (!empty($_POST['no'])) {
61         // Do not delete him...
62         LOAD_URL("modules.php?module=admin&amp;what=list_user&amp;u_id=".$_GET['u_id']);
63 } elseif (empty($_GET['u_id'])) {
64         // Output selection form with all confirmed user accounts listed
65         ADD_MEMBER_SELECTION_BOX();
66 } else {
67         // Realy want to delete?
68         $result = SQL_QUERY_ESC("SELECT email, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
69          array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
70         if (SQL_NUMROWS($result) == 1) {
71                 // Load data
72                 list ($email, $sname, $fname) = SQL_FETCHROW($result);
73                 SQL_FREERESULT($result);
74
75                 // Transfer data to constants for the template
76                 define('__EMAIL', CREATE_EMAIL_LINK($email, "user_data"));
77                 define('__SNAME', $sname);
78                 define('__FNAME', $fname);
79                 define('__UID'  , $_GET['u_id']);
80
81                 // Display form
82                 LOAD_TEMPLATE("admin_del_user");
83         } else {
84                 // Account does not exists!
85                 OUTPUT_HTML("<STRONG class=\"admin_failed\">".ADMIN_MEMBER_404_1.$_GET['u_id'].ADMIN_MEMBER_404_2."</STRONG>");
86         }
87 }
88
89 //
90 ?>