企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 插件的设置管理 ## 插件的一些相关设置 ### 1、插件设置的连接 - 在`Plugin.php`中使用`registerSettings`方法来扩展插件在后端设置链接。设置左侧连接 ### 2、插件的设置 ``` public function registerSettings() { return [ 'location' => [ 'label' => 'Locations', 'description' => 'Manage available user countries and states.', 'category' => 'Users', 'icon' => 'icon-globe', 'url' => Backend::url('acme/user/locations'), 'order' => 500, 'keywords' => 'geography place placement' ] ]; } ```