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

29 lines
758 B
PHP
Raw 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;
$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';
}