* @package tao * @example * * $bootStrap = new BootStrap('tao'); //create the Bootstrap instance * $bootStrap->start(); //start all the services * $bootStrap->dispatch(); //dispatch the http request into the control loop * */ class Bootstrap extends MvcBootstrap { public function __construct($extName) { $configFile = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'generis.conf.php'; parent::__construct($configFile); // load extension constants common_ext_ExtensionsManager::singleton()->getExtensionById($extName); } }