opencart html模板引擎,opencart 引入 TWIG 模板引擎

1.首先将 twig 包放入 system\library 目录。2.在 system/startup.php 文件最后添加引入语句。require_once(DIR_SYSTEM . 'library/Twig-1.12.3/lib/Twig/Autoloader.php');3.在 index.php 文件中,加入twig引擎初始化语句。//twigTwig_Autoloader::register();$twigLoader = new Twig_Loader_Filesystem(DIR_TEMPLATE);$twig = new Twig_Environment($twigLoader, array('cache' => DIR_CACHE,));$registry->set('twig', $twig);4.修改opencart框架控制层引擎类,添加 twigRender 渲染方法。(关键一步,此方法会保留原始的模板渲染方法,保证兼容性。)protected function twigRender() {foreach ($this->children as $child) {$this->data[basename($child)] = $this->getChild($child);}if (file_exists(DIR_TEMPLATE . $this->template)) {$this->output = $this->twig->render($this->template, $this->data);return $this->output;} else {trigger_error('Error: Could not load template ' . DIR_TEMPLATE . $this->template . '!');exit();}}5.在控制层,调用新的渲染方法。$this->response->setOutput($this->twigRender());6.测试首页模板文件。{{ header|raw }}{{ column_left|raw }}{{ column_right|raw }}

{{ content_top|raw }}

` heading_title `

{{ content_bottom|raw }}
{{ footer|raw }}7.加入twig模板引擎之后的OP,相信会更加的强大。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值