在ZF2中添加了动态模板图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ZF2中添加了动态模板图相关的知识,希望对你有一定的参考价值。

我必须硬编码才能添加新的布局。然后我想找到一些方法在ZF2中添加模板地图动态。

我的module.config.php

'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/layout' => __DIR__ . '/../../../template/layout/layout.phtml',
            'layout/custom' => __DIR__ . '/../../../template/layout/custom.phtml',
            'error/404' => __DIR__ . '/../../../template/error/404.phtml',
            'error/index' => __DIR__ . '/../../../template/error/index.phtml' 
    ),
    'template_path_stack' => array (
            __DIR__ . '/../view/'
    ) 
) 

我通过这种方式设置了新的布局

$e->getApplication()->getEventManager()->getSharedManager()->attach('ZendMvcControllerAbstractActionController', 'dispatch', function($e) {
    $controller = $e->getTarget();
    $controller->layout('template_name');
}, 100);

请给我一些建议/样品

谢谢 !

==================

2012年12月12日更新:

我找到了解决方案并适用于我的“层次结构模板系统”

修改module.config.php

'template_path_stack' => array (
     __DIR__ . '/../view/',
 __DIR__ . '/../../../' //Parent folder of template path
) 

在Module.php中添加:

$e->getApplication()->getEventManager()->getSharedManager()->attach('ZendMvcControllerAbstractActionController', 'dispatch', function($e) {
    $controller = $e->getTarget();
    $controllerClass = get_class($controller);


    //Get routing info
    $controllerArr = explode('\', $controllerClass);
    $currentRoute = array(
        'module' =>  strtolower($controllerArr[0]),
        'controller' => strtolower(str_replace("Controller", "", $controllerArr[2])),
        'action' => strtolower($controller->getEvent()->getRouteMatch()->getParam('action'))
    );


    //Get curr route
    $currAction = implode('/',$currentRoute);
    $currController = $currentRoute['module'] . '/' . $currentRoute['controller'];
    $currModule = $currentRoute['module'];



    //Template file location
    $templatePath = __DIR__ .'/../../template/';

    //Set template
    $template = 'layout/layout'; // Default template

    if (file_exists($templatePath . $currAction.'.phtml')) {
        $template = $currAction;
    }else if(file_exists($templatePath . $currController.'.phtml')) {
        $template = $currController;
    }else if(file_exists($templatePath . $currModule.'.phtml')) {
        $template = $currModule;
    }else{
        if($currentRoute['controller']=='admin'){
            $template = 'admin/layout'; // Admin default template
        }
    }

    $controller->layout('template/'.$template); //Pevert duplicate layout
}, 100);

注意:如果在“布局”和“视图”之间设置键相同的变量。它会渲染重复的“布局”并且不了解您当前的视图

答案

在创建新视图模型的控制器中,您可以设置您在那里创建的模板。

public function someAction() {
    $viewModel = new ViewModel();
    $viewModel->setTemplate('layout/custom');

    return $viewModel;
}

只需确保layout.phtml文件位于您在template_map中设置的路径中

以上是关于在ZF2中添加了动态模板图的主要内容,如果未能解决你的问题,请参考以下文章

ZF2:我在哪里存储 partialLoop 模板文件?

在片段中动态添加文本视图

zf2,表单集合没有在zf2中创建正确的输入名称

如何把视频片段做成动态图片

如何在扩展另一个文件的 django 模板中使用带有动态内容的 html 块片段?

为电子邮件模板中动态添加的 html 代码设置样式