mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[Logbookadvanced] First version of a logbook with filtering and batchprocessing of QSL handling.
This commit is contained in:
21
application/helpers/psr4_autoloader_helper.php
Normal file
21
application/helpers/psr4_autoloader_helper.php
Normal 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;
|
||||
});
|
||||
Reference in New Issue
Block a user