1234567891011121314151617181920212223242526272829303132 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 老猫 <thinkcmf@126.com>
- // +----------------------------------------------------------------------
- namespace app\portal\controller;
- use cmf\controller\HomeBaseController;
- class SearchController extends HomeBaseController
- {
- /**
- * 搜索
- * @return mixed
- */
- public function index()
- {
- $keyword = $this->request->param('keyword');
- if (empty($keyword)) {
- $this -> error("关键词不能为空!请重新输入!");
- }
- $this -> assign("keyword", $keyword);
- return $this->fetch('/search');
- }
- }
|