delete_domain.php
author rejo
Tue, 10 Jul 2007 21:24:06 +0000
changeset 37 b785e54690ce
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 84] Bugfix. The function zone_count() now also counts zones an owner has only partial access to, not just those zones the owner has full access to. This fixes just the count, the zones a user has partial access to are not (yet!) shown in the "list zones" page. Bugfix. In the zone listing the "edit" button is now show for users with access level 1. Untill now they were presented an overview of the zones they could change, but there was no link for them to actually edit the zone. Bugfix. Some of the buttons in the "edit zone" interface that are of no use to a user with access level 1 have been hidden. Bugfix. Make sure a user with access level 1 with only partial access to a zone cannot add new records to that zone. Only the zone owner should be able to add new record. Bugfix. If a user with access level 1 edits a record in a zone he has only partial access to, an error was shown because of call to a non- existing function in the PEAR:MDB2. This bug was most likely introduced while migrating from PEAR:DB to PEAR:MDB2. Bugfix. A user with access level 1 was able to delete all records of a zone he has only partial access to. Some additional checks have been added. Bugfix. If a user with accees level 1 has partial access to one or more zones starting with a certain character, but did not own at least one entire zone starting with the same character, the character wasn't clickable in the "list zone" page. Interface. If no record or zone id is given for delete_record.php or delete_domain.php, don't just die but echo a nice message. The i18n files have not yet been updated to reflect this change. Interface. If no master IP is given in delete_supermaster.php, don't just die but echo a nice message. The i18n files have not yet been updated to reflect this change. [All fixes by Peter Beernink.]
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     1
<?php
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     2
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     3
require_once("inc/toolkit.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     4
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     5
if (!level(5))
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     6
{
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     7
        error(ERR_LEVEL_5);
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     8
        
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     9
}
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    10
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    11
if ($_GET["id"]) {
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    12
        if ($_GET["confirm"] == '0') {
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    13
                clean_page("index.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    14
        } elseif ($_GET["confirm"] == '1') {
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    15
                delete_domain($_GET["id"]);
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    16
                clean_page("index.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    17
        }
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    18
        include_once("inc/header.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    19
        $info = get_domain_info_from_id($_GET["id"]);
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    20
        ?><h2><? echo _('Delete zone'); ?> "<? echo $info["name"] ?>"</h2>
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    21
        <?
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    22
	if($info["owner"])
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    23
	{
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    24
		print (_('Owner') . ": " . $info["owner"] . "<br>"); 
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    25
	}
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    26
	print (_('Type') . ": " . strtolower($info["type"]) . "<br>");
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    27
	print (_('Number of records in zone') . ": " . $info["numrec"] . "<br>");
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    28
	if($info["type"] == "SLAVE")
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    29
	{
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    30
		$slave_master = get_domain_slave_master($_GET["id"]);
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    31
		if(supermaster_exists($slave_master))
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    32
		{
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    33
			print ("<font class=\"warning\">");
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    34
			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);
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    35
			print ("</font><br>");
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    36
		}
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    37
	}
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    38
	?>
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    39
	<font class="warning"><? echo _('Are you sure?'); ?></font>
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    40
	<br><br>
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    41
	<input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=1'" value="<? echo _('Yes'); ?>">
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    42
	<input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=0'" value="<? echo _('No'); ?>">
2ff220cfde13 [feladat @ 60]
rejo
parents: 3
diff changeset
    43
	<?
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    44
} elseif ($_GET["edit"]) {
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    45
        include_once("inc/header.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    46
} else {
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    47
        include_once("inc/header.inc.php");
37
b785e54690ce [feladat @ 84]
rejo
parents: 13
diff changeset
    48
        echo _("Nothing to do!");
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    49
}
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    50
include_once("inc/footer.inc.php");