27956bc37fab19c2a7c8287bb31b4427daddd995
[mailer.git] / inc / modules / admin / what-admins_add.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/12/2004 *
4  * ================                             Last change: 04/18/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-admins_add.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Add new administrator account                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Neues Administrator-Account anlegen              *
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 ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 global $cacheInstance;
44
45 // Display form is default
46 $FORM = true;
47
48 if ((isset($_POST['add'])) && (!empty($_POST['login'])) && (!empty($_POST['email'])) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])) && ($_POST['pass1'] == $_POST['pass2']))
49 {
50         // Add admin when not added already
51         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
52          array($_POST['login']), __FILE__, __LINE__);
53         if (SQL_NUMROWS($result) == 0)
54         {
55                 // Login does not exist so we can create it.
56                 $FORM = false;
57                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins (login, password, email) VALUES ('%s', '%s', '%s')",
58                  array($_POST['login'], generateHash($_POST['pass1']), $_POST['email']), __FILE__, __LINE__);
59
60                 // Admin login saved
61                 LOAD_TEMPLATE("admin_settings_saved", false, "<FONT class=\"admin_done\">".ADMIN_ADMINS_ADD_DONE."</FONT>");
62
63                 // Remove cache file
64                 if (EXT_IS_ACTIVE("cache"))
65                 {
66                         if ($cacheInstance->cache_file("admins", true)) $cacheInstance->cache_destroy();
67                 }
68         }
69          else
70         {
71                 // Free memory
72                 SQL_FREERESULT($result);
73         }
74 }
75
76 if ($FORM)
77 {
78         // Clear unset variables
79         if (empty($_POST['login'])) $_POST['login'] = "";
80         if (empty($_POST['email'])) $_POST['email'] = "";
81
82         // Load form from template
83         LOAD_TEMPLATE("admin_admins_add");
84 }
85 //
86 ?>