duanhuan1147 2014-10-02 23:37
浏览 61
已采纳

Opencart 2.0从admin或前端获取配置值也是Permission

Is it possible in opencart 2.0 to get the value from the settings. For example as it was in previous opencart versions I could store value to database via settings, thus I did not need any model file to write to database and then from anywhere I could get the value by:

$this->config->get('key_that_you_need');

... Now this still works but only when in controller. What I need is to get the value even when I'm in template file (*.tpl)

When I want to use this in *.tpl file I get this error:

Notice: Undefined property: Loader::$config

same situation applies for permissions... now you can't use this example from template:

<?php if($this->user->hasPermission('access','catalog/attribute')) { ?>

...however it is still functional in controller file

Does anyone know if it is possible or some workaround ?

  • 写回答

1条回答 默认 最新

  • dpvr49226 2014-10-03 00:12
    关注

    You shouldn't be using it in your template in the first place - You should be setting the data for the in your controller and passing that to the template. However You can do this pretty easily. Firstly, you need to bring the $config variable into the template and then call it directly, not use $this

    <?php
    global $config;
    $somevar = $config->get('key_that_you_need');
    ?>
    

    Not tested but should still work just fine

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来