34 lines
860 B
PHP
34 lines
860 B
PHP
<?php
|
|
/**
|
|
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.cdcloudshop.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace addon\giftcard\event;
|
|
|
|
use app\model\system\Cron;
|
|
|
|
/**
|
|
* 应用卸载
|
|
*/
|
|
class UnInstall
|
|
{
|
|
/**
|
|
* 执行卸载
|
|
*/
|
|
public function handle()
|
|
{
|
|
try {
|
|
$cron = new Cron();
|
|
$cron->deleteCron([ [ 'event', '=', 'CronCardExpire' ] ]);
|
|
execute_sql('addon/giftcard/data/uninstall.sql');
|
|
return success();
|
|
} catch (\Exception $e) {
|
|
return error('', $e->getMessage());
|
|
}
|
|
}
|
|
} |