mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Add icons for the Mainframe and Sync servers.
This commit is contained in:
parent
68803706d4
commit
a832ae99ab
BIN
pandora_console/images/mainframe.png
Normal file
BIN
pandora_console/images/mainframe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 467 B |
BIN
pandora_console/images/sync.png
Normal file
BIN
pandora_console/images/sync.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 529 B |
@ -348,6 +348,8 @@ define('SERVER_TYPE_ENTERPRISE_ICMP', 11);
|
|||||||
define('SERVER_TYPE_ENTERPRISE_SNMP', 12);
|
define('SERVER_TYPE_ENTERPRISE_SNMP', 12);
|
||||||
define('SERVER_TYPE_ENTERPRISE_SATELLITE', 13);
|
define('SERVER_TYPE_ENTERPRISE_SATELLITE', 13);
|
||||||
define('SERVER_TYPE_ENTERPRISE_TRANSACTIONAL', 14);
|
define('SERVER_TYPE_ENTERPRISE_TRANSACTIONAL', 14);
|
||||||
|
define('SERVER_TYPE_MAINFRAME', 15);
|
||||||
|
define('SERVER_TYPE_SYNC', 16);
|
||||||
|
|
||||||
/* REPORTS */
|
/* REPORTS */
|
||||||
define('REPORT_TOP_N_MAX', 1);
|
define('REPORT_TOP_N_MAX', 1);
|
||||||
|
@ -434,6 +434,16 @@ function servers_get_info ($id_server = -1) {
|
|||||||
$server["type"] = "enterprise transactional";
|
$server["type"] = "enterprise transactional";
|
||||||
$id_modulo = 0;
|
$id_modulo = 0;
|
||||||
break;
|
break;
|
||||||
|
case SERVER_TYPE_MAINFRAME:
|
||||||
|
$server["img"] = html_print_image ("images/mainframe.png", true, array ("title" => __('Mainframe server')));
|
||||||
|
$server["type"] = "mainframe";
|
||||||
|
$id_modulo = 0;
|
||||||
|
break;
|
||||||
|
case SERVER_TYPE_SYNC:
|
||||||
|
$server["img"] = html_print_image ("images/sync.png", true, array ("title" => __('Sync server')));
|
||||||
|
$server["type"] = "sync";
|
||||||
|
$id_modulo = 0;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$server["img"] = '';
|
$server["img"] = '';
|
||||||
$server["type"] = "unknown";
|
$server["type"] = "unknown";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user