blob: ec08bbbc6dafd638f0c5fa1d91a55374662e9cad (
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
|
<?php
// Icinga Web 2 Cube Module | (c) 2019 Icinga GmbH | GPLv2
namespace Icinga\Module\Cube\Controllers;
use Icinga\Application\Modules\Module;
use Icinga\Module\Cube\IcingaDb\IcingaDbServiceStatusCube;
use Icinga\Module\Cube\Ido\IdoServiceStatusCube;
use Icinga\Module\Cube\ProvidedHook\Icingadb\IcingadbSupport;
use Icinga\Module\Cube\Web\IdoController;
class ServicesController extends IdoController
{
public function indexAction()
{
$this->createTabs()->activate('cube/services');
$this->renderCube();
}
protected function getCube()
{
if (Module::exists('icingadb') && IcingadbSupport::useIcingaDbAsBackend()) {
return new IcingaDbServiceStatusCube();
}
return new IdoServiceStatusCube();
}
}
|