我有以下application.config
return array(
'modules' => array(
'Application',
'ErrorHandler'
),
'module_listener_options' => array(
'module_paths' => array(
'./module',
'./vendor'
),
'config_glob_paths' => array(
'config/autoload/{,*.}{global,local}.php'
)
)
);
在Application / Module.php中我有(很少有函数):
public function onBootstrap(MvcEvent $e)
{
$eventManager = $e->getApplication()->getEventManager();
$moduleRouteListener = new ModuleRouteListener();
$moduleRouteListener->attach($eventManager);
$this->initModules($e);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
private function getModules(MvcEvent $e) {
$sm = $e->getApplication()->getServiceManager();
$moduleTable = $sm->get('ModuleTable');
$modules = array();
foreach ($moduleTable->fetchAll() as $m) {
$modules[] = $m;
}
return $modules;
}
private function initModules(MvcEvent $e) {
$modules = $this->getModules($e);
$serviceManager = $e->getApplication()->getServiceManager();
$moduleManager = $serviceManager->get('ModuleManager');
$loadedModules = $moduleManager->getLoadedModules();
foreach ($loadedModules as $module) {
$this->loadedModules[] = str_replace('\Module', '', get_class($module));
}
foreach ($modules as $module) {
try {
$moduleManager->loadModule($module->getName());
$this->loadedModules[] = $module->getName();
} catch (\Exception $e) {
$this->failedModules[] = $module->getName();
}
}
if (count($this->failedModules) > 0) {
// Error in loading modules
exit;
}
return $this;
}
public function getServiceConfig()
{
return array(
'factories' => array(
'ModuleTable' => function($sm) {
return new ModuleTable($sm->get('Zend\Db\Adapter\Adapter'));
},
),
);
}
我在这里要实现的是根据数据库中的设置动态加载模块。
我在加载模块时没有错误...当我尝试回调$ moduleManager-> getLoadedModules();我看到模块在加载列表中,但其配置和功能不起作用。具体来说,我在该模块中有路由,当我尝试访问它们时,我得到404.但如果我在application.config中包含该模块,那么一切都很完美。
可能实现?如果有的指导方针?
由于
更新
我设法在Module :: init()方法中动态加载模块......但是没有成功访问ServiceManager和/或db访问以从db加载模块列表......
答案 0 :(得分:0)
这是一个老问题,但我今天看到它试图做同样的事情。我的代码面向ZF3,但应该适用于ZF2:
https://github.com/basicinvoices/basicinvoices-modulemanager
我遵循的基础知识......
ModuleManager::loadModule()
方法加载它们。我们还将它添加到模块阵列并将其重新设置为ModuleManager
......那就是它。