3

我想构建一个模块,我们喜欢使用 smarty 构建表单和表格。

在 prestashop 模块控制器中加载模板文件,如 /modules/my_module/views/templates/front/my_module.tpl

其中 admin 将是 /modules/my_module/views/templates/admin/admin_module.tpl

我的意思是如何在 prestashop 模块配置页面中显示这个 admin_module.tpl。

4

1 回答 1

7

这真的很容易。您只需要创建views/templates/admin/foo.tpl然后仅在getContent()方法中显示您的模板:

public function getContent()
{
    return $this->display(__FILE__, 'views/templates/admin/foo.tpl');
}
于 2014-06-28T19:51:34.263 回答