icingaweb2/modules/monitoring/library/Monitoring/View/CommentView.php

24 lines
441 B
PHP
Raw Normal View History

<?php
namespace Icinga\Monitoring\View;
class CommentView extends MonitoringView
{
protected $query;
protected $availableColumns = array(
'comment_data',
'comment_author',
'comment_timestamp',
'comment_type',
);
protected $specialFilters = array();
protected $sortDefaults = array(
'comment_timestamp' => array(
'default_dir' => self::SORT_DESC
)
);
}