动态加载ZF2模块

时间:2015-01-07 19:45:14

标签: zend-framework2 zend-framework-mvc zend-framework-modules

我有以下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加载模块列表......

1 个答案:

答案 0 :(得分:0)

这是一个老问题,但我今天看到它试图做同样的事情。我的代码面向ZF3,但应该适用于ZF2:

https://github.com/basicinvoices/basicinvoices-modulemanager

我遵循的基础知识......

  1. 等待模块加载(ModuleEvent :: EVENT_LOAD_MODULES_POST),这样我们就可以访问数据库配置了。我用高优先级(9000)连接到它,以确保它在其他事件之前运行。
  2. 此时我加载了数据库适配器。模块服务尚未分配,因此我们必须手动创建它,但这很容易。我们在尚未加载的数据库中搜索活动模块,然后使用ModuleManager::loadModule()方法加载它们。我们还将它添加到模块阵列并将其重新设置为ModuleManager
  3. 配置没有合并,并且某个点很好,好像配置已被缓存我们会遇到问题,如果模块已经在数据库中更改了......但它需要一个额外的步骤,我们应该检查是否模块有一个配置,如果有,我们将自己合并到合并的配置中。
  4. ......那就是它。