更新文档

This commit is contained in:
技术老胡
2024-11-28 17:01:13 +08:00
parent 1c165cddff
commit bd2428b191
16 changed files with 421 additions and 206 deletions

View File

@@ -96,6 +96,9 @@ class PluginController extends BaseController
$config = self::getPluginConfig();
$option = [];
foreach ($config as $value) {
if ($value['state'] == 0) {
continue;
}
$option[] = ['platform' => $value['platform'], 'name' => $value['name']];
}
return json($option);