2008-08-21 23:07:20 +02:00
< ? php
2008-10-11 21:00:18 +02:00
2008-08-21 23:07:20 +02:00
// Pandora FMS - the Flexible Monitoring System
// =============================================
2008-10-11 21:00:18 +02:00
// Copyright (c) 2008 Artica Soluciones Tecnologicas, http://www.artica.es
2008-04-01 15:53:11 +02:00
// Please see http://pandora.sourceforge.net for full contribution list
2006-06-29 21:31:53 +02: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.
2008-04-01 15:53:11 +02: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
2008-08-21 23:07:20 +02:00
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
// USA.
2007-08-08 20:36:18 +02:00
2008-08-21 23:07:20 +02:00
if ( isset ( $_SERVER [ 'REQUEST_TIME' ])) {
$time = $_SERVER [ 'REQUEST_TIME' ];
} else {
2009-01-09 Evi Vanoost <vanooste@rcbi.rochester.edu>
* general/footer.php, operation/agentes/sla_view.php,
operation/agentes/estado_ultimopaquete.php: Replaced time
function with get_system_time
* operation/reporting/reporting_viewer.php,
operation/reporting/reporting_xml.php, reporting/stat_win.php,
godmode/agentes/configurar_agente.php: Function renaming
* include/functions_reporting.php, include/functions_db.php,
operation/agentes/exportdata.php,
operation/agentes/estado_generalagente.php, reporting/fgraph.php,
godmode/db/db_info.php, godmode/db/db_purge.php,
godmode/agentes/modificar_agente.php: Made tagente_datos.id_agente
redundant by using the internal functions and separate queries.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1324 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-09 23:12:48 +01:00
$time = get_system_time ();
2008-08-21 23:07:20 +02:00
}
2008-09-02 18:08:11 +02:00
2008-08-22 16:28:00 +02:00
echo '<a class="white_bold" target="_new" href="general/license/pandora_info_' . $config [ " language " ] . '.html">Pandora FMS ' . $pandora_version . ' - Build ' . $build_version . '<br>' ;
2008-12-19 22:45:20 +01:00
echo '<a class="white">' . __ ( 'Page generated at' ) . ' ' . print_timestamp ( $time , true , array ( " prominent " => " timestamp " )); //Always use timestamp here
2008-08-22 16:28:00 +02:00
if (( isset ( $develop_bypass )) AND ( $develop_bypass == 1 )) {
echo ' - Saved ' . format_numeric ( $sql_cache [ " saved " ]) . ' Queries' ;
2008-08-21 23:07:20 +02:00
}
2008-12-19 22:45:20 +01:00
echo '</a><br />' ;
2009-01-08 16:52:13 +01:00
echo '<a href="http://www.mozilla-europe.org/en/firefox/"><img src="images/firefox.png" align="middle" title="' . __ ( 'Pandora FMS console is best viewed with Firefox web browser' ) . '" /></a>' ;
2006-12-24 23:40:09 +01:00
?>