'Member', 'title' => '会员', 'brief_introduction' => '会员账号信息管理', 'description' => '', 'author' => '简言', 'version' => '1.0.4', ]; /** * 应用配置 * * 例如:菜单设置/权限设置/快捷入口 * * @var array */ public $appsConfig = [ 'backend' => 'common/config/backend.php', 'frontend' => 'common/config/frontend.php', 'merchant' => 'common/config/merchant.php', 'html5' => 'common/config/html5.php', 'api' => 'common/config/api.php', 'oauth2' => 'common/config/oauth2.php', ]; /** * 引导文件 * * 设置后系统会在执行插件控制器前执行 * * @var Bootstrap */ // public $bootstrap = Bootstrap::class; /** * 服务层 * * 设置后系统会自动注册 * * 调用方式 * * Yii::$app->插件名称 + Services * * 例如 * * Yii::$app->tinyShopServices; * * @var Application */ // public $service = Application::class; /** * 商户路由映射 * * 开启后无需再去后台应用端去开发程序,直接映射商家应用的控制器方法过去,菜单权限还需要单独配置 * * @var bool */ public $isMerchantRouteMap = true; /** * 类别 * * @var string * [ * 'plug' => "功能插件", * 'business' => "主要业务", * 'customer' => "客户关系", * 'activity' => "营销及活动", * 'services' => "常用服务及工具", * 'biz' => "行业解决方案", * 'h5game' => "小游戏", * 'other' => "其他", * ] */ public $group = 'business'; /** * 保存在当前模块的根目录下面 * * 例如 $install = 'Install'; * 安装类 * @var string */ public $install = 'Install'; /** * 卸载SQL类 * * @var string */ public $uninstall = 'UnInstall'; /** * 更新SQL类 * * @var string */ public $upgrade = 'Upgrade'; }