防止在Zend Framework 2中合并两个模块配置

时间:2015-12-28 07:58:41

标签: php zend-framework zend-framework2 zend-config

我的ZF2应用程序中有两个模块,两个模块都有不同的配置,两个模块都有不同的Module.php,里面有不同的配置。

我有一个Admin的登录过程,在Module.php中定义如下: 在onBootstrap功能:

public function onBootstrap($e) {        
        $e->getApplication()->getEventManager()->getSharedManager()->attach('Zend\Mvc\Controller\AbstractActionController', 'dispatch', function($e) {
            $controller = $e->getTarget();
            $controllerClass = get_class($controller);
            $moduleNamespace = substr($controllerClass, 0, strpos($controllerClass, '\\'));
            if ('Admin' === $moduleNamespace) {
                $controller->layout('layout/admin');
            }
        }, 100);

        $application = $e->getApplication();
        $eventManager = $application->getEventManager();
        ..........
        ..........
        $eventManager->attach(MvcEvent::EVENT_DISPATCH, array($this, 'boforeDispatch'), 100);
    }

boforeDispatch函数,在onBootstrap内调用以进行登录过程检查

function boforeDispatch(MvcEvent $event) {
    ......
    //did something
    ......
}

每当我要运行Front模块时,管理模块的功能在运行之前运行。我还尝试在Front模块中定义另一个函数,里面没有内容,因此无法合并它。

2

我为这两个模块编写了不同的404模板,但正在运行Front模板。这是代码。:

'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/front'           => __DIR__ . '/../view/layout/layout.phtml',
            'front/index/index' => __DIR__ . '/../view/front/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),

这两个文件都在其模块文件夹中,结构相同。 问:如何防止将一个模块配置与另一个模块配置合并?

2 个答案:

答案 0 :(得分:2)

你不应该阻止合并。为2个模块加载不同的布局存在类似的问题 - 看看https://stackoverflow.com/a/11921330/949273

不幸的是,您的问题有点矛盾,因为如果您有404页面,则无法知道该模块是什么 - 因为它被称为 404页面未找到

无论如何,您可以发送 MvcEvent :: EVENT_DISPATCH_ERROR 事件并检查正则表达式URL并设置不同的视图文件。

代码示例

在您的管理模块配置

'template_map' => array(
    'error-admin/404' => __DIR__ . '/../view/error/404.phtml',
),

而不是EVENT_DISPATCH_ERROR注入你的逻辑

public function onBootstrap(MvcEvent $e)
{
    $app = $e->getTarget();
    $em  = $app->getEventManager();
    $em->attach(MvcEvent::EVENT_DISPATCH_ERROR, function (\Zend\Mvc\MvcEvent $e) {
        $app = $e->getParam('application');
        $uri = $app->getRequest()->getUri()->getPath();

        if(strpos($uri, '/admin') === 0){
            $view = new \Zend\View\Model\ViewModel();
            $view->setTemplate('error-admin/404');
            $e->setViewModel($view);
        }
    });
}

答案 1 :(得分:-2)

经过大量搜索,我得到了问题的解决方案。 主要问题是获取模块名称。这是我的代码。 我是在MvcEvent::getRouteMatch()->getParam()

的帮助下生成的
function boforeDispatch(MvcEvent $event) {
    $controller = $event->getRouteMatch()->getParam('controller');
    $request_module = substr($controller, 0, strpos($controller, '\\'));  
    if ($request_module == __NAMESPACE__) {
        //do stuff
    }
}