博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
magento 多语言
阅读量:4199 次
发布时间:2019-05-26

本文共 2509 字,大约阅读时间需要 8 分钟。

page/switdch/languages.phtml

<?php

/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
?>
<?php
/**
 * Language switcher template
 *
 * @see Mage_Page_Block_Switch
 */
?>
<?php if(count($this->getStores())>1): ?>
<div class="form-language">
    
    
    <div class="lan">
             
     <?php
         $i =1;
         $SID = Mage::app()->getRequest()->getParam('SID');
     ?>
    
         <?php foreach ($this->getStores() as $_lang): ?>
                <?php if($i ==1){ $i++; ?>
                
                  <?php  if(!Mage::getSingleton( 'customer/session' )->isLoggedIn()){ ?>
                          <a href="<?php
                        $url =  $_lang->getCurrentUrl();
                        if(strstr($url,"?")){
                            $url = substr($url,0,strpos($url,"?"));
                        }
                        echo $url;?>" <?php  if($_lang->getId()==$this->getCurrentStoreId()){echo "class='active'"; } ?>><?php echo $this->__($this->htmlEscape($_lang->getName())) ?></a>
                
                  <?php }else{ ?>
                           <a href="<?php
                        $url =  $_lang->getCurrentUrl();
                        echo $url;?>" <?php  if($_lang->getId()==$this->getCurrentStoreId()){echo "class='active'"; } ?>><?php echo $this->__($this->htmlEscape($_lang->getName())) ?></a>
                  <?php } ?>
                       
                    
                    
                <?php }else{ ?>
                
                         <?php  if(!Mage::getSingleton( 'customer/session' )->isLoggedIn()){ ?>
                          <a href="<?php
                        $url =  $_lang->getCurrentUrl();
                        if(strstr($url,"?")){
                            $url = substr($url,0,strpos($url,"?"));
                        }
                        echo $url;?>" <?php  if($_lang->getId()==$this->getCurrentStoreId()){echo "class='active'"; } ?>>.<?php echo $this->__($this->htmlEscape($_lang->getName())) ?></a>
                
                  <?php }else{ ?>
                           <a href="<?php
                        $url =  $_lang->getCurrentUrl();
                        echo $url;?>" <?php  if($_lang->getId()==$this->getCurrentStoreId()){echo "class='active'"; } ?>>.<?php echo $this->__($this->htmlEscape($_lang->getName())) ?></a>
                  <?php } ?>
                
                
                <?php } ?>
            <?php endforeach; ?>
            
         </div>    
            
            
            
</div>
<?php endif; ?>

转载地址:http://zabli.baihongyu.com/

你可能感兴趣的文章
Redis源码剖析--字典dict
查看>>
Redis源码剖析--跳跃表zskiplist
查看>>
Redis源码剖析--整数集合Intset
查看>>
Redis源码剖析--对象object
查看>>
Redis源码剖析--字符串t_string
查看>>
Redis源码剖析--快速列表quicklist
查看>>
Redis源码剖析--列表list
查看>>
Android开发学习 之 五、基本界面控件-4时间控件
查看>>
详细解读Jquery的$.get(),$.post(),$.ajax(),$.getJSON()用法
查看>>
同步与异步的区别
查看>>
IT行业--简历模板及就业秘籍
查看>>
JNI简介及实例
查看>>
DOM4J使用教程
查看>>
JAVA实现文件树
查看>>
Drools 规则引擎
查看>>
OLTP和OLAP区别
查看>>
JMeter最常用的三种类型的压力测试
查看>>
Hibernate HQL 语法大全(上)
查看>>
深入Java事务的原理与应用
查看>>
CSS单位和CSS默认值大全
查看>>