22 lines
395 B
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
|
|
)
|
|
);
|
|
}
|