12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace refill\zhongst_mix;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://112.124.58.225:8911/api/hf/order/submit';
- const QUERY_URL = 'http://112.124.58.225:8911/api/order/query';
- const BALANCE_URL = 'http://112.124.58.225:8911/api/account/balance';
- const APP_ID = 'aKz6PN5XIw';
- const APP_SECRET = 'iVVbvDkqlVMhSjev';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhongst_mix.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100208,
- 100 => 100209,
- 200 => 100210,
- 300 => 100211,
- 500 => 100212
- ],
- mtopcard\ChinaUnicomCard => [
- 50 => 100214,
- 100 => 100215,
- 200 => 100216,
- 300 => 100217,
- 500 => 100218
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100219,
- 50 => 100220,
- 100 => 100221,
- 200 => 100222,
- 300 => 100223,
- 500 => 100224
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|