mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
29 lines
754 B
PHP
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';
|
|
}
|