Continued rewriting:
[core.git] / inc / selector.php
index e8dffb2c8facd206c71f2a579c9233c9c7f7608b..7c8594f20a0156d08a2202be80afe0126fa4080c 100644 (file)
@@ -1,10 +1,14 @@
 <?php
+// Import framework stuff
+use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Object\BaseFrameworkSystem;
+
 /**
  * The application selector main include file
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 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.shipsimu.org
  * @deprecated
 
 // Try to load these includes in the given order
 $configAppIncludes = array(
-       'class_' . FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_helper_class'), // The ApplicationHelper class
+       'class_ApplicationHelper', // The ApplicationHelper class
        'debug',                // Some debugging stuff
        'exceptions',   // The application's own exception handler
-       'loader',               // The application's class loader
        'config',               // The application's own configuration
        'config-local', // Local configuration file (optional)
        'data',                 // Application data
@@ -79,5 +82,5 @@ unset($configAppIncludes);
 unset($appFqFn);
 unset($basePathFile);
 
-// [EOF]
-?>
+// Scan for application's classes, exceptions and interfaces
+ClassLoader::scanApplicationClasses();