2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
2008-08-22 20:07:32 +02:00
|
|
|
|
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
|
|
// ============================================
|
|
|
|
// Copyright (c) 2008 Artica Soluciones Tecnologicas, http://www.artica.es
|
2007-08-08 20:36:18 +02:00
|
|
|
// Please see http://pandora.sourceforge.net for full contribution list
|
2007-03-02 18:56:07 +01:00
|
|
|
|
2006-12-24 23:40:09 +01:00
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
2007-08-08 20:36:18 +02:00
|
|
|
// as published by the Free Software Foundation for version 2.
|
2006-12-24 23:40:09 +01:00
|
|
|
// 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
//First column (logo)
|
|
|
|
echo '<table width="100%" cellpadding="0" cellspacing="0" style="margin:0px; padding:0px;" border="0"><tr><td>';
|
2008-04-03 17:43:34 +02:00
|
|
|
|
2008-09-02 18:08:11 +02:00
|
|
|
// Yes, put here your corporate logo instead pandora_logo_head.png
|
2008-09-24 16:34:52 +02:00
|
|
|
// The style specifies width and height so that oversized images get resized.
|
|
|
|
// Optimally your logo would be this size.
|
|
|
|
echo '<a href="index.php"><img src="images/pandora_logo_head.png" alt="logo" style="border-width:0px width:140px; height:60px;" /></a>';
|
2008-09-02 18:08:11 +02:00
|
|
|
|
|
|
|
// Margin to logo
|
2008-09-24 16:34:52 +02:00
|
|
|
echo '</td><td width="20"> </td>';
|
2008-09-02 18:08:11 +02:00
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
// First column (identifier)
|
|
|
|
echo '<td><img src="images/user_'.((dame_admin ($_SESSION["id_usuario"]) == 1) ? 'suit' : 'green' ).'.png" class="bot"> '.'<a class="white">'.__('You are').' [<b>'.$_SESSION["id_usuario"].'</b>]</a>';
|
2008-09-02 18:08:11 +02:00
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
//First column, second row (logout button)
|
|
|
|
echo '<br /><br />';
|
2008-09-02 18:08:11 +02:00
|
|
|
echo '<a class="white_bold" href="index.php?bye=bye"><img src="images/lock.png" class="bot"> '. __('Logout').'</a>';
|
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
// Second column (link to main page)
|
|
|
|
echo '</td><td>';
|
2008-09-02 18:08:11 +02:00
|
|
|
echo '<a class="white_bold" href="index.php?sec=main"><img src="images/information.png" class="bot"> '.__('General information').'</a>';
|
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
//Second column, second row (System up/down)
|
|
|
|
echo '<br /><br />';
|
2008-09-02 18:08:11 +02:00
|
|
|
echo '<a class="white_bold" href="index.php?sec=estado_server&sec2=operation/servers/view_server&refr=60">';
|
2008-09-24 16:34:52 +02:00
|
|
|
$servers["all"] = (int) get_db_value ('COUNT(id_server)','tserver');
|
|
|
|
$servers["up"] = (int) check_server_status ();
|
|
|
|
$servers["down"] = $servers["all"] - $servers["up"];
|
|
|
|
if ($servers["up"] == 0) {
|
|
|
|
//All Servers down or no servers at all
|
|
|
|
echo '<img src="images/cross.png" class="bot" /> '.__('All systems').': '.__('Down');
|
|
|
|
} elseif ($servers["down"] != 0) {
|
|
|
|
//Some servers down
|
|
|
|
echo '<img src="images/error.png" class="bot" /> '.$servers["down"].' '.__('servers down');
|
|
|
|
} else {
|
|
|
|
//All servers up
|
|
|
|
echo '<img src="images/ok.png" class="bot" /> '.__('All systems').': '.__('Ready');
|
|
|
|
}
|
|
|
|
unset ($servers); // Since this is the header, we don't like to trickle down variables.
|
2008-09-02 18:08:11 +02:00
|
|
|
echo "</a>";
|
|
|
|
|
|
|
|
|
|
|
|
// Third column
|
|
|
|
// Autorefresh
|
2008-09-24 16:34:52 +02:00
|
|
|
echo "</td><td>";
|
|
|
|
if (get_parameter ("refr") != 0) {
|
|
|
|
echo '<a class="white_grey_bold" href="'.((substr ($_SERVER['REQUEST_URI'],-1) != "/") ? $_SERVER['REQUEST_URI'] : 'index.php?' ).'&refr=0"><img src="images/page_lightning.png" class="bot" /> '. __('Autorefresh').'</a>';
|
|
|
|
} else {
|
|
|
|
echo '<a class="white_bold" href="'.((substr ($_SERVER['REQUEST_URI'],-1) != "/") ? $_SERVER['REQUEST_URI'] : "index.php?" ).'&refr=5"><img src="images/page_lightning.png" class="bot" /> '.__('Autorefresh').'</a>';
|
2007-03-02 18:56:07 +01:00
|
|
|
}
|
2008-08-21 23:07:20 +02:00
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
//Events
|
|
|
|
echo '<br /><br />';
|
|
|
|
echo '<a class="white_bold" href="index.php?sec=eventos&sec2=operation/events/events&refr=5"><img src="images/lightning_go.png" class="bot" /> '.__('Events').'</a>';
|
2007-05-18 11:29:54 +02:00
|
|
|
|
2008-09-24 16:34:52 +02:00
|
|
|
// Styled text
|
|
|
|
echo '</td><td><div id="head_r"><span id="logo_text1">Pandora</span> <span id="logo_text2">FMS</span></div></td></tr></table>';
|
2007-05-18 14:56:05 +02:00
|
|
|
?>
|