mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
ComposerUpdate
This commit is contained in:
parent
ef0635436e
commit
b094b8149e
@ -92,7 +92,11 @@ class Auth extends Controller
|
||||
|
||||
/**
|
||||
* 添加系统权限
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
@ -102,7 +106,11 @@ class Auth extends Controller
|
||||
|
||||
/**
|
||||
* 编辑系统权限
|
||||
* @return array|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
@ -112,6 +120,8 @@ class Auth extends Controller
|
||||
|
||||
/**
|
||||
* 禁用系统权限
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
@ -121,6 +131,8 @@ class Auth extends Controller
|
||||
|
||||
/**
|
||||
* 启用系统权限
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
@ -130,6 +142,8 @@ class Auth extends Controller
|
||||
|
||||
/**
|
||||
* 删除系统权限
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
|
@ -154,6 +154,11 @@ class Index extends Controller
|
||||
/**
|
||||
* 修改用户资料
|
||||
* @param integer $id 会员ID
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function info($id = 0)
|
||||
{
|
||||
|
@ -67,6 +67,11 @@ class Menu extends Controller
|
||||
|
||||
/**
|
||||
* 编辑系统菜单
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
@ -106,6 +111,8 @@ class Menu extends Controller
|
||||
|
||||
/**
|
||||
* 启用系统菜单
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
@ -115,6 +122,8 @@ class Menu extends Controller
|
||||
|
||||
/**
|
||||
* 禁用系统菜单
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
@ -124,6 +133,8 @@ class Menu extends Controller
|
||||
|
||||
/**
|
||||
* 删除系统菜单
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
|
@ -47,6 +47,8 @@ class Message extends Controller
|
||||
|
||||
/**
|
||||
* 设置消息状态
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function read()
|
||||
{
|
||||
@ -84,6 +86,8 @@ class Message extends Controller
|
||||
|
||||
/**
|
||||
* 删除系统消息
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
|
@ -76,6 +76,8 @@ class Oplog extends Controller
|
||||
|
||||
/**
|
||||
* 删除系统日志
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
|
@ -22,8 +22,6 @@ use think\Db;
|
||||
* 系统用户管理
|
||||
* Class User
|
||||
* @package app\admin\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/02/15 18:12
|
||||
*/
|
||||
class User extends Controller
|
||||
{
|
||||
@ -51,7 +49,11 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 用户授权管理
|
||||
* @return mixed
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function auth()
|
||||
{
|
||||
@ -61,7 +63,11 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 添加系统用户
|
||||
* @return mixed
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
@ -71,7 +77,11 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 编辑系统用户
|
||||
* @return mixed
|
||||
* @throws \think\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
@ -130,6 +140,8 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 禁用系统用户
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function forbid()
|
||||
{
|
||||
@ -142,6 +154,8 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 启用系统用户
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function resume()
|
||||
{
|
||||
@ -151,6 +165,8 @@ class User extends Controller
|
||||
|
||||
/**
|
||||
* 删除系统用户
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public function remove()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user