";
echo "";
// Yes, put here your corporate logo instead pandora_logo_head.png
echo '';
// Margin to logo
echo " | ";
// First column
echo " | ";
echo ' '.''.__('You are ').'['.$_SESSION["id_usuario"].']';
echo "
";
echo ' '. __('Logout').'';
// Second column
echo " | ";
echo ' '.__('General information').'';
echo "
";
echo '';
if (check_server_status () == 0)
echo ' '.__('Server status: DOWN');
else
echo ' '.__('System ready');
echo "";
// Third column
// Autorefresh
echo " | ";
if (get_parameter ("refr") != 0)
echo ' '. __('Autorefresh').'';
else
echo ' '.__('Autorefresh').'';
echo "
";
echo ' '.__('Events').'';
// logo
echo " | ";
echo ' Pandora FMS ';
echo "";
/*
if(!isset ($_SESSION["id_usuario"])) {
echo "";
return;
}
$table->width=480;
$table->border=0;
$table->cellpadding=3;
$table->size=array("30%");
$table->class="inherit";
$table->rowclass=array("inherit","inherit");
$table->data[] = array (
// First column
' '.''.__('You are ').'['.$_SESSION["id_usuario"].']',
// Second column
' '.__('General information').'',
// Third column
// Autorefresh
((get_parameter ("refr") != 0) ?
' '. __('Autorefresh').''
:
' '.__('Autorefresh').''
)
);
$table->data[] = array (
' '. __('Logout').'',
''.
((check_server_status () == 0) ?
' '.__('Server status: DOWN')
:
' '.__('System ready')
).'',
// Event - refresh
' '.__('Events').''
);
print_table ($table);
unset ($table);
echo "";
*/
?>
|