icingaweb2/library/Icinga/Backend/Ido/HostgroupsummaryQuery.php
Jannis Moßhammer 54ccb9b12a Move libraries from incubator to working tree for evaluation
Add all untested files from incubator's library/Icinga to working
tree library/Icinga

refs #4257
2013-06-07 15:46:33 +02:00

15 lines
300 B
PHP
Executable File

<?php
namespace Icinga\Backend\Ido;
class HostgroupsummaryQuery extends GroupsummaryQuery
{
protected $name_alias = 'hostgroup_name';
protected $sub_group_column = 'hg.alias';
protected function addSummaryJoins($query)
{
$this->joinServiceHostgroups($query);
}
}