list_supermasters.php
author rejo
Wed, 27 Jun 2007 20:45:51 +0000
changeset 29 e1c60f72d494
parent 15 305cee3b388d
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 76] Changed some of the functions that are used for the listing of (all) zones. Instead of getting all zones from the database, it now only requests exactlty what it needs. Considerable perfomance improvement.

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

if (!level(5))
{
?>
     <h3><? echo _('Oops!'); ?></h3>
     <p><? echo _('You are not allowed to add supermasters with your current access level!'); ?></p>
<?
} 
else
{

	$supermasters = get_supermasters(0);
	$num_supermasters = ($supermasters == -1) ? 0 : count($supermasters);
	?>

	   <h3><? printf(_('List all %s supermasters'), $num_supermasters); ?></h3>
	   <table>
	    <tr>
	     <th>&nbsp;</td>
	     <th><? echo _('IP address of supermaster'); ?></td>
	     <th><? echo _('Hostname in NS record'); ?></td>
	     <th><? echo _('Account'); ?></td>
	    </tr>
	<?
	   if ($num_supermasters == 0)
	   {
	?>
	    <tr>
	     <td class="n">&nbsp;</td>
	     <td class="n" colspan="3">
	      <? echo _('No supermasters in this listing, sorry.'); ?>
	     </td>
	    </tr>
	<?
	   }
	   else
	   {
		   foreach ($supermasters as $c)
		   {
	?>
	    <tr>
	     <td class="n">
	      <a href="delete_supermaster.php?master_ip=<? echo $c["master_ip"] ?>"><img src="images/delete.gif" title="<? print _('Delete supermaster') . ' ' . $c["master_ip"]; ?>" alt="[ <? echo _('Delete supermaster'); ?> ]"></a>
	     </td>
	     <td class="y"><? echo $c["master_ip"] ?></td>
	     <td class="y"><? echo $c["ns_name"] ?></td>
	     <td class="y"><? echo $c["account"] ?></td>
	    </tr>
	<?
		   }
	   }
	?>
	   </table>
<?
}

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