blob: c010cd71bc0e106b060bb58655de89251238fa67 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/* Copyright (C) 2017 Icinga Development Team <info@icinga.com> */
namespace Icinga\Module\Toplevelview\Web;
use Icinga\Application\Icinga;
use Icinga\Exception\ConfigurationError;
use Icinga\Exception\IcingaException;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Icinga\Web\Controller as IcingaController;
class Controller extends IcingaController
{
/** @var MonitoringBackend */
protected $monitoringBackend;
public function init()
{
parent::init();
if (! extension_loaded('yaml')) {
throw new ConfigurationError('You need the PHP extension "yaml" in order to use TopLevelView');
}
}
/**
* Retrieves the Icinga MonitoringBackend
*
* @param string|null $name
*
* @return MonitoringBackend
* @throws IcingaException When monitoring is not enabled
*/
protected function monitoringBackend($name = null)
{
if ($this->monitoringBackend === null) {
if (! Icinga::app()->getModuleManager()->hasEnabled('monitoring')) {
throw new IcingaException('The module "monitoring" must be enabled and configured!');
}
$this->monitoringBackend = MonitoringBackend::instance($name);
}
return $this->monitoringBackend;
}
protected function setViewScript($name, $controller = null)
{
if ($controller !== null) {
$name = sprintf('%s/%s', $controller, $name);
}
$this->_helper->viewRenderer->setNoController(true);
$this->_helper->viewRenderer->setScriptAction($name);
}
}
|