在ZF2中添加了动态模板图

时间:2012-11-30 09:59:53

标签: php zend-framework2

我必须硬编码才能添加新的布局。然后我想找到一些方法在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('Zend\Mvc\Controller\AbstractActionController', '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('Zend\Mvc\Controller\AbstractActionController', '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);

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

1 个答案:

答案 0 :(得分:0)

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

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

    return $viewModel;
}

确保layout.phtml文件位于您在template_map

中设置的路径中