mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use think\admin\Controller;
|
||
use think\admin\service\ModuleService;
|
||
|
||
/**
|
||
* 系统模块管理
|
||
* Class Module
|
||
* @package app\admin\controller
|
||
*/
|
||
class Module extends Controller
|
||
{
|
||
/**
|
||
* 系统模块管理
|
||
* @auth true
|
||
* @menu true
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '系统模块管理';
|
||
$this->modules = ModuleService::instance()->change();
|
||
$this->fetch();
|
||
}
|
||
|
||
/**
|
||
* 安装模块代码
|
||
* @auth true
|
||
*/
|
||
public function install()
|
||
{
|
||
$data = $this->_vali(['name.require' => '模块名称不能为空!']);
|
||
[$state, $message] = ModuleService::instance()->install($data['name']);
|
||
$state ? $this->success($message) : $this->error($message);
|
||
}
|
||
} |