'models/Article.php', 'ArticleComment' => 'models/ArticleComment.php', 'EpisodeComment' => 'models/EpisodeComment.php', 'Project' => 'models/Project.php', 'Show' => 'models/Show.php', 'User' => 'models/User.php', 'Database' => 'modules/Database.php', 'CommunityModule' => 'modules/CommunityModule.php', 'DisplayModule' => 'modules/DisplayModule.php', 'ParserModule' => 'modules/ParserModule.php', 'CommunityHub' => 'hubs/CommunityHub.php' ]; spl_autoload_register(function ($class) { if (!isset(MAP[$class])) return false; require_once '../app/' . MAP[$class]; return true; }); // Initialize the database handler Database::init('../app/database.db');