librenms/includes/html/object-cache.inc.php
2020-09-21 15:40:17 +02:00

29 lines
754 B
PHP

<?php
// FIXME queries such as the one below should probably go into index.php?
// 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.
use LibreNMS\ObjectCache;
$devices = new ObjectCache('devices');
$ports = new ObjectCache('ports');
$services = new ObjectCache('services');
if ($devices['down']) {
$devices['bgcolour'] = '#ffcccc';
} else {
$devices['bgcolour'] = 'transparent';
}
if ($ports['down']) {
$ports['bgcolour'] = '#ffcccc';
} else {
$ports['bgcolour'] = '#e5e5e5';
}
if ($services['down']) {
$services['bgcolour'] = '#ffcccc';
} else {
$services['bgcolour'] = 'transparent';
}