[Logbookadvanced] First version of a logbook with filtering and batchprocessing of QSL handling.

This commit is contained in:
Andreas
2022-12-18 16:49:54 +01:00
parent 96219b634a
commit dbc8a5451a
8 changed files with 1576 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
defined('BASEPATH') OR exit('No direct script access allowed');
/*
* Extremely simple autoloader helper, has lots of shortcomings
*/
spl_autoload_register(function ($class) {
if (mb_substr($class, 0, 9) !== 'Cloudlog\\') {
return false;
}
$class=substr($class,9);
$file = str_replace('\\', DIRECTORY_SEPARATOR, $class).'.php';
$file = __DIR__ . "/../../src/" . $file;
if (file_exists($file)) {
require $file;
return true;
}
return false;
});