]> git.mxchange.org Git - core.git/blobdiff - inc/database/lib-local.php
Rewrites:
[core.git] / inc / database / lib-local.php
index 6d47355dad3ac681d0e2008ae44b282a951d9a02..b365a9f3fa097581229bc34de09cff6063aeb09a 100644 (file)
@@ -1,12 +1,15 @@
 <?php
+// Import framework stuff
+use CoreFramework\Factory\ObjectFactory;
+
 /**
  * Initializes the local file database class
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * 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
  */
 
 // For testing purposes we use a local file database
-$databaseInstance = LocalFileDatabase::createLocalFileDatabase(
-       FrameworkConfiguration::getInstance()->readConfig('local_db_path'),
-       FileIoHandler::getInstance()
-);
-
-// [EOF]
-?>
+$databaseInstance = ObjectFactory::createObjectByConfiguredName('local_file_database_class');