1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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 |
- // +---------------------------------------------------------------------+
- declare (strict_types = 1);
- namespace addon\alipay\event;
- use addon\alipay\model\Config;
- class TransferType
- {
- public function handle(array $param)
- {
- $app_type = isset($param['app_type']) ? $param['app_type'] : '';
- if(!empty($app_type)){
- if (!in_array($app_type, [ "h5", "app", "pc", "aliapp" ])) {
- return '';
- }
- $config_model = new Config();
- $config_result = $config_model->getPayConfig();
- $config = $config_result["data"]["value"] ?? [];
- $transfer_status = $config["transfer_status"] ?? 0;
- if($transfer_status == 0){
- return '';
- }
- }
- $info = array(
- "type" => "alipay",
- "type_name" => "支付宝",
- );
- return $info;
- }
- }
|