delete_supermaster.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:
13
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     1
<?php
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     2
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     3
require_once("inc/toolkit.inc.php");
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     4
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     5
if (!level(5))
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     6
{
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     7
        error(ERR_LEVEL_5);
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     8
        
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
     9
}
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    10
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    11
if ($_GET["master_ip"]) {
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    12
        if ($_GET["confirm"] == '0') {
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    13
                clean_page("index.php");
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    14
        } elseif ($_GET["confirm"] == '1') {
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    15
                delete_supermaster($_GET["master_ip"]);
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    16
                clean_page("index.php");
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    17
        }
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    18
        include_once("inc/header.inc.php");
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    19
	$info = get_supermaster_info_from_ip($_GET["master_ip"]);
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    20
        ?>
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    21
	<h2><? echo _('Delete supermaster'); ?> "<? echo $_GET["master_ip"] ?>"</h2>
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    22
	<? echo _('Hostname in NS record'); ?>: <? echo $info["ns_name"] ?><br>
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    23
	<? echo _('Account'); ?>: <? echo $info["account"] ?><br><br>
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    24
        <font class="warning"><? echo _('Are you sure?'); ?></font><br><br>
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    25
        <input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=1'" value="<? echo _('Yes'); ?>"> 
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    26
	<input type="button" class="button" OnClick="location.href='<? echo $_SERVER["REQUEST_URI"] ?>&confirm=0'" value="<? echo _('No'); ?>">
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    27
        <?
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    28
} else {
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    29
        include_once("inc/header.inc.php");
37
b785e54690ce [feladat @ 84]
rejo
parents: 13
diff changeset
    30
        echo _("Nothing to do!");
13
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    31
}
2ff220cfde13 [feladat @ 60]
rejo
parents:
diff changeset
    32
include_once("inc/footer.inc.php");