2024-08-02 08:45:48 +08:00

56 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Center Plugin for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 免责声明 ( https://thinkadmin.top/disclaimer )
// | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/think-plugs-center
// | github 代码仓库https://github.com/zoujingli/think-plugs-center
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace plugin\center;
use think\admin\Plugin;
/**
* 组件注册服务
* @class Service
* @package plugin\center
*/
class Service extends Plugin
{
/**
* 定义插件名称
* @var string
*/
protected $appName = '应用中心';
/**
* 定义插件入口
* @var string
*/
protected $appCode = 'plugin-center';
/**
* 定义安装包名
* @var string
*/
protected $package = 'zoujingli/think-plugs-center';
/**
* 定义插件菜单
* @return array
*/
public static function menu(): array
{
return [];
}
}