mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Moved ifLabel -> cleanPort and updated the usage * added list of tags allowed * few updates as per comments from @murrant * Added simple unit tests * double display for javascript popover * Remove ifNameDescr() function Fix realtime port page * remove accidental temp code * Remove double display calls in ajax tables
26 lines
552 B
PHP
26 lines
552 B
PHP
<?php
|
|
|
|
if ($bg == $list_colour_a) {
|
|
$bg = $list_colour_b;
|
|
} else {
|
|
$bg = $list_colour_a;
|
|
}
|
|
|
|
unset($icon);
|
|
$severity_colour = eventlog_severity($entry['severity']);
|
|
|
|
$icon = "<i class='fa fa-bookmark fa-lg $severity_colour' aria-hidden='true'></i>";
|
|
|
|
echo '<tr">
|
|
<td>'.$icon.'
|
|
'.$entry['humandate'].'
|
|
</td>
|
|
<td>';
|
|
|
|
if ($entry['type'] == 'interface') {
|
|
$entry['link'] = '<b>'.generate_port_link(cleanPort(getifbyid($entry['reference']))).'</b>';
|
|
}
|
|
|
|
echo $entry['link'].' '.htmlspecialchars($entry['message']).'</td>
|
|
</tr>';
|