More improved SQL queries
[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", __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         // Add admin when not added already
50         if (REGISTER_ADMIN($_POST['login'], generateHash($_POST['pass1']), $_POST['email']) == "done") {
51                 // Do not ouput any form!
52                 $FORM = false;
53
54                 // Admin login saved
55                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ADMINS_ADD_DONE'));
56
57                 // Run filter chain
58                 RUN_FILTER('post_admin_added', $_POST);
59         } // END - if
60 } // END - if
61
62 // Shall we display the form?
63 if ($FORM === true) {
64         // Set missing elements
65         // @TODO Do we need this ugly code here?
66         if (!isset($_POST['login'])) $_POST['login'] = "";
67         if (!isset($_POST['email'])) $_POST['email'] = "";
68
69         // Load form from template
70         LOAD_TEMPLATE("admin_admins_add");
71 } // END - if
72
73 //
74 ?>