123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace refill\chending_tax;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://39.101.178.136:8911/api/hf/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 = '4kMv0XHVYd';
- const APP_SECRET = 'xhMDzkvrBtxaQKzL';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_chending_tax.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100644,
- 100 => 100645,
- 200 => 100646
- ],
- mtopcard\ChinaUnicomCard => [
- 50 => 100647,
- 100 => 100648,
- 200 => 100649
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 100650,
- 100 => 100651,
- 200 => 100652
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|