Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2009-09-07 11:07:59 +00:00
<?php
2017-12-29 07:36:49 +02:00
/*
* LibreNMS
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*
* @package LibreNMS
* @subpackage webui
2021-02-09 00:29:04 +01:00
* @link https://www.librenms.org
2017-12-29 07:36:49 +02:00
* @copyright 2017 LibreNMS
* @author LibreNMS Contributors
*/
2008-11-27 12:36:37 +00:00
2022-08-30 12:55:37 -05:00
use App\Models\Port;
2011-03-17 11:46:02 +00:00
unset($icon);
$severity_colour = eventlog_severity($entry['severity']);
2017-12-29 07:36:49 +02:00
$icon = '<span class="alert-status ' . $severity_colour . '"></span>';
2008-11-27 12:36:37 +00:00
2017-12-29 07:36:49 +02:00
echo '<tr>';
echo '<td>' . $icon . '</td>';
echo '<td>' . $entry['humandate'] . '</td>';
2007-04-03 14:10:23 +00:00
2022-08-30 12:55:37 -05:00
echo '<td style="white-space: nowrap;max-width: 100px;overflow: hidden;text-overflow: ellipsis;">';
2011-03-17 11:46:02 +00:00
if ($entry['type'] == 'interface') {
2022-08-30 12:55:37 -05:00
echo '<b>' . \LibreNMS\Util\Url::portLink(Port::find($entry['reference'])) . '</b>';
2011-03-17 11:46:02 +00:00
}
2007-04-03 14:10:23 +00:00
2022-08-30 12:55:37 -05:00
echo '</td><td>' . htmlspecialchars($entry['message']) . '</td>';
2017-12-29 07:36:49 +02:00
echo '</tr>';