This commit is contained in:
2025-11-20 16:34:30 +01:00
parent 15d1a30e88
commit 4e4351e833
631 changed files with 130125 additions and 36318 deletions

View File

@@ -1,12 +1,15 @@
<?php
if (PHP_VERSION_ID >= 70100 && function_exists('ioncube_loader_version')) {
require_once dirname(__FILE__) . "/autoload_.php";
if (file_exists(dirname(__DIR__) . "/deps/autoload.php")) {
require_once dirname(__DIR__) . "/deps/autoload.php";
}
require_once __DIR__ . "/autoload_.php";
return;
}
require_once dirname(__FILE__) . "/functions.php";
require_once dirname(__FILE__) . "/classes.php";
require_once __DIR__ . "/functions.php";
require_once __DIR__ . "/classes.php";
spl_autoload_register(function ($classFullName) {
if (class_exists($classFullName, false)) {