You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.1 KiB
PHTML
83 lines
2.1 KiB
PHTML
18 years ago
|
<?php
|
||
|
//
|
||
|
// Postfix Admin
|
||
|
// by Mischa Peters <mischa at high5 dot net>
|
||
|
// Copyright (c) 2002 - 2005 High5!
|
||
|
// Licensed under GPL for more info check GPL-LICENSE.TXT
|
||
|
//
|
||
|
// File: list-domain.php
|
||
|
//
|
||
|
// Template File: admin_list-domain.tpl
|
||
|
//
|
||
|
// Template Variables:
|
||
|
//
|
||
|
// -none-
|
||
|
//
|
||
|
// Form POST \ GET Variables:
|
||
|
//
|
||
|
// fUsername
|
||
|
//
|
||
|
require ("../variables.inc.php");
|
||
|
require ("../config.inc.php");
|
||
|
require ("../functions.inc.php");
|
||
|
include ("../languages/" . check_language () . ".lang");
|
||
|
|
||
|
$SESSID_USERNAME = check_session ();
|
||
|
(!check_admin($SESSID_USERNAME) ? header("Location: " . $CONF['postfix_admin_url'] . "/main.php") && exit : '1');
|
||
|
|
||
|
$list_admins = list_admins ();
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "GET")
|
||
|
{
|
||
|
if (isset ($_GET['username']))
|
||
|
{
|
||
|
$fUsername = escape_string ($_GET['username']);
|
||
|
|
||
|
$list_domains = list_domains_for_admin ($fUsername);
|
||
|
if ($list_domains != 0)
|
||
|
{
|
||
|
for ($i = 0; $i < sizeof ($list_domains); $i++)
|
||
|
{
|
||
|
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$list_domains = list_domains ();
|
||
|
if ((is_array ($list_domains) and sizeof ($list_domains) > 0))
|
||
|
for ($i = 0; $i < sizeof ($list_domains); $i++)
|
||
|
{
|
||
|
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include ("../templates/header.tpl");
|
||
|
include ("../templates/admin_menu.tpl");
|
||
|
include ("../templates/admin_list-domain.tpl");
|
||
|
include ("../templates/footer.tpl");
|
||
|
}
|
||
|
|
||
|
if ($_SERVER['REQUEST_METHOD'] == "POST")
|
||
|
{
|
||
|
if (isset ($_POST['fUsername']))
|
||
|
{
|
||
|
$fUsername = escape_string ($_POST['fUsername']);
|
||
|
$list_domains = list_domains_for_admin ($fUsername);
|
||
|
}
|
||
|
|
||
|
if (!empty ($list_domains))
|
||
|
{
|
||
|
for ($i = 0; $i < sizeof ($list_domains); $i++)
|
||
|
{
|
||
|
$domain_properties[$i] = get_domain_properties ($list_domains[$i]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include ("../templates/header.tpl");
|
||
|
include ("../templates/admin_menu.tpl");
|
||
|
include ("../templates/admin_list-domain.tpl");
|
||
|
include ("../templates/footer.tpl");
|
||
|
}
|
||
|
?>
|