1234567891011121314151617181920212223242526 |
- <?php
- namespace refill\chending_df;
- class config
- {
- const ORDER_URL = 'http://39.101.178.136:8911/api/order/submit';
- const QUERY_URL = 'http://39.101.178.136:8911/api/order/query';
- const BALANCE_URL = 'http://39.101.178.136:8911/api/account/balance';
- const APP_ID = 'SfjndCMdUC';
- const APP_SECRET = 'wstGuZvbjDdnNUHx';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_chending_df.php";
- const USE_TYPE = [
- 'home' => 1,
- 'commerce' => 3,
- 'pedlar' => 2,
- ];
- const PRODUCT = [
- 100 => 100761,
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|