1
+ − 1
<?php
47
+ − 2
+ − 3
/* PowerAdmin, a friendly web-based admin tool for PowerDNS.
+ − 4
* See <https://rejo.zenger.nl/poweradmin> for more details.
+ − 5
*
+ − 6
* Copyright 2007, 2008 Rejo Zenger <rejo@zenger.nl>
+ − 7
*
+ − 8
* This program is free software: you can redistribute it and/or modify
+ − 9
* it under the terms of the GNU General Public License as published by
+ − 10
* the Free Software Foundation, either version 3 of the License, or
+ − 11
* (at your option) any later version.
+ − 12
*
+ − 13
* This program is distributed in the hope that it will be useful,
+ − 14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
+ − 15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ − 16
* GNU General Public License for more details.
+ − 17
*
+ − 18
* You should have received a copy of the GNU General Public License
+ − 19
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ − 20
*/
+ − 21
1
+ − 22
session_start ();
+ − 23
require_once ( "inc/toolkit.inc.php" );
+ − 24
include_once ( "inc/header.inc.php" );
+ − 25
?>
13
+ − 26
<h3> <? echo _ ( 'Welcome' ); ?> , <? echo $_SESSION [ "name" ] ?> </h3>
+ − 27
<ul>
+ − 28
<li><a href="search.php"> <? echo _ ( 'Search zones or records' ); ?> </a></li>
+ − 29
<li><a href="list_zones.php"> <? echo _ ( 'List all zones' ); ?> </a></li>
+ − 30
<?
+ − 31
if ( level ( 5 ))
+ − 32
{
+ − 33
?>
+ − 34
<li><a href="list_supermasters.php"> <? echo _ ( 'List all supermasters' ); ?> </a></li>
+ − 35
<li><a href="add_zone_master.php"> <? echo _ ( 'Add master zone' ); ?> </a></li>
+ − 36
<li><a href="add_zone_slave.php"> <? echo _ ( 'Add slave zone' ); ?> </a></li>
+ − 37
<li><a href="add_supermaster.php"> <? echo _ ( 'Add supermaster' ); ?> </a></li>
+ − 38
<?
+ − 39
}
+ − 40
?>
+ − 41
<li><a href="change_password.php"> <? echo _ ( 'Change password' ); ?> </a></li>
1
+ − 42
<?
+ − 43
if ( level ( 10 ))
+ − 44
{
+ − 45
?>
13
+ − 46
<li><a href="users.php"> <? echo _ ( 'User administration' ); ?> </a></li>
1
+ − 47
<?
+ − 48
}
+ − 49
?>
13
+ − 50
<li><a href="index.php?logout"> <? echo _ ( 'Logout' ); ?> </a></li>
+ − 51
</ul>
1
+ − 52
+ − 53
<?
+ − 54
include_once ( "inc/footer.inc.php" );
+ − 55
?>