00001 <?php 00036 // Get config instance 00037 $cfg = FrameworkConfiguration::getInstance(); 00038 00039 // Initialize output system 00040 require($cfg->readConfig('base_path') . 'inc/output.php'); 00041 00042 // Initialize file i/o system 00043 require($cfg->readConfig('base_path') . 'inc/file_io.php'); 00044 00045 // Include the language sub-system 00046 require($cfg->readConfig('base_path') . 'inc/language.php'); 00047 00048 // This application needs a database connection then we have to simply include 00049 // the inc/database.php script 00050 require($cfg->readConfig('base_path') . 'inc/database.php'); 00051 00052 // [EOF] 00053 ?>
1.5.6