mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-04 22:32:55 -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.
26 lines
659 B
PHP
26 lines
659 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(
|
|
"Missing dependencies, please check "
|
|
);
|
|
} else {
|
|
$request = Icinga::app()->getRequest();
|
|
$path = $request->getPathInfo();
|
|
if (! preg_match('#^/director#', $path)) {
|
|
return;
|
|
}
|
|
if (preg_match('#^/director/phperror/dependencies#', $path)) {
|
|
return;
|
|
}
|
|
|
|
header('Location: ' . Url::fromPath('director/phperror/dependencies'));
|
|
exit;
|
|
}
|