12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\meihan;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.106.88.10:8911/api/hf/order/submit';
- const QUERY_URL = 'http://47.106.88.10:8911/api/order/query';
- const BALANCE_URL = 'http://47.106.88.10:8911/api/account/balance';
- const APP_ID = 'W33zTP9202';
- const APP_SECRET = 'kVOmthqgbBXcPfsY';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_meihan.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100162,
- 100 => 100163,
- 200 => 100164,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100165,
- 50 => 100166,
- 100 => 100167,
- 200 => 100168,
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 100170,
- 100 => 100171,
- 200 => 100172,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|