1

我正在做一个 ZF2 项目,我的目录中有一些模块:

/module/module1
/module/module2
/module/module3
/module/module4
[...]

但是,在每个模块中,我也分别有一个特定的布局:

/module/module1/view/layout/layout.phtml
/module/module2/view/layout/layout.phtml
/module/module3/view/layout/layout.phtml
/module/module4/view/layout/layout.phtml

我的问题是:如何为所有模块设置通用布局,而无需在需要时修改每个布局。

谢谢

4

1 回答 1

8

您可以在每个模块配置中将布局设置为您想要的任何内容,只需将布局更改为您想要的任何内容:

module.config.php 或内部 getConfig()

'view_manager' => array(
    // other stuff here.. 
    'template_map' => array(
        // use Applications layout instead
        'layout/layout' => __DIR__ . '/../Application/view/application/layout/layout.phtml',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),

或者您可以设置每个模块以选择性地在 Module.php 中设置其布局:

模块.php

/**
 * Initialize
 */
public function init(ModuleManager $manager)
{
    $events = $manager->getEventManager();
    $sharedEvents = $events->getSharedManager();
    $sharedEvents->attach(__NAMESPACE__, 'dispatch', function($e) {
        /* @var $e \Zend\Mvc\MvcEvent */
        // fired when an ActionController under the namespace is dispatched.
        $controller = $e->getTarget();
        $routeMatch = $e->getRouteMatch();
        /* @var $routeMatch \Zend\Mvc\Router\RouteMatch */
        $routeName = $routeMatch->getMatchedRouteName();
        $controller->layout('application/layout/layout');
    }, 100);
}
于 2013-05-24T10:12:18.893 回答