Files
librenms-librenms/includes/html/pages/device/port/events.inc.php
Tony Murray f3ba8947f7 Use Config helper (#10339)
remove usage of global variable
2019-06-23 00:29:12 -05:00

14 lines
536 B
PHP

<?php
$entries = dbFetchRows("SELECT *,DATE_FORMAT(datetime, '" . \LibreNMS\Config::get('dateformat.mysql.compact') . "') as humandate FROM `eventlog` WHERE `device_id` = ? AND `type` = 'interface' AND `reference` = '" . $port['port_id'] . "' ORDER BY `datetime` DESC LIMIT 0,250", [$device['device_id']]);
echo '<table class="table table-condensed">';
echo '<th>Timestamp</th><th>Port</th><th>Event</th>';
foreach ($entries as $entry) {
include 'includes/html/print-event.inc.php';
}
echo '</table>';
$pagetitle[] = 'Events';