Вы находитесь на странице: 1из 3

<?

php
/*
ex: set tabstop=4 shiftwidth=4 autoindent:
+-------------------------------------------------------------------------+
| Copyright (C) 2006 Platform Computing, Inc.
|
| Portions Copyright (C) 2004-2006 The Cacti Group
|
|
|
| This program is free software; you can redistribute it and/or
|
| modify it under the terms of the GNU Lesser General Public
|
| License as published by the Free Software Foundation; either
|
| version 2.1 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 Lesser General Public License for more details.
|
|
|
| You should have received a copy of the GNU Lesser General Public
|
| License along with this library; if not, write to the Free Software
|
| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
| 02110-1301, USA
|
+-------------------------------------------------------------------------+
| - Platform - http://www.platform.com/
|
| - Cacti - http://www.cacti.net/
|
+-------------------------------------------------------------------------+
*/
global $colors, $config;
$using_guest_account = false;
$show_console_tab = true;
$oper_mode = api_plugin_hook_function('general_header', OPER_MODE_NATIVE);
if ($oper_mode != OPER_MODE_RESKIN) {
if (read_config_option("auth_method") != 0) {
global $colors, $config;
/* at this point this user is good to go... so get some setting about th
is
user and put them into variables to save excess SQL in the future */
$current_user = db_fetch_row("select * from user_auth where id=" . $_SES
SION["sess_user_id"]);
/* find out if we are logged in as a 'guest user' or not */
if (db_fetch_cell("select id from user_auth where username='" . read_con
fig_option("guest_user") . "'") == $_SESSION["sess_user_id"]) {
$using_guest_account = true;
}
/* find out if we should show the "console" tab or not, based on this us
er's permissions */
$console_access = api_plugin_hook_function('auth_console_authorized', db
_fetch_cell("SELECT realm_id FROM user_auth_realm WHERE realm_id=8 AND user_id="
. $_SESSION["sess_user_id"]));
if (empty($console_access)) {
$show_console_tab = false;
}
}

?>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php print (isset($title) ? $title : "Network Discovery");?></ti
tle>
<link href="<?php echo $config['url_path'];?>include/main.css" rel="styl
esheet">
<link href="<?php echo $config['url_path'];?>images/favicon.ico" rel="sh
ortcut icon"/>
<script type="text/javascript" src="<?php echo $config['url_path']; ?>in
clude/layout.js"></script>
<script type="text/javascript" src="<?php echo $config['url_path']; ?>in
clude/jscalendar/calendar.js"></script>
<script type="text/javascript" src="<?php echo $config['url_path']; ?>in
clude/jscalendar/lang/calendar-en.js"></script>
<script type="text/javascript" src="<?php echo $config['url_path']; ?>in
clude/jscalendar/calendar-setup.js"></script>
<?php if (isset($refresh)) {
print "<meta http-equiv=refresh content='" . $refresh["seconds"] . "'; u
rl='" . $refresh["page"] . "'>";
}
api_plugin_hook('page_head'); ?>
</head>
<?php if ($oper_mode == OPER_MODE_NATIVE) {?>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" <?php print
api_plugin_hook_function("body_style", "");?>>
<a name='page_top'></a>
<?php }else{?>
<body leftmargin="15" topmargin="15" marginwidth="15" marginheight="15" <?php pr
int api_plugin_hook_function("body_style", "");?>>
<script language="JavaScript" type="text/javascript" src="<?php print $config['u
rl_path'] . 'plugins/grid/wz_tooltip.js';?>"></script>
<a name='page_top'></a>
<?php }?>
<table width="100%" cellspacing="0" cellpadding="0">
<?php if ($oper_mode == OPER_MODE_NATIVE) { ;?>
<tr height="37" bgcolor="#a9a9a9" class="noprint">
<td valign="bottom" colspan="3" nowrap>
<table width="100%" cellspacing="0" cellpadding="0">
<tr style="background: transparent url('<?php pr
int $config['url_path'];?>images/cacti_backdrop2.gif') no-repeat center right;">
<td id="tabs" valign="bottom" nowrap>
&nbsp;<?php if ($show_console_ta
b == true) {?><a href="<?php echo $config['url_path']; ?>index.php"><img src="<?
php echo $config['url_path']; ?>images/tab_console.gif" alt="Console" align="abs
middle" border="0"></a><?php
}?><a href="<?php echo
$config['url_path']; ?>graph_view.php"><img src="<?php echo $config['url_path'];
?>images/tab_graphs.gif" alt="Graphs" align="absmiddle" border="0"></a><?php
api_plugin_hook("top_graph_header_tabs")
;
?>
</td>
</tr>
</table>
</td>
</tr>

<tr height="2" bgcolor="#183c8f" class="noprint">


<td colspan="3">
<img src="<?php echo $config['url_path']; ?>images/trans
parent_line.gif" width="170" height="2" border="0"><br>
</td>
</tr>
<tr height="5" bgcolor="#e9e9e9" class="noprint">
<td colspan="3">
<table width="100%">
<tr>
<td>
<?php echo draw_navigation_text(
);?>
</td>
<td align="right">
<?php if ((isset($_SESSION["sess
_user_id"])) && ($using_guest_account == false)) { ?>
Logged in as <strong><?php print
db_fetch_cell("select username from user_auth where id=" . $_SESSION["sess_user
_id"]);?></strong> (<a href="<?php echo $config['url_path']; ?>logout.php">Logou
t</a>)&nbsp;
<?php } ?>
</td>
</tr>
</table>
</td>
</tr>
<tr class="noprint">
<td colspan="2" height="8" style="background-image: url(<?php ec
ho $config['url_path']; ?>images/shadow.gif); background-repeat: repeat-x;" bgco
lor="#ffffff">
</td>
</tr>
<tr>
<td width="100%" colspan="2" valign="top" style="padding: 5px; b
order-right: #aaaaaa 1px solid;"><?php display_output_messages();?>
<?php }else{ ?>
<tr>
<td width="100%" valign="top"><?php display_output_messages();?>
<?php } } ?>

Вам также может понравиться