You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-11-26 11:23:04 +03:00
Finally got rid of admin/ :-)
- moved admin-only scripts from admin/ to /
- removed all merged files ("require('../$file')") from admin/
- changed include paths - no more admin/superadmin switching needed
- admin_menu.tpl is also gone
- removed all menu.tpl / admin_menu.tpl switches - no more needed
- admin/index.php still exists and redirects to /
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@168 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
69
create-admin.php
Normal file
69
create-admin.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
/**
|
||||
* Postfix Admin
|
||||
*
|
||||
* LICENSE
|
||||
* This source file is subject to the GPL license that is bundled with
|
||||
* this package in the file LICENSE.TXT.
|
||||
*
|
||||
* Further details on the project are available at :
|
||||
* http://www.postfixadmin.com or http://postfixadmin.sf.net
|
||||
*
|
||||
* @version $Id$
|
||||
* @license GNU GPL v2 or later.
|
||||
*
|
||||
* File: create-admin.php
|
||||
* Used to create new administrators.
|
||||
* Template File: admin_create-admin.tpl
|
||||
*
|
||||
*
|
||||
* Template Variables:
|
||||
*
|
||||
* tMessage
|
||||
* tUsername
|
||||
* tDomains
|
||||
*
|
||||
* Form POST \ GET Variables:
|
||||
*
|
||||
* fUsername
|
||||
* fPassword
|
||||
* fPassword2
|
||||
* fDomains
|
||||
*/
|
||||
|
||||
require_once('common.php');
|
||||
|
||||
authentication_require_role('global-admin');
|
||||
|
||||
$list_domains = list_domains ();
|
||||
$tDomains = array();
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == "GET")
|
||||
{
|
||||
$pAdminCreate_admin_username_text = $PALANG['pAdminCreate_admin_username_text'];
|
||||
$tDomains = array ();
|
||||
}
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == "POST")
|
||||
{
|
||||
if (isset ($_POST['fUsername'])) $fUsername = escape_string ($_POST['fUsername']);
|
||||
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
|
||||
if (isset ($_POST['fPassword2'])) $fPassword2 = escape_string ($_POST['fPassword2']);
|
||||
$fDomains = array();
|
||||
if (!empty ($_POST['fDomains'])) $fDomains = $_POST['fDomains'];
|
||||
|
||||
list ($error, $tMessage, $pAdminCreate_admin_username_text, $pAdminCreate_admin_password_text) = create_admin($fUsername, $fPassword, $fPassword2, $fDomains);
|
||||
|
||||
if ($error != 0) {
|
||||
if (isset ($_POST['fUsername'])) $tUsername = escape_string ($_POST['fUsername']);
|
||||
if (isset ($_POST['fDomains'])) $tDomains = $_POST['fDomains'];
|
||||
}
|
||||
}
|
||||
|
||||
include ("templates/header.tpl");
|
||||
include ("templates/menu.tpl");
|
||||
include ("templates/admin_create-admin.tpl");
|
||||
include ("templates/footer.tpl");
|
||||
|
||||
/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */
|
||||
?>
|
||||
Reference in New Issue
Block a user