list_zones.php
author rejo
Mon, 25 Jun 2007 20:57:22 +0000
changeset 25 576034a80ea8
parent 20 76e20b9d45e6
child 26 5d63f1e71d6e
permissions -rw-r--r--
[feladat @ 72] After a user had logged out, the menu bar was still shown until a reloading the login screen. [Fix: Peter Beernink]

<?php
require_once("inc/i18n.inc.php");
require_once("inc/toolkit.inc.php");
include_once("inc/header.inc.php");

$all_doms = get_domains(0);
$num_all_domains = ($all_doms == -1) ? 0 : count($all_doms);
$doms = get_domains(0,LETTERSTART);
?>
   <h2><? echo _('List zones'); ?></h2>
<?
	echo "<div class=\"showmax\">";
	show_pages(count($doms),ROWAMOUNT);
	echo "</div>";

if ($num_all_domains > ROWAMOUNT) 
{
	echo "<div class=\"showmax\">";
	show_letters(LETTERSTART,$all_doms);
	echo "</div>";
}
?>
   <table>
    <tr>
     <th>&nbsp;</th>
     <th><? echo _('Name'); ?></th>
     <th><? echo _('Type'); ?></th>
     <th><? echo _('Records'); ?></th>
     <th><? echo _('Owner'); ?></th>
    </tr>
    <tr>

<?
if ($num_all_domains < ROWAMOUNT) {
   $doms = get_domains(0,"all",ROWSTART,ROWAMOUNT);
} else {
   $doms = get_domains(0,LETTERSTART,ROWSTART,ROWAMOUNT);
   $num_show_domains = count($doms);
}

// If the user doesnt have any domains print a message saying so
if ($doms < 0)
{
	?>
    <tr>
     <td>&nbsp;</td>
     <td colspan="4"><? echo _('There are no zones.'); ?></td>
    </tr>
<?
}

// If he has domains, dump them (duh)
else
{
	foreach ($doms as $c)
	{
		?>
		
    <tr>
<?
if (level(5))
{
?>
     <td>
      <a href="edit.php?id=<? echo $c["id"] ?>"><img src="images/edit.gif" title="<? echo _('Edit zone') . " " . $c['name']; ?>" alt="[ <? echo _('Edit zone') . " " . $c['name']; ?> ]"></a>
      <a href="delete_domain.php?id=<? echo $c["id"] ?>"><img src="images/delete.gif" title="<? print _('Delete zone') . " " . $c['name']; ?>" alt="[<? echo _('Delete zone') . " " . $c['name']; ?>]"></a>
     </td>
<?
}
else
{
?>
     <td class="n">
      &nbsp;
     </td>
<?
}
?>
     <td class="y"><? echo $c["name"] ?></td>
     <td class="y"><? echo strtolower(get_domain_type( $c["id"])) ?></td>
     <td class="y"><? echo $c["numrec"] ?></td>
     <td class="y"><? echo get_owner_from_id($c["owner"]) ?></td>
    </tr><?
		print "\n";
	}
}

?>
   </table>

<?
if ($num_all_domains < ROWAMOUNT) {
?>
   <p><? printf(_('This lists shows all %s zones(s) you have access to.'), $num_all_domains); ?></p>
<?
}
else
{
?>
   <p><? printf(_('This lists shows %s out of %s zones you have access to.'), $num_show_domains, $num_all_domains); ?></p>
<?
}
?>


<? // RZ TODO Check next, does it work? 
//  <small> echo _('You only administer some records of domains marked with an (*).'); </small>
?>

<?
include_once("inc/footer.inc.php");
?>