OpenCart: How to make a global variable?

匿名 (未验证) 提交于 2019-12-03 09:02:45

问题:

I am trying to make two global variables within OpenCart. I basically want to be able to declare them in any of my .tpl files

<?php echo $global1; ?> 

I have tried editing, library/system.php and also config.php by adding $global1="test" inside my files. However calling that in .tpl files is not working?

Example, look at the file below, I want to be able to call these variables anytime.. do I have to edit config.php or what?? The example shows the $header call which is used on every .tpl file.

not_found.tpl

<?=$header?> <div class="breadcrumb"> <? foreach ($breadcrumbs as $breadcrumb) { ?>     <? $breadcrumb['separator']; ?><a href="<?=$breadcrumb['href']?>"><?=$breadcrumb['text']?></a> <? } ?> </div> <div id="content">     <?=$global1?>     <img src="/catalog/view/theme/default/image/error.png"/> </div> <?=$footer?> 

Updated

/catalog/controller/common/header.php

<?php    class ControllerCommonHeader extends Controller {       protected function index() {          // NEW GLOBAL VARS         $cdnDefault="//www.gorgeouscouturedev.com/catalog/view/theme/";         $currentUseLang = $this->language->get('code');  

And now in /catalog/view/theme/default/template/common/home.tpl

<?=$header?> <?=$column_left?> <?=$column_right?> <div id="content">  <? echo $cdnDefault ?> <? echo $currentUseLang ?>      <?=$content_top?>         <div class="flexslider">             <ul class="slides">                 <li><img src="catalog/view/theme/default/image/desktop.png"/></li>                 <li><img src="catalog/view/theme/default/image/blogger.png"/></li>             </ul>         </div>     <?=$content_bottom?> </div> <?=$footer?> 

And the errors:

 Notice: Undefined variable: cdnDefault in /catalog/view/theme/default/template/common/home.tpl on line 6  Notice: Undefined variable: currentUseLang in /catalog/view/theme/default/template/common/home.tpl on line 7  

回答1:

you can use $GLOBALS super global array

for example declare it first in controller/common/header.php

$GLOBALS["1"] = "test"; 

then use it in any tpl file like

<?php echo $GLOBALS["1"]; ?> 

regarding that header thing, that header and five other files are actually declared in every controller file (corresponding to every tpl file ) like this

$this->children = array(             'common/column_left',             'common/column_right',             'common/content_top',             'common/content_bottom',             'common/footer',             'common/header'              ); 

Answer to updated question

/catalog/controller/common/header.php

<?php    class ControllerCommonHeader extends Controller {       protected function index() {          // NEW GLOBAL VARS      $GLOBALS["cdnDefault"]="//www.gorgeouscouturedev.com/catalog/view/theme/";      $GLOBALS["currentUseLang"] = $this->language->get('code'); 

And now in /catalog/view/theme/default/template/common/home.tpl

<?=$header?> <?=$column_left?> <?=$column_right?> <div id="content">  <? echo $GLOBALS["cdnDefault"]; ?> <? echo $GLOBALS["currentUseLang"]; ?>      <?=$content_top?>         <div class="flexslider">             <ul class="slides">                 <li><img src="catalog/view/theme/default/image/desktop.png"/></li>                 <li><img src="catalog/view/theme/default/image/blogger.png"/></li>             </ul>         </div>     <?=$content_bottom?> </div> <?=$footer?> 


回答2:

If you are just wanting to use a static value, you can just use a constant. Simply create one in your config.php file(s) such as

define('CDN_URL', 'http://cdn.someurl.com/'); 

You can then use

<?php echo CDN_URL; ?> 

anywhere in your application. If you want to code it like you have in your edited question, th fundamental flaw with your code is that you are using $cdnDefault instead of $this->data['cdnDefault'] in your controller file, causing the undefined issue. Note however that this variable is not global in the slightest, it's merely been coded as it should be

In my opinion, the right way to do this would be to create a new setting value for you to edit in SYSTEM > SETTINGS in your administration area, and then call it using $this->config->get('config_value_here') rather than take what is considered more of a quick hack method



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!