12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace refill\yunchonggong;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://119.23.54.206:8911/api/order/submit';
- const QUERY_URL = 'http://119.23.54.206:8911/api/order/query';
- const BALANCE_URL = 'http://119.23.54.206:8911/api/account/balance';
- const APP_ID = 'c4vuuOV43q';
- const APP_SECRET = 'eyxARMYmpqkavQsS';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggong.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100032,
- 50 => 100033,
- 100 => 100034,
- 200 => 100035
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100036,
- 50 => 100037,
- 100 => 100038,
- 200 => 100039,
- 300 => 100040
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100041,
- 50 => 100042,
- 100 => 100043,
- 200 => 100044,
- 300 => 100045
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|