| 1234567891011121314151617181920212223 |
- <?php
- use common\enums\GlobalFuncEnum;
- use common\enums\PayTypeEnum;
- return [
- 'common_function'=>[
- 'orderCheck'=>[//订单检查
- ['addons_name'=>'Bargain','class'=>'addons\Bargain\common\models\BargainOrder','method'=>'check'],
- ['addons_name'=>'GroupBuy','class'=>'addons\GroupBuy\common\models\GroupBuyOrder','method'=>'check'],
- ['addons_name'=>'GroupBuyCopy','class'=>'addons\GroupBuyCopy\common\models\GroupBuyCopyOrder','method'=>'check'],
- ['addons_name'=>'Recharge','class'=>'addons\Recharge\common\models\AddonsRechargeActive','method'=>'check'],
- ['addons_name'=>'CloudStock','class'=>'addons\CloudStock\common\models\CloudStockFillOrder','method'=>'check'],
- ['addons_name'=>'HiGo','class'=>'addons\HiGo\common\models\HigoRechargeOrders','method'=>'check'],
- ['addons_name'=>'Cake','class'=>'addons\Cake\common\models\CakeOrder','method'=>'check'],
- ],
- // 'payment' => [
- // PayTypeEnum::JOINPAY => GlobalFuncEnum::JOINPAY_JOINPAY,
- // PayTypeEnum::JOINPAY_FAST_PAY => GlobalFuncEnum::JOINPAY_FASTPAY,
- // ],
- ],
- ];
|