Files

36 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2007-04-03 14:10:23 +00:00
<?php
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.
2016-08-21 08:07:14 -05:00
use LibreNMS\ObjectCache;
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
2016-08-21 08:07:14 -05:00
$devices = new ObjectCache('devices');
$ports = new ObjectCache('ports');
$services = new ObjectCache('services');
2007-11-21 14:26:24 +00:00
2015-07-13 20:10:26 +02:00
if ($devices['down']) {
$devices['bgcolour'] = '#ffcccc';
2016-08-18 20:28:22 -05:00
} else {
2015-07-13 20:10:26 +02:00
$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';
2016-08-18 20:28:22 -05:00
} else {
2015-07-13 20:10:26 +02:00
$ports['bgcolour'] = '#e5e5e5';
}
if ($services['down']) {
$services['bgcolour'] = '#ffcccc';
2016-08-18 20:28:22 -05:00
} else {
2015-07-13 20:10:26 +02:00
$services['bgcolour'] = 'transparent';
}