我正在为 PrestaShop 1.5开发一个模块Abc这是我的目录
23/10/2012 18:23 1.307 index.php
07/12/2012 18:27 <DIR> tpl
-> tpl dir:
07/12/2012 18:27 <DIR> .
07/12/2012 18:27 <DIR> ..
07/12/2012 18:39 543 form.tpl
07/12/2012 18:36 4.507 abc.php
这是我使用的代码:
class Abc extends Module
{
public function getContent()
{
return $this->display(dirname(__FILE__), 'tpl/form.tpl');
}
...
}
但是,当我使用 smarty{debug}
打印所有变量时
根据官方文档,我没有得到变量{img_dir}
或{shop_name}
我应该得到的变量。
我对放置模板的位置、主题的位置等感到困惑。我只需要后台(后端)页面。我究竟做错了什么?
谢谢