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 ?