opencart架構(gòu)網(wǎng)站,magento模板創(chuàng)建
2022-11-04 10:40:07 - 米境通跨境電商
在opencart中假如我想創(chuàng)建一個側(cè)邊欄模塊sidebar,讓每一個頁面都可以復(fù)用,步驟如下:
1.在controller/module目錄下新建sidebar.php文件。
2.添加文件內(nèi)容為:
classControllerModuleSidebarextendsController{
protectedfunctionindex($setting){
$this->template=$this->config->get('config_template').'/template/module/sidebar.tpl';
$this->render();
}
}
3.在template/module創(chuàng)建sidebar.tpl模板文件。
4.在調(diào)用的controller引用:
$this->data['sidebar']=$this->getChild('module/sidebar');
5.在模板文件使用:
echo$sidebar;