12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace refill\huoshenguo_high;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.26.89.236:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.26.89.236:8911/api/order/query';
- const BALANCE_URL = 'http://120.26.89.236:8911/api/account/balance';
- const APP_ID = 'l1f3nJn1zp';
- const APP_SECRET = 'PfeOsZRoMsAcmweP';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huoshenguo_high.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100001,
- 50 => 100002,
- 100 => 100003,
- 200 => 100004,
- 300 => 100038,
- 500 => 100039,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100034,
- 50 => 100035,
- 100 => 100036,
- 200 => 100037,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100090,
- 50 => 100091,
- 100 => 100092,
- 200 => 100093,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|