有没有办法添加链接任何具有多个模板(.tpl
)文件的模块?
我不确定,但像这样:OpenCart 欢迎控制器文件。
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/welcome.tpl')){
$this->template = $this->config->get('config_template') . '/template/module/welcome.tpl';
$this->template = $this->config->get('config_template') . '/template/module/new.tpl';
}else{
$this->template = 'default/template/module/welcome.tpl';}
但是这个例子不起作用。