Index.php 909 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
  10. // +----------------------------------------------------------------------
  11. namespace app\cms\home;
  12. /**
  13. * 前台首页控制器
  14. * @package app\cms\admin
  15. */
  16. class Index extends Common
  17. {
  18. /**
  19. * 首页
  20. * @author 蔡伟明 <314013107@qq.com>
  21. * @return mixed
  22. */
  23. public function index()
  24. {
  25. return $this->fetch(); // 渲染模板
  26. }
  27. }