50 lines
1006 B
PHP
50 lines
1006 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ywxapp<admin@ywxapp.cn>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace addon\Mqpay;
|
|
|
|
use ywxapp\AddonBase;
|
|
|
|
/**
|
|
* Addon 类
|
|
*
|
|
* @author ywxapp <admin@ywxapp.cn>
|
|
*/
|
|
class Addon extends addon
|
|
{
|
|
/**
|
|
* 安装钩子
|
|
*/
|
|
public function install()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 卸载钩子(订单表由框架按 install.sql 自动清理)
|
|
*/
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
public function enable()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
public function disable()
|
|
{
|
|
return true;
|
|
}
|
|
}
|