Header.php 638 B

123456789101112131415161718192021222324252627282930
  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. namespace fecadmin\views\layouts;
  10. use Yii;
  11. use fec\helpers\CUrl;
  12. class Header{
  13. public static function getContent(){
  14. return '<div class="headerNav">
  15. <a target="_blank" class="logo" href="http://www.fecshop.com">FECSHOP</a>
  16. <a style="color:#fff; display: block; height: 21px;position: absolute; right: 10px;top: 18px;z-index: 31;"
  17. href="'.CUrl::getUrl("fecadmin/logout").'">
  18. 退出
  19. </a>
  20. </div>';
  21. }
  22. }
  23. ?>