2013-06-27 04:14:41 -04:00
|
|
|
<?php
|
|
|
|
|
|
2013-08-20 09:32:25 -04:00
|
|
|
namespace Icinga\Module\Monitoring\View;
|
2013-06-27 04:14:41 -04:00
|
|
|
|
2013-08-20 18:16:15 -04:00
|
|
|
class CommentView extends AbstractView
|
2013-06-27 04:14:41 -04:00
|
|
|
{
|
|
|
|
|
protected $query;
|
|
|
|
|
|
|
|
|
|
protected $availableColumns = array(
|
|
|
|
|
'comment_data',
|
|
|
|
|
'comment_author',
|
|
|
|
|
'comment_timestamp',
|
|
|
|
|
'comment_type',
|
2013-07-12 08:33:17 -04:00
|
|
|
'host_name',
|
|
|
|
|
'service_host_name',
|
|
|
|
|
'service_description',
|
2013-06-27 04:14:41 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
protected $specialFilters = array();
|
|
|
|
|
|
|
|
|
|
protected $sortDefaults = array(
|
|
|
|
|
'comment_timestamp' => array(
|
|
|
|
|
'default_dir' => self::SORT_DESC
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|