1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecadmin\views\layouts;
- use Yii;
- use fec\helpers\CUrl;
- class Footer{
- public static function getContent(){
- 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>';
-
- }
-
-
- }
- ?>
|