123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace refill\menggu_hf;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.26.80.21:8911/api/order/submit';
- const QUERY_URL = 'http://120.26.80.21:8911/api/order/query';
- const BALANCE_URL = 'http://120.26.80.21:8911/api/account/balance';
- const APP_ID = '1hqLCRUja7';
- const APP_SECRET = 'UbZBPJdeXcWaJtgy';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_menggu_hf.php";
- const PRODUCT = [
- mtopcard\ChinaUnicomCard => [
- 50 => 100091,
- 100 => 100092,
- 200 => 100093,
- 300 => 100094,
- 500 => 100095
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 100108,
- 100 => 100109,
- 200 => 100110,
- 300 => 100111,
- 500 => 100112
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|