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.
87 lines
2.1 KiB
PHP
87 lines
2.1 KiB
PHP
<?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: list-domain.php
|
|
* List all domains as a quick overview.
|
|
* Template File: admin_list-domain.tpl
|
|
*
|
|
* Template Variables:
|
|
*
|
|
* -none-
|
|
*
|
|
* Form POST \ GET Variables:
|
|
*
|
|
* fUsername
|
|
*/
|
|
|
|
require_once('../common.php');
|
|
|
|
authentication_require_role('global-admin');
|
|
|
|
$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");
|
|
}
|
|
?>
|