我正在使用opencart开源电子商务网站。我遇到的主要问题是当我尝试将面包屑分成我包含在每个.tpl文件中的单个文件时。我尝试过使用基本的PHP include方法,虽然这不起作用。
回复周杰伦的回答:
我创建了一个新的面包屑控制器,用于呈现单独的面包屑模板文件。
<?php
class ControllerCommonBreadcrumb extends Controller {
public function index() {
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/breadcrumbs.tpl')) {
$this->template = $this->config->get('config_template') . '/template/common/breadcrumbs.tpl';
} else {
$this->template = 'default/template/common/breadcrumbs.tpl';
}
$this->render();
}
}
?>
虽然这会导致错误:
Notice: Undefined variable: breadcrumbs
答案 0 :(得分:1)
要执行此操作,您需要首先使用$ this-&gt; children将面包屑模板设置为控制器操作的子项,然后用它回显面包屑。您还需要设置面包屑控制器的ID,以便您知道在模板中回显什么
就我个人而言,我只是将面包屑添加到common / header.tpl文件中,它更容易