Files
sentcms/app/controller/user/Index.php
2020-03-29 22:06:45 +08:00

44 lines
1.0 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\user;
class Index extends Base {
/**
* @title 用户首页
* @return [type] [description]
*/
public function index() {
return $this->fetch();
}
/**
* @title 个人资料
* @return [type] [description]
*/
public function profile() {
return $this->fetch();
}
/**
* @title 重置密码
* @return [type] [description]
*/
public function repasswd() {
return $this->fetch();
}
/**
* @title 上传头像
* @return [type] [description]
*/
public function avatar() {
return $this->fetch();
}
}