delete_supermaster.php
author peter
Wed, 12 Mar 2008 19:47:25 +0000
changeset 80 48b5f7021aaa
parent 79 0c0aa144356a
child 82 c255196bc447
permissions -rw-r--r--
[feladat @ 158] Bugfix for ticket:18: Minor modification in the CSS to make sure no data is displayed on top of other data. Also a little modification to make sure the sub-owners (if there are any) are displayed above the record form, instead of next to it.

<?php

/*  PowerAdmin, a friendly web-based admin tool for PowerDNS.
 *  See <https://rejo.zenger.nl/poweradmin> for more details.
 *
 *  Copyright 2007, 2008  Rejo Zenger <rejo@zenger.nl>
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

require_once("inc/toolkit.inc.php");

if (!level(5))
{
        error(ERR_LEVEL_5);
        
}

if (isset($_GET["master_ip"])) {
        if ((isset($_GET['confirm'])) && ($_GET["confirm"] == '0')) {
                clean_page("index.php");
        } elseif ((isset($_GET["confirm"])) && ($_GET['confirm'] == '1')) {
                delete_supermaster($_GET["master_ip"]);
                clean_page("index.php");
        }
        include_once("inc/header.inc.php");
	$info = get_supermaster_info_from_ip($_GET["master_ip"]);
        ?>
	<h2><?php echo _('Delete supermaster'); ?> "<?php echo $_GET["master_ip"] ?>"</h2>
	<?php echo _('Hostname in NS record'); ?>: <?php echo $info["ns_name"] ?><br>
	<?php echo _('Account'); ?>: <?php echo $info["account"] ?><br><br>
        <font class="warning"><?php echo _('Are you sure?'); ?></font><br><br>
        <input type="button" class="button" OnClick="location.href='<?php echo $_SERVER["REQUEST_URI"] ?>&confirm=1'" value="<?php echo _('Yes'); ?>"> 
	<input type="button" class="button" OnClick="location.href='<?php echo $_SERVER["REQUEST_URI"] ?>&confirm=0'" value="<?php echo _('No'); ?>">
        <?php
} else {
        include_once("inc/header.inc.php");
        echo _('Nothing to do!');
}
include_once("inc/footer.inc.php");