1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004 Ian Berry |
| |
| 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 2 |
| 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. |
+-------------------------------------------------------------------------+
| cacti: a php-based graphing solution |
+-------------------------------------------------------------------------+
| Most of this code has been designed, written and is maintained by |
| Ian Berry. See about.php for specific developer credit. Any questions |
| or comments regarding this code should be directed to: |
| - iberry@raxnet.net |
+-------------------------------------------------------------------------+
| - raXnet - http://www.raxnet.net/ |
+-------------------------------------------------------------------------+
*/
global $colors;
?>
<html>
<head>
<title>cacti</title>
<link href="include/main.css" rel="stylesheet">
<script type="text/javascript" src="include/layout.js"></script>
<?php if (isset($refresh)) {
print "<meta http-equiv=refresh content=\"" . $refresh["seconds"] . "; url='" . $refresh["page"] . "'\">";
}?>
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/left_border.gif">
<table width="100%" cellspacing="0" cellpadding="0">
<tr height="37" bgcolor="#a9a9a9">
<td valign="bottom" colspan="3" nowrap>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td valign="bottom">
<a href="index.php"><img src="images/tab_console.gif" alt="Console" align="absmiddle" border="0"></a><a href="graph_view.php"><img src="images/tab_graphs.gif" alt="Graphs" align="absmiddle" border="0"></a>
</td>
<td align="right">
<img src="images/cacti_backdrop.gif" align="absmiddle">
</td>
</tr>
</table>
</td>
</tr>
<tr height="2" bgcolor="#183c8f">
<td colspan="3">
<img src="images/transparent_line.gif" width="170" height="2" border="0"><br>
</td>
</tr>
<tr height="5" bgcolor="#e9e9e9">
<td colspan="3">
<table width="100%">
<tr>
<td>
<?php draw_navigation_text();?>
</td>
<td align="right">
<?php if (read_config_option("global_auth") == "on") { ?>
Logged in as <strong><?php print db_fetch_cell("select username from user_auth where id=" . $_SESSION["sess_user_id"]);?></strong> (<a href="logout.php">Logout</a>)
<?php } ?>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#f5f5f5" colspan="1" height="8" width="135" style="background-image: url(images/shadow_gray.gif); background-repeat: repeat-x; border-right: #aaaaaa 1px solid;">
<img src="images/transparent_line.gif" width="135" height="2" border="0"><br>
</td>
<td colspan="2" height="8" style="background-image: url(images/shadow.gif); background-repeat: repeat-x;" bgcolor="#ffffff">
</td>
</tr>
<tr height="5">
<td valign="top" rowspan="2" width="135" style="padding: 5px; border-right: #aaaaaa 1px solid;" bgcolor='#f5f5f5'>
<table bgcolor="#f5f5f5" width="100%" cellpadding="1" cellspacing="0" border="0">
<?php draw_menu();?>
</table>
<img src="images/transparent_line.gif" width="135" height="5" border="0"><br>
<p align="center"><a href='about.php'><img src="images/cacti_logo.gif" border="0"></a></p>
<img src="images/transparent_line.gif" width="135" height="5" border="0"><br>
</td>
<td></td>
</tr>
<tr>
<td width="135" height="500"></td>
<td width="100%" valign="top"><?php display_output_messages();?>
|