1<?php
2
3/**
4 * Observium Network Management and Monitoring System
5 * Copyright (C) 2006-2015, Adam Armstrong - http://www.observium.org
6 *
7 * @package    observium
8 * @subpackage webui
9 * @author     Adam Armstrong <adama@observium.org>
10 * @copyright  (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
11 *
12 */
13
14    print_events(array('device' => $device['device_id'], 'short' => TRUE, 'pagesize' => '20',
15                        'header' => array('title' => 'Eventlog',
16                                          'icon' => $config['icon']['eventlog'],
17                                          'url' => generate_url(array('page' => 'device', 'device' => $device['device_id'], 'tab' => 'logs', 'section' => 'eventlog'))
18                                    )
19    ));
20
21
22// EOF
23