示例#1
0
文件: Module.php 项目: tillk/vufind
 /**
  * Bootstrap the module
  *
  * @param MvcEvent $e Event
  *
  * @return void
  */
 public function onBootstrap(MvcEvent $e)
 {
     $bootstrapper = new Bootstrapper($e);
     $bootstrapper->bootstrap();
 }
示例#2
0
 /**
  * Set up configuration manager.
  *
  * @return void
  */
 protected function initConfig()
 {
     // This is needed for initConfig to be called before
     // overridden initLanguage and initTheme
     parent::initConfig();
 }