我想构建一个模块,我们希望使用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。
答案 0 :(得分:7)
真的很容易。您只需创建views/templates/admin/foo.tpl
,然后只在getContent()
方法中显示您的模板:
public function getContent()
{
return $this->display(__FILE__, 'views/templates/admin/foo.tpl');
}