mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-11 01:40:01 -04:00
Requirements are already validated during module activation, making a post-activation dependency check redundant. Additionally, starting with version 1.12, Icinga Director depends on the icinga-php-legacy library rather than the incubator module, eliminating the risk of accidentally deactivating the incubator module while Icinga Director is active.
8 lines
153 B
PHP
8 lines
153 B
PHP
<?php
|
|
|
|
if (version_compare(PHP_VERSION, '5.6.0') < 0) {
|
|
include __DIR__ . '/run-php5.3.php';
|
|
return;
|
|
}
|
|
|
|
include __DIR__ . '/register-hooks.php';
|