我有以下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 和/或数据库访问以从数据库加载模块列表...
这是一个老问题,但我今天看到它试图做同样的事情。我的代码适用于 ZF3,但应该适用于 ZF2:
https://github.com/basicinvoices/basicinvoices-modulemanager
我遵循的基础知识...
ModuleManager::loadModule()
方法加载它们。我们还将其添加到模块数组中并将其设置回 ModuleManager
...仅此而已。