* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-// Load the class from inc/config direktory
+// Load very basic classes, required to bootstrap
require(ApplicationEntryPoint::detectCorePath() . '/inc/classes/interfaces/class_FrameworkInterface.php');
require(ApplicationEntryPoint::detectCorePath() . '/inc/classes/interfaces/registry/class_Registerable.php');
require(ApplicationEntryPoint::detectCorePath() . '/inc/config/class_FrameworkConfiguration.php');
'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
'init', // The application initializer
'starter', // The application starter (calls entryPoint(), etc.)
if (($appInc == 'starter') && (defined('TEST'))) {
// Skip it here
continue;
- }
+ } // END - if
// Generate a FQFN for the helper class
$appFqFn = $basePathFile . '/' . $appInc . '.php';
}
// Remove variables from namespace, which we don't need
-unset($appInc, $configAppIncludes, $appFqFn, $basePathFile);
+unset($appInc);
+unset($configAppIncludes);
+unset($appFqFn);
+unset($basePathFile);
// [EOF]
?>