Files
sentcms/app/controller/admin/Index.php
molong 0b0d659c5e tp6更新到最新版本
目录结构调整
2019-09-12 23:57:10 +08:00

76 lines
1.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\controller\admin;
use app\controller\Admin;
use think\facade\Session;
use app\model\Menu;
/**
* @title 后端公共模块
*/
class Index extends Admin{
/**
* @title 系统首页
*/
public function index(){
return $this->data;
}
/**
* @title 系统首页
*/
public function dashboard(){
}
/**
* @title 更新缓存
*/
public function clear(){
if ($this->request->isAjax()) {
# code...
}else{
return $this->data;
}
}
/**
* @title 后台登录
*/
public function login(\app\model\Member $member){
if ($this->request->isAjax()) {
$username = $this->request->param('username', '');
$password = $this->request->param('password', '');
$user = $member->login($username, $password);
if ($user) {
Session::set('user', $user);
$this->data['url'] = "/admin/index/index.html";
$this->data['msg'] = "登录成功!";
}else{
Session::set('user', null);
$this->data['code'] = 1;
$this->data['msg'] = "登录失败!";
}
return $this->data;
}
}
/**
* @title 后台登出
*/
public function logout(){
Session::set('user', null);
$this->data['code'] = 0;
$this->data['msg'] = "成功退出!";
return $this->data;
}
}