<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Test\Util;
use Zend\Mvc\Service;
use Zend\ServiceManager\ServiceManager;
class ModuleLoader
{
/**
* @var ServiceManager
*/
protected $serviceManager;
/**
* Load list of modules or application configuration
*
* @param array $configuration
*/
public function __construct(array $configuration)
{
if (!isset($configuration['modules'])) {
$modules = $configuration;
$configuration = array(
'module_listener_options' => array(
'module_paths' => array(),
),
'modules' => array(),
);
foreach ($modules as $key => $module) {
if (is_numeric($key)) {
$configuration['modules'][] = $module;
continue;
}
$configuration['modules'][] = $key;
$configuration['module_listener_options']['module_paths'][$key] = $module;
}
}
$smConfig = isset($configuration['service_manager']) ? $configuration['service_manager'] : array();
$this->serviceManager = new ServiceManager(new Service\ServiceManagerConfig($smConfig));
$this->serviceManager->setService('ApplicationConfig', $configuration);
$this->serviceManager->get('ModuleManager')->loadModules();
}
/**
* Get the application
*
* @return Zend\Mvc\Application
*/
public function getApplication()
{
return $this->getServiceManager()->get('Application');
}
/**
* Get the module manager
*
* @return Zend\ModuleManager\ModuleManager
*/
public function getModuleManager()
{
return $this->getServiceManager()->get('ModuleManager');
}
/**
* Get module
*
* @return mixed
*/
public function getModule($moduleName)
{
return $this->getModuleManager()->getModule($moduleName);
}
/**
* Get the service manager
*
* @var ServiceManager
*/
public function getServiceManager()
{
return $this->serviceManager;
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
18334 |
Liz Lam |
initial add of jambox |
|
|