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

27 lines
515 B
PHP
Raw Normal View History

<?php
2013-07-15 12:16:14 +02:00
namespace Monitoring\View;
class CommentView extends MonitoringView
{
protected $query;
protected $availableColumns = array(
'comment_data',
'comment_author',
'comment_timestamp',
'comment_type',
2013-07-12 14:33:17 +02:00
'host_name',
'service_host_name',
'service_description',
);
protected $specialFilters = array();
protected $sortDefaults = array(
'comment_timestamp' => array(
'default_dir' => self::SORT_DESC
)
);
}