mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
增加 Center 模块
This commit is contained in:
parent
542ffc845d
commit
649e6757f1
24
app/center/controller/Index.php
Normal file
24
app/center/controller/Index.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace app\center\controller;
|
||||
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 应用插件中心
|
||||
* Class Index
|
||||
* @package app\center\contrller
|
||||
*/
|
||||
class Index extends Controller
|
||||
{
|
||||
/**
|
||||
* 显示插件中心
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @return void
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->fetch();
|
||||
}
|
||||
}
|
24
app/center/controller/Plugin.php
Normal file
24
app/center/controller/Plugin.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace app\center\controller;
|
||||
|
||||
use think\admin\Controller;
|
||||
|
||||
/**
|
||||
* 在线插件管理
|
||||
* Class Plugin
|
||||
* @package app\center\controller
|
||||
*/
|
||||
class Plugin extends Controller
|
||||
{
|
||||
/**
|
||||
* 在线插件管理
|
||||
* @auth true
|
||||
* @menu true
|
||||
* @return void
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->fetch();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user