// Include the class loader function
require(sprintf("%sinc/loader/class_ClassLoader.php", $cfg->readConfig('base_path')));
+// Shall we include additional configs where you can configure some things? Then
+// Load matching config
+ClassLoader::getInstance()->loadExtraConfigs();
+
// Does the user has an application specified?
if (!empty($_GET['app'])) {
// Set the application from string
ClassLoader::getInstance()->loadClasses('devel');
}
-// Shall we include additional configs where you can configure some things? Then
-// Load matching config
-ClassLoader::getInstance()->loadExtraConfigs();
-
// [EOF]
?>