Пример #1
0
/*
 *---------------------------------------------------------------
 * Require the application map
 *---------------------------------------------------------------
 * 
 * The application map can contain additional path information
 */
if (file_exists(APPPATH . 'map' . EXT)) {
    require APPPATH . 'map' . EXT;
}
/*
 *---------------------------------------------------------------
 * composer / vendor
 *---------------------------------------------------------------
 * 
 * After ccf is done with its own initialisation we implement the
 * composers vendor autoloader.
 */
require_once VENDORPATH . "autoload" . EXT;
// at this point vendor autoloader is registered
CCProfiler::check("CCF - Vendro autoloader registered.");
/*
 *---------------------------------------------------------------
 * installed ships
 *---------------------------------------------------------------
 * 
 * Load and wake all installed ships.
 */
CCOrbit::enter_installed_ships();
// all done
CCProfiler::check("CCF - All runtime ships entered the Orbit.");