librenms-librenms/html/includes/print-event-short.inc.php
Tony Murray 8c639aa5a4 PSR2 Cleanup: /html edition
Travis tests for code conformance. Ignore warnings for now.
Fixed all errors, left most warnings.
2016-08-18 21:29:30 -05:00

30 lines
507 B
PHP

<?php
if ($bg == $list_colour_a) {
$bg = $list_colour_b;
} else {
$bg = $list_colour_a;
}
unset($icon);
$icon = geteventicon($entry['message']);
if ($icon) {
$icon = "<img src='images/16/$icon'>";
}
echo '<tr">
<td></td>
<td>
'.$entry['humandate'].'
</td>
<td>';
if ($entry['type'] == 'interface') {
$entry['link'] = '<b>'.generate_port_link(getifbyid($entry['reference'])).'</b>';
}
echo $entry['link'].' '.htmlspecialchars($entry['message']).'</td>
<td></td>
</tr>';