generateCache = $this->options->getModuleMapCacheEnabled(); $this->moduleLoader = new ModuleAutoloader($this->options->getModulePaths()); if ($this->hasCachedClassMap()) { $this->generateCache = false; $this->moduleLoader->setModuleClassMap($this->getCachedConfig()); } } /** * {@inheritDoc} */ public function attach(EventManagerInterface $events) { $this->callbacks[] = $events->attach( ModuleEvent::EVENT_LOAD_MODULES, array($this->moduleLoader, 'register'), 9000 ); if ($this->generateCache) { $this->callbacks[] = $events->attach( ModuleEvent::EVENT_LOAD_MODULES_POST, array($this, 'onLoadModulesPost') ); } } /** * {@inheritDoc} */ public function detach(EventManagerInterface $events) { foreach ($this->callbacks as $index => $callback) { if ($events->detach($callback)) { unset($this->callbacks[$index]); } } } /** * @return bool */ protected function hasCachedClassMap() { if ( $this->options->getModuleMapCacheEnabled() && file_exists($this->options->getModuleMapCacheFile()) ) { return true; } return false; } /** * @return array */ protected function getCachedConfig() { return include $this->options->getModuleMapCacheFile(); } /** * loadModulesPost * * Unregisters the ModuleLoader and generates the module class map cache. * * @param ModuleEvent $event */ public function onLoadModulesPost(ModuleEvent $event) { $this->moduleLoader->unregister(); $this->writeArrayToFile( $this->options->getModuleMapCacheFile(), $this->moduleLoader->getModuleClassMap() ); } }