Files
librenms-librenms/html/includes/object-cache.inc.php
T

39 lines
1.0 KiB
PHP
Raw Normal View History

2007-04-03 14:10:23 +00:00
<?php
2015-07-13 20:10:26 +02:00
require_once $config['install_dir'].'/includes/object-cache.inc.php';
2015-04-12 11:22:43 +00:00
2012-05-25 12:24:34 +00:00
// FIXME queries such as the one below should probably go into index.php?
2014-02-23 13:53:56 +10:00
// FIXME: This appears to keep a complete cache of device details in memory for every page load.
// It would be interesting to know where this is used. It probably should have its own API.
2015-07-13 20:10:26 +02:00
foreach (dbFetchRows('SELECT * FROM `devices` ORDER BY `hostname`') as $device) {
$cache['devices']['hostname'][$device['hostname']] = $device['device_id'];
$cache['devices']['id'][$device['device_id']] = $device;
2012-04-05 16:48:06 +00:00
2015-07-13 20:10:26 +02:00
$cache['device_types'][$device['type']]++;
}
2011-10-04 09:10:21 +00:00
2015-04-12 11:22:43 +00:00
$devices = new ObjCache('devices');
$ports = new ObjCache('ports');
$services = new ObjCache('services');
2007-11-21 14:26:24 +00:00
2015-07-13 20:10:26 +02:00
if ($devices['down']) {
$devices['bgcolour'] = '#ffcccc';
}
else {
$devices['bgcolour'] = 'transparent';
}
2007-04-03 14:10:23 +00:00
2015-07-13 20:10:26 +02:00
if ($ports['down']) {
$ports['bgcolour'] = '#ffcccc';
}
else {
$ports['bgcolour'] = '#e5e5e5';
}
if ($services['down']) {
$services['bgcolour'] = '#ffcccc';
}
else {
$services['bgcolour'] = 'transparent';
}