1234567891011121314151617181920212223242526272829303132 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Released under the MIT License.
- // +----------------------------------------------------------------------
- // | Author: 老猫 <thinkcmf@126.com>
- // +----------------------------------------------------------------------
- namespace app\demo\controller;
- use cmf\controller\HomeBaseController;
- class IndexController extends HomeBaseController
- {
- public function index()
- {
- return $this->fetch(':index');
- }
- public function block()
- {
- return $this->fetch();
- }
- public function ws()
- {
- return $this->fetch(':ws');
- }
- }
|