2024-04-27 17:01:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/** The current Feed Reader Central version */
|
2024-05-23 23:04:41 +00:00
|
|
|
const FRC_VERSION = '1.0.0-alpha6';
|
2024-04-27 17:01:57 +00:00
|
|
|
|
|
|
|
spl_autoload_register(function ($class) {
|
|
|
|
$file = implode(DIRECTORY_SEPARATOR, [__DIR__, 'lib', "$class.php"]);
|
|
|
|
if (file_exists($file)) {
|
|
|
|
require $file;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
require 'user-config.php';
|
|
|
|
|
|
|
|
Data::ensureDb();
|
2024-04-30 22:51:09 +00:00
|
|
|
|
|
|
|
/** @var string The date the world wide web was created */
|
|
|
|
const WWW_EPOCH = '1993-04-30T00:00:00+00:00';
|