X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;ds=sidebyside;f=public%2Findex.php;fp=public%2Findex.php;h=adaa63198c1bd5c5e315f5337a4803f5bf67b827;hb=d03f9a076b5ce119d1d02e20fe206a542387510c;hp=05f53328549c41136f629b10af6d5677952f75e1;hpb=c994772feb6fe02f60e7b875be37de9c64415882;p=zf2.biz%2Fgalerie.git diff --git a/public/index.php b/public/index.php index 05f5332..adaa631 100644 --- a/public/index.php +++ b/public/index.php @@ -1,22 +1,19 @@ getConfigListener()->addConfigGlobPath("config/autoload/*.php"); +// Get application stack configuration. +$configuration = include 'config/application.config.php'; -$moduleManager = new Zend\Module\Manager($appConfig['modules']); -$events = $moduleManager->events(); -$events->setSharedManager($sharedEvents); -$events->attach($defaultListeners); -$moduleManager->loadModules(); +// Setup service manager. +$serviceManager = new ServiceManager(new ServiceManagerConfiguration($configuration['service_manager'])); +$serviceManager->setService('ApplicationConfiguration', $configuration); +$serviceManager->get('ModuleManager')->loadModules(); -// Create application, bootstrap, and run -$bootstrap = new Zend\Mvc\Bootstrap($defaultListeners->getConfigListener()->getMergedConfig()); -$bootstrap->events()->setSharedManager($sharedEvents); -$application = new Zend\Mvc\Application; -$bootstrap->bootstrap($application); -$application->run()->send(); +// Run application. +$serviceManager->get('Application')->bootstrap()->run()->send(); \ No newline at end of file