2010-09-15 19:20:13 +02:00
|
|
|
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
|
|
|
|
// 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 for version 2.
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
require_once('../include/functions_servers.php');
|
|
|
|
|
|
|
|
class ViewServers {
|
|
|
|
private $system;
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
global $system;
|
|
|
|
|
|
|
|
$this->system = $system;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function show() {
|
|
|
|
$servers = get_server_info ();
|
|
|
|
|
|
|
|
if ($servers === false) $servers = array();
|
|
|
|
|
|
|
|
$table = null;
|
|
|
|
$table->width = '100%';
|
|
|
|
|
|
|
|
$table->align = array();
|
|
|
|
$table->align[1] = 'center';
|
|
|
|
$table->align[4] = 'center';
|
|
|
|
|
|
|
|
$table->head = array();
|
|
|
|
$table->head[0] = __('Server');
|
|
|
|
$table->head[1] = '<span title="' . __('Type') . '" alt="' . __('Type') . '">' . __('T') . '</span>';
|
|
|
|
$table->head[2] = '<span title="' . __('Started') . '" alt="' . __('Started') . '">' . __('S') . '</span>';
|
|
|
|
$table->head[3] = '<span title="' . __('Updated') . '" alt="' . __('Updated') . '">' . __('U') . '</span>';
|
|
|
|
$table->head[4] = '<span title="' . __('Status') . '" alt="' . __('Status') . '">' . __('S') . '</span>';
|
|
|
|
|
|
|
|
$table->data = array(); //$this->system->debug($servers);
|
|
|
|
foreach ($servers as $server) {
|
|
|
|
$data = array();
|
|
|
|
|
|
|
|
if ($server['status'] == 0) {
|
2011-04-13 18:11:02 +02:00
|
|
|
$server_status = ui_print_status_image(STATUS_SERVER_DOWN, '', true);
|
2010-09-15 19:20:13 +02:00
|
|
|
}
|
|
|
|
else {
|
2011-04-13 18:11:02 +02:00
|
|
|
$server_status = ui_print_status_image(STATUS_SERVER_OK, '', true);
|
2010-09-15 19:20:13 +02:00
|
|
|
}
|
|
|
|
$data[] = strip_tags($server["name"]);
|
|
|
|
$data[] = str_replace('images/', '../images/', $server['img']);
|
|
|
|
$data[] = human_time_comparation ($server["laststart"], 'tiny');
|
|
|
|
$data[] = human_time_comparation ($server["keepalive"], 'tiny');
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: fixed the width by default in the function
"print_table", now there isn't a default width (before it was 80%).
* include/pchart_graph.php: fixed in the function "add_events" when tryed
to add a event out the data.
* include/fgraph.php: check the user with the mobile methods.
* include/functions_db.php: in function "check_login" check the user with
the mobile methods.
* images/status_sets/default/severity_warning_pixel.png,
images/status_sets/default/severity_normal_pixel.png,
images/status_sets/default/severity_informational_pixel.png,
images/status_sets/default/severity_maintenance_pixel.png,
images/status_sets/default/severity_critical_pixel.png: added the image
files for to show in the event mobile's page.
* mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/view_alerts.php, mobile/operation/events/events.php,
mobile/operation/servers/view_servers.php, mobile/include/user.class.php,
mobile/include/system.class.php: changed the style the some pages to show
more clearly the pages in old m$-mobiles.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3265 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 10:59:01 +02:00
|
|
|
$data[] = str_replace(array('images/status_sets', '<img'),
|
|
|
|
array('../images/status_sets', '<img width="15" height="15"'), $server_status);
|
2010-09-15 19:20:13 +02:00
|
|
|
// $this->system->debug($server["name"]);
|
|
|
|
|
|
|
|
$table->data[] = $data;
|
|
|
|
}
|
|
|
|
|
2011-04-27 15:43:31 +02:00
|
|
|
html_print_table($table);
|
2010-09-15 19:20:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|