blob: c89f09cc8bf08fdba07b8e5917b607d21faa7fa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
/* Copyright (C) 2017 Icinga Development Team <info@icinga.com> */
namespace Icinga\Module\Toplevelview\Monitoring;
use Icinga\Data\ConnectionInterface;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Icinga\Module\Monitoring\DataView\Hostgroupsummary as IcingaHostgroupsummary;
/**
* Patched version of Hostgroupsummary
*
* Just to load a patched version of HostgroupsummaryQuery
*/
class Hostgroupsummary extends IcingaHostgroupsummary
{
/** @noinspection PhpMissingParentConstructorInspection */
/**
* @param ConnectionInterface $connection
* @param array|null $columns
* @param array|null $options
* @noinspection PhpMissingParentConstructorInspection
*/
public function __construct(
ConnectionInterface $connection,
array $columns = null,
$options = null
) {
/** @var MonitoringBackend $connection */
$this->connection = $connection;
$this->query = new HostgroupsummaryQuery($connection->getResource(), $columns, $options);
}
}
|