123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <div class="toptop">
- <a href=""><img width="100%" src="<?= Yii::$service->image->getImgUrl('custom/top_top.png','appfront'); ?>" /></a>
- </div>
- <div id="top_nav">
- <input type="hidden" class="currentBaseUrl" value="<?= $currentBaseUrl ?>" />
- <input type="hidden" class="logoutUrl" value="<?= $logoutUrl ?>" />
- <input type="hidden" class="logoutStr" value="<?= Yii::$service->page->translate->__('Logout'); ?>" />
- <input type="hidden" class="welcome_str" value="<?= Yii::$service->page->translate->__('Welcome!'); ?>" />
- <div class="top_nav_inner">
- <table>
- <tr>
- <td width="30%">
- <div class="top_nav_left">
- <dl class="top_lang">
- <dt><span class="current_lang" rel="<?= $currentStore ?>"><?= $currentStoreLang ?> <i class="fa fa-angle-down"></i></span></dt>
- <dd class="lang_list">
- <ul>
- <?php foreach($stores as $store=> $langName): ?>
- <li class="store_lang" rel="<?= $store ?>"><a href="javascript:void(0)"><?= $langName ?></a></li>
- <?php endforeach; ?>
- </ul>
- </dd>
- </dl>
- <!-- 币种选择 -->
- <dl class="top_currency">
- <dt><span class="current_currency"><label><?= $currency['symbol'] ?></label><?= $currency['code'] ?> <i class="fa fa-angle-down"></i></span></dt>
- <dd class="currency_list">
- <ul>
- <?php foreach($currencys as $c): ?>
- <li rel="<?= $c['code'] ?>"><label><?= $c['symbol'] ?></label><a href="#"><?= $c['code'] ?></a></li>
- <?php endforeach; ?>
- </ul>
- </dd>
- </dl>
- </div>
- </td>
- <td width="40%">
- <div class="logo">
- <a titel="fecshop logo" href="<?= $homeUrl ?>" style="">
- <img src="<?= Yii::$service->image->getImgUrl('custom/logo.png','appfront'); ?>" />
- </a>
- </div>
- </td>
- <td width="30%">
- <div class="top_nav_right">
- <div class="topSeachForm">
- <?= Yii::$service->page->widget->render('topsearch',$this); ?>
- </div>
- <dl class="top_account t_r">
- <dt>
- <i class="icon ion-md-help" aria-hidden="true"></i>
- </dt>
- <dd style="">
- <ul>
- <li><a href="">Contact Us</a> </li>
- <li><a href="">FAQs</a> </li>
- </ul>
- </dd>
- </dl>
- <dl class="top_account t_r">
- <dt>
- <i class="icon ion-md-contact" aria-hidden="true"></i>
- </dt>
- <dd style="">
- <ul>
- <li>
- <span id="js_isNotLogin">
- <a href="<?= Yii::$service->url->getUrl('customer/account/login') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('Sign In / Join Free'); ?></a>
- </span>
- </li>
- <li><a href="<?= Yii::$service->url->getUrl('customer/account') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Account'); ?></a></li>
- <li><a href="<?= Yii::$service->url->getUrl('customer/order') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Orders'); ?></a></li>
- <li><a href="<?= Yii::$service->url->getUrl('customer/productfavorite') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Favorites'); ?></a></li>
- <li><a href="<?= Yii::$service->url->getUrl('customer/productreview') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Review'); ?></a></li>
- </ul>
- </dd>
- </dl>
- <div class="top_account t_r">
- <dt>
- <a href="<?= Yii::$service->url->getUrl('checkout/cart') ?>">
- <span id="js_topBagWarp"> <i class="icon ion-md-cart"></i><span class="mycart-text" id="js_cart_items">0</span></span>
- </a>
- </dt>
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div><!--end .top_nav_inner-->
- </div><!--end #top_nav-->
-
|