librenms-librenms/html/includes/print-event.inc.php

36 lines
746 B
PHP
Raw Normal View History

<?php
$hostname = gethostbyid($entry['host']);
unset($icon);
$icon = geteventicon($entry['message']);
2015-07-13 20:10:26 +02:00
if ($icon) {
$icon = '<img src="images/16/'.$icon.'" />';
}
2015-07-13 20:10:26 +02:00
echo '<tr>
<td>
2015-07-13 20:10:26 +02:00
'.$entry['datetime'].'
</td>';
if (!isset($vars['device'])) {
2015-07-13 20:10:26 +02:00
$dev = device_by_id_cache($entry['host']);
echo '<td>
'.generate_device_link($dev, shorthost($dev['hostname'])).'
</td>';
}
2015-07-13 20:10:26 +02:00
if ($entry['type'] == 'interface') {
$this_if = ifLabel(getifbyid($entry['reference']));
$entry['link'] = '<b>'.generate_port_link($this_if, makeshortif(strtolower($this_if['label']))).'</b>';
}
else {
$entry['link'] = 'System';
}
2015-07-13 20:10:26 +02:00
echo '<td>'.$entry['link'].'</td>';
2015-07-13 20:10:26 +02:00
echo '<td>'.htmlspecialchars($entry['message']).'</td>
</tr>';