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
296 B
PHP
Executable File
15 lines
296 B
PHP
Executable File
<?php
|
|
|
|
namespace Icinga\Backend\Ido;
|
|
class ServicegroupsummaryQuery extends GroupsummaryQuery
|
|
{
|
|
protected $name_alias = 'servicegroup_name';
|
|
protected $sub_group_column = 'sg.alias';
|
|
|
|
protected function addSummaryJoins($query)
|
|
{
|
|
$this->joinServicegroups($query);
|
|
}
|
|
}
|
|
|