fembooru/core/_bootstrap.php

51 lines
1.4 KiB
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
/*
* Load all the files into memory, sanitise the environment, but don't
* actually do anything as far as the app is concerned
*/
global $cache, $config, $database, $user, $page, $_tracer;
2015-08-02 19:29:25 +01: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";
// set up and purify the environment
_version_check();
_sanitise_environment();
// 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;
// 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(
zglob("core/*.php"),
zglob("core/{".ENABLED_MODS."}/*.php"),
zglob("ext/*/info.php")
2020-01-27 18:24:11 +00: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);
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"));
// load the theme parts
2020-01-27 18:24:11 +00:00
require_all(_get_themelet_files(get_theme()));
$page = new Page();
// 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 18:32:50 +00:00
send_event(new InitExtEvent());
2019-07-05 20:49:47 +01:00
$_tracer->end();