模板和布局如何由控制器magento调用?

时间:2015-02-25 04:06:09

标签: magento

调用控制器时,在magento中调用布局和模板的过程是什么?

1 个答案:

答案 0 :(得分:1)

有两个函数负责调用布局和渲染布局。

基本上,我们在config.xml

中定义布局文件
 <layout>
            <updates>
                <custommodule>
                    <file>custommodule.xml</file>
                </custommodule>
            </updates>
        </layout>

在控制器上,使用函数$this->loadLayout()加载布局,然后$this->renderLayout()函数渲染布局