2011-07-27 Ramon Novoa <rnovoa@artica.es>

* include/functions_servers.php: Added information for the new
	  enterprise servers.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4636 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2011-07-27 16:05:16 +00:00
parent f7b67685c9
commit 0105babeb6
2 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-07-27 Ramon Novoa <rnovoa@artica.es>
* include/functions_servers.php: Added information for the new
enterprise servers.
2011-07-27 Sergio Martin <sergio.martin@artica.es>
* include/functions_ui.php: Fixed shortcut icon link to avoid

View File

@ -204,6 +204,21 @@ function servers_get_info ($id_server = -1) {
$server["type"] = "web";
$id_modulo = 0;
break;
case 10:
$server["img"] = html_print_image ("images/lightning_go.png", true, array ("title" => __('Event server')));
$server["type"] = "event";
$id_modulo = 2;
break;
case 11:
$server["img"] = html_print_image ("images/network.png", true, array ("title" => __('Network enterprise server')));
$server["type"] = "network enterprise";
$id_modulo = 2;
break;
case 12:
$server["img"] = html_print_image ("images/snmp.png", true, array ("title" => __('SNMP enterprise server')));
$server["type"] = "snmp enterprise";
$id_modulo = 2;
break;
default:
$server["img"] = '';
$server["type"] = "unknown";