Footer.php 544 B

1234567891011121314151617181920212223242526272829303132
  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 Footer{
  13. public static function getContent(){
  14. return '<div style="position:absolute;z-index: 99999;" id="footer"> © 2015-2018 <a style="text-decoration:none" href="http://www.fecshop.com" target="_blank">Fecshop团队 - www.fecshop.com</a></div>';
  15. }
  16. }
  17. ?>