Ecstore为自建模块lottery添加自定义主题模板
一:
/app/site/lib/theme/tmpl/dbsave.php
/app/site/lib/theme/tmpl/fssave.php
在__get_tmpl_list函数里添加:
‘lottery’=>app::get(‘lottery’)->_(‘转盘积分’);
‘special’=>app::get(‘starbuy’)->_(‘精品团购’);
注意:左侧lottery,special指的是各自app下的默认controller,也作为下面模板set_tmpl用
二:
在自建模块的 controller 中,模板文件输出(即 $this->page(‘site/xxxxx.html’); )前添加:
$this->set_tmpl(‘lottery’);
$this->set_tmpl(‘special‘);