Files
sentcms/app/controller/admin/Index.php
2020-02-17 20:47:06 +08:00

41 lines
971 B
PHP
Executable File

<?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;
/**
* @title 后端公共模块
*/
class Index extends Admin {
/**
* @title 后台首页
* @return html [description]
*/
public function index() {
return $this->fetch();
}
/**
* @title 后台登录
* @return html [description]
*/
public function login() {
return $this->fetch();
}
/**
* @title 后台退出
* @return html [description]
*/
public function logout() {
return $this->fetch();
}
}