22 lines
402 B
PHP
22 lines
402 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Monitoring\View;
|
||
|
|
||
|
class ServicegroupView extends MonitoringView
|
||
|
{
|
||
|
protected $query;
|
||
|
|
||
|
protected $availableColumns = array(
|
||
|
'servicegroup_name',
|
||
|
'servicegroup_alias',
|
||
|
);
|
||
|
|
||
|
protected $specialFilters = array();
|
||
|
|
||
|
protected $sortDefaults = array(
|
||
|
'servicegroup_alias' => array(
|
||
|
'default_dir' => self::SORT_ASC
|
||
|
)
|
||
|
);
|
||
|
}
|