X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fdatabase.php;h=7d6dceec926b2c790d8a6cc64b29a822d57f79e9;hp=2a13ed54263d5085c94bbfde1e67c932b4c84121;hb=c14c1b4945c7adb8dc54b86c7fce2f0e3458665e;hpb=4e95c4e90f08f67f43591eaaa0c006f923d8bacf diff --git a/framework/database.php b/framework/database.php index 2a13ed54..7d6dceec 100644 --- a/framework/database.php +++ b/framework/database.php @@ -1,65 +1,2 @@ - * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team - * @license GNU GPL 3.0 or any newer version - * @link http://www.shipsimu.org - * @deprecated - * @todo Minimize these includes - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -// Initialize database layer -$databaseInstance = NULL; - -// Generate FQFN for the database layer -$fqfn = sprintf( - '%sdatabase/lib-%s.php', - FrameworkConfiguration::getSelfInstance()->getConfigEntry('framework_base_path'), - FrameworkConfiguration::getSelfInstance()->getConfigEntry('database_type') -); - -// Load the database layer include -if (BaseFrameworkSystem::isReadableFile($fqfn)) { - // Load the layer - require($fqfn); -} else { - // Layer is missing! - ApplicationEntryPoint::app_exit(sprintf('[Main:] Database layer is missing! (%s) -> R.I.P.', - FrameworkConfiguration::getSelfInstance()->getConfigEntry('database_type') - )); -} - -// Clean it up -unset($fqfn); - -// Prepare database instance -$connectionInstance = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getSelfInstance(), $databaseInstance); - -// Is the app variable there and valid? -// @TODO Rewrite this -if (is_object($app)) { - $app->setDatabaseInstance($connectionInstance); -} // END - if +// @DEPRECATED