Eric Lippmann 0a3da99e7f Reduce filter columns of the Hostgroup and Servicegroup data views
Its not necessary to expose those columns because these data views do not directly accept user input.
2017-07-27 15:03:12 +02:00

32 lines
653 B
PHP

<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Monitoring\DataView;
class Servicegroup extends DataView
{
public function getColumns()
{
return array(
'servicegroup_alias',
'servicegroup_name'
);
}
public function getSortRules()
{
return array(
'servicegroup_alias' => array(
'order' => self::SORT_ASC
)
);
}
public function getStaticFilterColumns()
{
return array(
'instance_name', 'host_name', 'hostgroup_name', 'service_description'
);
}
}