mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 11:19:14 +02:00
Add all untested files from incubator's library/Icinga to working tree library/Icinga refs #4257
15 lines
300 B
PHP
Executable File
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);
|
|
}
|
|
}
|
|
|