* @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} namespace Monitoring\View; /** * NotificationView */ class NotificationView extends MonitoringView { /** * Available columns provided by this view * * @var array */ protected $availableColumns = array( 'host_name', 'service_description', 'notification_type', 'notification_reason', 'notification_start_time', 'notification_contact', 'notification_information', 'notification_command' ); /** * Default sorting rules * * @var array */ protected $sortDefaults = array( 'notification_start_time' => array( 'default_dir' => self::SORT_DESC ) ); }