2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2015-08-02 15:47:04 +01:00
|
|
|
/*
|
|
|
|
* Load all the files into memory, sanitise the environment, but don't
|
|
|
|
* actually do anything as far as the app is concerned
|
|
|
|
*/
|
|
|
|
|
2019-10-02 10:49:32 +01:00
|
|
|
global $cache, $config, $database, $user, $page, $_tracer;
|
2015-08-02 19:29:25 +01:00
|
|
|
|
2018-11-05 22:30:18 +00:00
|
|
|
require_once "core/sys_config.php";
|
|
|
|
require_once "core/polyfills.php";
|
|
|
|
require_once "core/util.php";
|
2016-05-11 23:27:42 +01:00
|
|
|
require_once "vendor/autoload.php";
|
2015-08-02 15:47:04 +01:00
|
|
|
|
|
|
|
// set up and purify the environment
|
|
|
|
_version_check();
|
|
|
|
_sanitise_environment();
|
|
|
|
|
2019-07-31 08:52:17 -05:00
|
|
|
// The trace system has a certain amount of memory consumption every time it is used,
|
|
|
|
// so to prevent running out of memory during complex operations code that uses it should
|
|
|
|
// check if tracer output is enabled before making use of it.
|
|
|
|
$tracer_enabled = constant('TRACE_FILE')!==null;
|
|
|
|
|
2015-08-02 15:47:04 +01:00
|
|
|
// load base files
|
2019-07-05 20:49:47 +01:00
|
|
|
$_tracer->begin("Bootstrap");
|
2020-01-27 18:24:11 +00:00
|
|
|
require_all(array_merge(
|
2019-05-28 17:59:38 +01:00
|
|
|
zglob("core/*.php"),
|
|
|
|
zglob("core/{".ENABLED_MODS."}/*.php"),
|
2019-08-07 14:53:59 -05:00
|
|
|
zglob("ext/*/info.php")
|
2020-01-27 18:24:11 +00:00
|
|
|
));
|
2015-08-02 15:47:04 +01:00
|
|
|
|
2019-10-02 10:49:32 +01:00
|
|
|
$cache = new Cache(CACHE_DSN);
|
2020-01-27 18:24:11 +00:00
|
|
|
$database = new Database(DATABASE_DSN);
|
2019-09-29 14:50:31 +01:00
|
|
|
$config = new DatabaseConfig($database);
|
|
|
|
|
2019-08-07 14:53:59 -05:00
|
|
|
ExtensionInfo::load_all_extension_info();
|
|
|
|
Extension::determine_enabled_extensions();
|
2020-01-27 18:24:11 +00:00
|
|
|
require_all(zglob("ext/{".Extension::get_enabled_extensions_as_string()."}/main.php"));
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2015-08-02 15:47:04 +01:00
|
|
|
// load the theme parts
|
2020-01-27 18:24:11 +00:00
|
|
|
require_all(_get_themelet_files(get_theme()));
|
2015-08-02 15:47:04 +01:00
|
|
|
$page = class_exists("CustomPage") ? new CustomPage() : new Page();
|
|
|
|
|
2019-06-27 08:12:15 -05:00
|
|
|
// hook up event handlers
|
2015-08-02 20:54:41 +01:00
|
|
|
_load_event_listeners();
|
2019-07-05 19:14:09 +01:00
|
|
|
|
2019-11-03 18:28:38 +00:00
|
|
|
if (AUTO_DB_UPGRADE) {
|
|
|
|
send_event(new DatabaseUpgradeEvent());
|
2019-11-03 17:19:37 +00:00
|
|
|
}
|
2019-11-03 18:32:50 +00:00
|
|
|
send_event(new InitExtEvent());
|
2019-07-05 20:49:47 +01:00
|
|
|
$_tracer->end();
|