在./config/application.config.php
return array(
'modules' => array(
'Application',
'Admin',
)
...
我有两套独立的布局,./module/Application/view/layout/layout.phtml
和./module/Admin/view/layout/layout.phtml
在./module/Admin/config/module.config.php
...
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'header' => __DIR__ . '/../view/layout/header.phtml',
'footer' => __DIR__ . '/../view/layout/footer.phtml',
'paginator' => __DIR__ . '/../view/layout/paginator.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
)
...
在./module/Application/config/module.config.php
...
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'header' => __DIR__ . '/../view/layout/header.phtml',
'footer' => __DIR__ . '/../view/layout/footer.phtml',
'paginator' => __DIR__ . '/../view/layout/paginator.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
)
...
基本上它们是不同的集合,有些内容是不同的。不幸的是,两个模块仅加载位于In ./module/Admin/config/module.config.php
我用谷歌搜索但没有提供任何我想要的解决方案。有人对此有任何想法吗?
答案 0 :(得分:8)
您可能有兴趣知道您的配置实际上做了什么。 My Blog Post about this Topic,您可能会感兴趣。最终,所有配置文件将合并为一个。全局配置键在每个模块的基础上不;)
要实现目标,请阅读Evan Courys Blog Post "Module-specific layouts in ZF2"
Evan提供a Module "EdpModuleLayouts"让事情变得非常简单。但是,如果您只需要管理模块的一个替代布局,那么我建议您只需使用其博客文章的示例代码,通过AdminModule/Module::onBootstrap
class Module
{
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 ('AdminModule' === $moduleNamespace ) {
$controller->layout('layout/admin');
}
}, 100);
}
}
这不会将布局设置为layout/admin
。您需要通过配置提供此密钥:
'template_map' => array(
'layout/admin' => 'path/to/admin/module/view/layout/admin.phtml',
)