mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-10 17:11:16 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
30 lines
813 B
PHP
30 lines
813 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Module\Setup\Requirement;
|
|
|
|
use Icinga\Application\Platform;
|
|
use Icinga\Module\Setup\Requirement;
|
|
|
|
class PhpVersionRequirement extends Requirement
|
|
{
|
|
public function getTitle()
|
|
{
|
|
$title = parent::getTitle();
|
|
if ($title === null) {
|
|
return mt('setup', 'PHP Version');
|
|
}
|
|
|
|
return $title;
|
|
}
|
|
|
|
protected function evaluate()
|
|
{
|
|
$phpVersion = Platform::getPhpVersion();
|
|
$this->setStateText(sprintf(mt('setup', 'You are running PHP version %s.'), $phpVersion));
|
|
list($operator, $requiredVersion) = $this->getCondition();
|
|
return version_compare($phpVersion, $requiredVersion, $operator);
|
|
}
|
|
}
|