dongshan2004 2013-03-06 16:42
浏览 91
已采纳

OpenCart:如何制作全局变量?

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 
  • 写回答

2条回答 默认 最新

  • doucong7963 2013-03-06 17:18
    关注

    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?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置