如何 link 包含多个 tpl 文件的模块?
How to link module with multiple tpl file?
有什么方法可以添加 link 任何具有多个模板 (.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';}
但是这个例子不起作用。
对于 new.tpl,您必须创建一个名为 new
的模块
方法如下:
创建catalog/controller/custom/new.php
<?php
class ControllerCustomNew extends Controller {
public function index() {
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/custom/new.tpl')) {
$this->template = $this->config->get('config_template') . '/template/common/new.tpl';
} else {
$this->template = 'default/template/common/new.tpl';
}
$this->response->setOutput($this->render());
}
}
?>
在 catalog/view/theme/default/template/custom/new.tpl
下创建一个 new.tpl 文件
<p>This is new module content</p>
在 create catalog/controller/custom/welcome.php
下创建自定义欢迎控制器
<?php
class ControllerCustomWelcome extends Controller {
public function index() {
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/custom/welcome.tpl')) {
$this->template = $this->config->get('config_template') . '/template/custom/welcome.tpl';
} else {
$this->template = 'default/template/custom/welcome.tpl';
}
$this->children = array(
'common/column_left',
'common/column_right',
'common/content_top',
'common/content_bottom',
'common/footer',
'common/header',
'custom/new'
);
$this->response->setOutput($this->render());
}
}
?>
在 catalog/view/theme/default/template/custom/welcome.tpl
下创建一个 welcome.tpl 文件
<?php echo $header;?>
<p>This is Welcome module content</p>
<?php echo $new; ?> <!-- new module content -->
<?php echo $footer; ?>
在前端加载欢迎模块,即 http://yourdomain.com/index.php?route=custom/welcome
有什么方法可以添加 link 任何具有多个模板 (.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';}
但是这个例子不起作用。
对于 new.tpl,您必须创建一个名为 new
的模块方法如下:
创建catalog/controller/custom/new.php
<?php class ControllerCustomNew extends Controller { public function index() { if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/custom/new.tpl')) { $this->template = $this->config->get('config_template') . '/template/common/new.tpl'; } else { $this->template = 'default/template/common/new.tpl'; } $this->response->setOutput($this->render()); } } ?>
在 catalog/view/theme/default/template/custom/new.tpl
下创建一个 new.tpl 文件<p>This is new module content</p>
在 create catalog/controller/custom/welcome.php
下创建自定义欢迎控制器<?php class ControllerCustomWelcome extends Controller { public function index() { if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/custom/welcome.tpl')) { $this->template = $this->config->get('config_template') . '/template/custom/welcome.tpl'; } else { $this->template = 'default/template/custom/welcome.tpl'; } $this->children = array( 'common/column_left', 'common/column_right', 'common/content_top', 'common/content_bottom', 'common/footer', 'common/header', 'custom/new' ); $this->response->setOutput($this->render()); } } ?>
在 catalog/view/theme/default/template/custom/welcome.tpl
下创建一个 welcome.tpl 文件<?php echo $header;?> <p>This is Welcome module content</p> <?php echo $new; ?> <!-- new module content --> <?php echo $footer; ?>
在前端加载欢迎模块,即
http://yourdomain.com/index.php?route=custom/welcome