Base | Summit
Base is the main class for the framework. Although it is not needed, it can help out by automatically loading classes or getting configuration values from files. Base will also create a constant from the app_url value set in system/config/config.php to use throughout your application.
Methods
Init()
The Init method loads several classes to help assist you in your development. In the main configuration file you can determine classes you want to automatically load and this function completes that for you.
Base::Init();
GetConfiguration($class)
The GetConfiguration method loads the configuration file for the class you specify from the system/config/ folder. This method returns an array from the $config variable in the configuration file.
$db_config = Base::GetConfiguration('DB');

