feat(addon/aikefu): 新增AI智能客服插件
This commit is contained in:
20
src/addon/aikefu/event/UnInstall.php
Normal file
20
src/addon/aikefu/event/UnInstall.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace addon\aikefu\event;
|
||||
|
||||
use app\model\system\Addon as AddonModel;
|
||||
|
||||
/**
|
||||
* 智能客服插件卸载
|
||||
*/
|
||||
class UnInstall
|
||||
{
|
||||
public function handle()
|
||||
{
|
||||
$addon_model = new AddonModel();
|
||||
// 删除插件信息
|
||||
$addon_model->deleteAddon(['name' => 'aikefu']);
|
||||
|
||||
return success(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user