feat: plugin controller config system with guest_comm_config hook integration

- Add HasPluginConfig trait and PluginController base class
- Integrate guest_comm_config hook in CommController for plugin frontend config injection
- Add user creation functionality to UserService and fix null value handling
- Enhance AbstractPlugin.getConfig() with key parameter support
- Multiple service layer optimizations and architecture improvements
This commit is contained in:
xboard
2025-06-29 01:42:48 +08:00
parent b96700ab30
commit 5b295dbec3
16 changed files with 804 additions and 574 deletions

View File

@@ -72,7 +72,7 @@ class Setting
* @param mixed $value
* @return bool 设置是否成功
*/
public function set(string $key, $value = null): bool
public function set(string $key, mixed $value = null): bool
{
$key = strtolower($key);
SettingModel::createOrUpdate($key, $value);