X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=public%2Findex.php;h=f347d342f402e9e4cf42dddfca16b5a074656d7a;hb=b1ed9cf58083c48409f4d33923657eb8dc0ec70d;hp=05f53328549c41136f629b10af6d5677952f75e1;hpb=c994772feb6fe02f60e7b875be37de9c64415882;p=zf2.biz%2Fgalerie.git diff --git a/public/index.php b/public/index.php index 05f5332..f347d34 100644 --- a/public/index.php +++ b/public/index.php @@ -1,22 +1,40 @@ getConfigListener()->addConfigGlobPath("config/autoload/*.php"); +// Composer autoloading +if (file_exists('vendor/autoload.php')) { + $loader = include 'vendor/autoload.php'; +} + +// Support for ZF2_PATH environment variable or git submodule +if ($zf2Path = getenv('ZF2_PATH') ?: (is_dir('vendor/ZF2/library') ? 'vendor/ZF2/library' : false)) { + if (isset($loader)) { + $loader->add('Zend', $zf2Path . '/Zend'); + } else { + include $zf2Path . '/Zend/Loader/AutoloaderFactory.php'; + AutoloaderFactory::factory(array( + 'Zend\Loader\StandardAutoloader' => array( + 'autoregister_zf' => true + ) + )); + } +} + +if (!class_exists('Zend\Loader\AutoloaderFactory')) { + throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.'); +} + +// 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();