admin/app/common/payment/setting/other/HfTxSetting.php

22 lines
400 B
PHP

<?php
/***
* 汇付天下
*/
namespace app\common\payment\setting\other;
use app\common\payment\setting\BasePaymentSetting;
class HfTxSetting extends BasePaymentSetting
{
public function canUse()
{
$code = $this->getCode();
if($code == 'A_NATIVE') return true;// 是否开启支付宝
else if($code == 'T_JSAPI') return true;// 是否开启微信
return true;
}
}