X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fselector.php;h=e736e00c88550e9f1e4280498690559caba7de58;hp=6075f4c2fe4bf5b3df4b500e80db57525da1d079;hb=39c1aaf705e8e3c274d56ef1fa931a086f729c48;hpb=5dcdec05cf48f5f940dabab64e3a59e0570ebae3 diff --git a/inc/selector.php b/inc/selector.php index 6075f4c2..e736e00c 100644 --- a/inc/selector.php +++ b/inc/selector.php @@ -2,13 +2,13 @@ /** * The application selector main include file * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * @deprecated - * @todo We should minimize these includes + * @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 @@ -44,6 +44,7 @@ $basePathFile = FrameworkConfiguration::getSelfInstance()->getConfigEntry('appli if (!is_dir($basePathFile)) { // Not found. trigger_error('Application ' . FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_name') . ' not found.'); + exit; } // END - if // Load them all (try only) @@ -58,16 +59,17 @@ 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); //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - END\n"; } elseif (FrameworkConfiguration::getSelfInstance()->getConfigEntry('verbose_level') > 0) { // File is missing - trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.", + trigger_error(sprintf('Cannot load application script %s.php! File is missing or read-protected.', $appInc )); + exit; } } @@ -76,6 +78,3 @@ unset($appInc); unset($configAppIncludes); unset($appFqFn); unset($basePathFile); - -// [EOF] -?>