header.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <div class="toptop">
  11. <a href=""><img width="100%" src="<?= Yii::$service->image->getImgUrl('custom/top_top.png','appfront'); ?>" /></a>
  12. </div>
  13. <div id="top_nav">
  14. <input type="hidden" class="currentBaseUrl" value="<?= $currentBaseUrl ?>" />
  15. <input type="hidden" class="logoutUrl" value="<?= $logoutUrl ?>" />
  16. <input type="hidden" class="logoutStr" value="<?= Yii::$service->page->translate->__('Logout'); ?>" />
  17. <input type="hidden" class="welcome_str" value="<?= Yii::$service->page->translate->__('Welcome!'); ?>" />
  18. <div class="top_nav_inner">
  19. <table>
  20. <tr>
  21. <td width="30%">
  22. <div class="top_nav_left">
  23. <dl class="top_lang">
  24. <dt><span class="current_lang" rel="<?= $currentStore ?>"><?= $currentStoreLang ?>&nbsp;<i class="fa fa-angle-down"></i></span></dt>
  25. <dd class="lang_list">
  26. <ul>
  27. <?php foreach($stores as $store=> $langName): ?>
  28. <li class="store_lang" rel="<?= $store ?>"><a href="javascript:void(0)"><?= $langName ?></a></li>
  29. <?php endforeach; ?>
  30. </ul>
  31. </dd>
  32. </dl>
  33. <!-- 币种选择 -->
  34. <dl class="top_currency">
  35. <dt><span class="current_currency"><label><?= $currency['symbol'] ?></label><?= $currency['code'] ?>&nbsp;<i class="fa fa-angle-down"></i></span></dt>
  36. <dd class="currency_list">
  37. <ul>
  38. <?php foreach($currencys as $c): ?>
  39. <li rel="<?= $c['code'] ?>"><label><?= $c['symbol'] ?></label><a href="#"><?= $c['code'] ?></a></li>
  40. <?php endforeach; ?>
  41. </ul>
  42. </dd>
  43. </dl>
  44. </div>
  45. </td>
  46. <td width="40%">
  47. <div class="logo">
  48. <a titel="fecshop logo" href="<?= $homeUrl ?>" style="">
  49. <img src="<?= Yii::$service->image->getImgUrl('custom/logo.png','appfront'); ?>" />
  50. </a>
  51. </div>
  52. </td>
  53. <td width="30%">
  54. <div class="top_nav_right">
  55. <div class="topSeachForm">
  56. <?= Yii::$service->page->widget->render('topsearch',$this); ?>
  57. </div>
  58. <dl class="top_account t_r">
  59. <dt>
  60. <i class="icon ion-md-help" aria-hidden="true"></i>
  61. </dt>
  62. <dd style="">
  63. <ul>
  64. <li><a href="">Contact Us</a> </li>
  65. <li><a href="">FAQs</a> </li>
  66. </ul>
  67. </dd>
  68. </dl>
  69. <dl class="top_account t_r">
  70. <dt>
  71. <i class="icon ion-md-contact" aria-hidden="true"></i>
  72. </dt>
  73. <dd style="">
  74. <ul>
  75. <li>
  76. <span id="js_isNotLogin">
  77. <a href="<?= Yii::$service->url->getUrl('customer/account/login') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('Sign In / Join Free'); ?></a>
  78. </span>
  79. </li>
  80. <li><a href="<?= Yii::$service->url->getUrl('customer/account') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Account'); ?></a></li>
  81. <li><a href="<?= Yii::$service->url->getUrl('customer/order') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Orders'); ?></a></li>
  82. <li><a href="<?= Yii::$service->url->getUrl('customer/productfavorite') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Favorites'); ?></a></li>
  83. <li><a href="<?= Yii::$service->url->getUrl('customer/productreview') ?>" rel="nofollow"><?= Yii::$service->page->translate->__('My Review'); ?></a></li>
  84. </ul>
  85. </dd>
  86. </dl>
  87. <div class="top_account t_r">
  88. <dt>
  89. <a href="<?= Yii::$service->url->getUrl('checkout/cart') ?>">
  90. <span id="js_topBagWarp"> <i class="icon ion-md-cart"></i><span class="mycart-text" id="js_cart_items">0</span></span>
  91. </a>
  92. </dt>
  93. </div>
  94. </div>
  95. </td>
  96. </tr>
  97. </table>
  98. </div><!--end .top_nav_inner-->
  99. </div><!--end #top_nav-->