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

22 lines
395 B
PHP

<?php
namespace 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
)
);
}