shopxo/service/payment_order_cashpayment_respond.php
devil_gong 533bb855c0 优化
2018-10-10 11:08:07 +08:00

21 lines
315 B
PHP
Executable File

<?php
/**
* 订单支付同步入口
*/
// 默认绑定模块
$_GET['m'] = 'Home';
$_GET['c'] = 'Order';
$_GET['a'] = 'Respond';
// 支付模块标记
define('PAYMENT_TYPE', 'CashPayment');
// 引入公共入口文件
require './core.php';
// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';
?>