33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
||
// +---------------------------------------------------------------------+
|
||
// | NiuCloud | [ WE CAN DO IT JUST NiuCloud ] |
|
||
// +---------------------------------------------------------------------+
|
||
// | Copy right 2019-2029 www.niucloud.com |
|
||
// +---------------------------------------------------------------------+
|
||
// | Author | NiuCloud <niucloud@outlook.com> |
|
||
// +---------------------------------------------------------------------+
|
||
// | Repository | https://github.com/niucloud/framework.git |
|
||
// +---------------------------------------------------------------------+
|
||
|
||
namespace addon\replacebuy\event;
|
||
|
||
/**
|
||
* 应用卸载
|
||
*/
|
||
class UnInstall
|
||
{
|
||
/**
|
||
* 执行卸载
|
||
*/
|
||
public function handle()
|
||
{
|
||
/* try{
|
||
execute_sql('addon/discount/data/uninstall.sql');
|
||
return success();
|
||
}catch (\Exception $e)
|
||
{
|
||
return error('', $e->getMessage());
|
||
} */
|
||
return error("系统插件不能删除");
|
||
}
|
||
} |