delete_domain.php
changeset 13 2ff220cfde13
parent 3 64525a2eb098
child 37 b785e54690ce
--- a/delete_domain.php	Sun Apr 22 16:27:45 2007 +0000
+++ b/delete_domain.php	Mon Jun 04 18:43:11 2007 +0000
@@ -1,23 +1,5 @@
 <?php
 
-// +--------------------------------------------------------------------+
-// | PowerAdmin								|
-// +--------------------------------------------------------------------+
-// | Copyright (c) 1997-2002 The PowerAdmin Team			|
-// +--------------------------------------------------------------------+
-// | This source file is subject to the license carried by the overal	|
-// | program PowerAdmin as found on http://poweradmin.sf.net		|
-// | The PowerAdmin program falls under the QPL License:		|
-// | http://www.trolltech.com/developer/licensing/qpl.html		|
-// +--------------------------------------------------------------------+
-// | Authors: Roeland Nieuwenhuis <trancer <AT> trancer <DOT> nl>	|
-// |          Sjeemz <sjeemz <AT> sjeemz <DOT> nl>			|
-// +--------------------------------------------------------------------+
-
-//
-// $Id: delete_domain.php,v 1.6 2002/12/18 01:13:10 azurazu Exp $
-//
-
 require_once("inc/toolkit.inc.php");
 
 if (!level(5))
@@ -35,12 +17,30 @@
         }
         include_once("inc/header.inc.php");
         $info = get_domain_info_from_id($_GET["id"]);
-        ?><H2><? echo _('Delete domain'); ?> "<?= $info["name"] ?>"</H2>
-        <? echo _('Owner'); ?>: <?= $info["owner"] ?><BR>
-        <? echo _('Number of records in zone'); ?>: <?= $info["numrec"] ?><BR><BR>
-        <FONT CLASS="warning"><? echo _('Are you sure?'); ?></FONT><BR><BR>
-        <INPUT TYPE="button" CLASS="button" OnClick="location.href='<?= $_SERVER["REQUEST_URI"] ?>&confirm=1'" VALUE="<? echo _('Yes'); ?>"> <INPUT TYPE="button" CLASS="button" OnClick="location.href='<?= $_SERVER["REQUEST_URI"] ?>&confirm=0'" VALUE="<? echo _('No'); ?>">
+        ?><h2><? echo _('Delete zone'); ?> "<? echo $info["name"] ?>"</h2>
         <?
+	if($info["owner"])
+	{
+		print (_('Owner') . ": " . $info["owner"] . "<br>"); 
+	}
+	print (_('Type') . ": " . strtolower($info["type"]) . "<br>");
+	print (_('Number of records in zone') . ": " . $info["numrec"] . "<br>");
+	if($info["type"] == "SLAVE")
+	{
+		$slave_master = get_domain_slave_master($_GET["id"]);
+		if(supermaster_exists($slave_master))
+		{
+			print ("<font class=\"warning\">");
+			printf(_('You are about to delete a slave zone of which the master nameserver, %s, is a supermaster. Deleting the zone now, will result in temporary removal only. Whenever the supermaster sends a notification for this zone, it will be added again!'), $slave_master);
+			print ("</font><br>");
+		}
+	}
+	?>
+	<font class="warning"><? echo _('Are you sure?'); ?></font>
+	<br><br>
+	<input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=1'" value="<? echo _('Yes'); ?>">
+	<input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=0'" value="<? echo _('No'); ?>">
+	<?
 } elseif ($_GET["edit"]) {
         include_once("inc/header.inc.php");
 } else {