blob: ad600e1dfd6ed91aa87e822836ab67a5a2a6168d (
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
|
<?php
/* Icinga Web 2 | (c) 2020 Icinga GmbH | GPLv2+ */
namespace Icinga\Module\Setup\Requirement;
use Icinga\Application\Icinga;
use Icinga\Module\Setup\Requirement;
class WebModuleRequirement extends Requirement
{
protected function evaluate()
{
list($name, $op, $version) = $this->getCondition();
$mm = Icinga::app()->getModuleManager();
if (! $mm->hasInstalled($name)) {
$this->setStateText(sprintf(mt('setup', '%s is not installed'), $this->getAlias()));
return false;
}
$module = $mm->getModule($name, false);
$moduleVersion = $module->getVersion();
if ($moduleVersion[0] === 'v') {
$moduleVersion = substr($moduleVersion, 1);
}
$this->setStateText(sprintf(mt('setup', '%s version: %s'), $this->getAlias(), $moduleVersion));
return version_compare($moduleVersion, $version, $op);
}
}
|