41 lines
858 B
PHP
Executable File
41 lines
858 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: payment_base.php 36342 2021-05-17 14:15:31Z dplugin $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
class payment_base {
|
|
|
|
var $settings;
|
|
var $notify_url;
|
|
|
|
public function __construct() {}
|
|
|
|
protected function enable() {
|
|
if($this->settings && $this->settings['on']) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function pay($order) { }
|
|
|
|
public function status($out_biz_no) { }
|
|
|
|
public function refund($refund_no, $trade_no, $total_amount, $refund_amount, $refund_desc) { }
|
|
|
|
public function refund_status($refund_no, $trade_no) { }
|
|
|
|
public function transfer($transfer_no, $amount, $realname, $account, $title = '', $desc = '') { }
|
|
|
|
public function transfer_status($transfer_no) { }
|
|
|
|
} |