X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fselector.php;h=1898557928e653b332801a047499dfcb073d0bcc;hb=3066fde87517fbd0a93adb19d7522bd772070606;hp=0fc66eacc006405a56943f6e3561f93b2d2d5c90;hpb=8fc648e98a3076d9a1e7f6a1da05b28a48769c44;p=core.git diff --git a/inc/selector.php b/inc/selector.php index 0fc66eac..18985579 100644 --- a/inc/selector.php +++ b/inc/selector.php @@ -24,18 +24,24 @@ // Try to load these includes in the given order $configAppIncludes = array( - 'class_' . FrameworkConfiguration::getInstance()->readConfig('app_helper_class'), // The ApplicationHelper class + 'class_' . FrameworkConfiguration::getInstance()->getConfigEntry('app_helper_class'), // 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 'data', // Application data 'init', // The application initializer - 'loader', // The application's class loader - 'debug', // Some debugging stuff - 'exceptions', // The application's own exception handler 'starter', // The application starter (calls entryPoint(), etc.) ); // Cache base path/file here -$basePathFile = FrameworkConfiguration::getInstance()->readConfig('application_path') . FrameworkConfiguration::getInstance()->readConfig('app_name'); +$basePathFile = FrameworkConfiguration::getInstance()->getConfigEntry('application_path') . FrameworkConfiguration::getInstance()->getConfigEntry('app_name'); + +// Is the directory there? +if (!is_dir($basePathFile)) { + // Not found. + trigger_error('Application ' . FrameworkConfiguration::getInstance()->getConfigEntry('app_name') . ' not found.'); +} // END - if // Load them all (try only) foreach ($configAppIncludes as $appInc) { @@ -54,7 +60,7 @@ foreach ($configAppIncludes as $appInc) { //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - START\n"; require($appFqFn); //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - END\n"; - } elseif (FrameworkConfiguration::getInstance()->readConfig('verbose_level') > 0) { + } elseif (FrameworkConfiguration::getInstance()->getConfigEntry('verbose_level') > 0) { // File is missing trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.", $appInc