X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fselector.php;h=7c8594f20a0156d08a2202be80afe0126fa4080c;hp=1010386c2b46e12e2aa54878f16f29499b9f17f0;hb=c62a0884fc9334024a771f706ee89cd6321868c4;hpb=d26e71af1e28dc1429823bdec244df6303f9b2fb diff --git a/inc/selector.php b/inc/selector.php index 1010386c..7c8594f2 100644 --- a/inc/selector.php +++ b/inc/selector.php @@ -1,10 +1,14 @@ * @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 @@ -26,10 +30,9 @@ // 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 @@ -59,7 +62,7 @@ foreach ($configAppIncludes as $appInc) { $appFqFn = $basePathFile . '/' . $appInc . '.php'; // Does the include file exists? - if ((file_exists($appFqFn)) && (is_file($appFqFn)) && (is_readable($appFqFn))) { + if (BaseFrameworkSystem::isReadableFile($appFqFn)) { // Load it //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - START\n"; require($appFqFn); @@ -79,5 +82,5 @@ unset($configAppIncludes); unset($appFqFn); unset($basePathFile); -// [EOF] -?> +// Scan for application's classes, exceptions and interfaces +ClassLoader::scanApplicationClasses();