getParameter('silverstripe_extension.bootstrap_file'); if ($bootstrapFile) { require_once $bootstrapFile; } // Register all paths foreach (ModuleLoader::instance()->getManifest()->getModules() as $module) { $container->setParameter('paths.modules.'.$module->getShortName(), $module->getPath()); $composerName = $module->getComposerName(); if ($composerName) { list($vendor,$name) = explode('/', $composerName); $container->setParameter('paths.modules.'.$vendor.'.'.$name, $module->getPath()); } } unset($_GET['flush']); // Remove the error handler so that PHPUnit can add its own restore_error_handler(); } }