mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-04 14:22:26 -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.
28 lines
770 B
PHP
28 lines
770 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
use Icinga\Application\Icinga;
|
|
use Icinga\Exception\IcingaException;
|
|
use Icinga\Web\Url;
|
|
|
|
if (Icinga::app()->isCli()) {
|
|
throw new IcingaException(
|
|
"PHP version 5.6.x is required for Director >= 1.7.0, you're running %s."
|
|
. ' Please either upgrade PHP or downgrade Icinga Director',
|
|
PHP_VERSION
|
|
);
|
|
} else {
|
|
$request = Icinga::app()->getRequest();
|
|
$path = $request->getPathInfo();
|
|
if (! preg_match('#^/director#', $path)) {
|
|
return;
|
|
}
|
|
if (preg_match('#^/director/phperror/error#', $path)) {
|
|
return;
|
|
}
|
|
|
|
header('Location: ' . Url::fromPath('director/phperror/error'));
|
|
exit;
|
|
}
|