123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace refill\huoshenguo_fs;
- 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 = '0AQYfAzSyy';
- const APP_SECRET = 'WkCUpvfrqhvrwinQ';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_huoshenguo_fs.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100135,
- 50 => 100136,
- 100 => 100137,
- 200 => 100138,
- ],
- mtopcard\ChinaUnicomCard => [
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100147,
- 50 => 100148,
- 100 => 100149,
- 200 => 100150,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|