123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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 => [
- 10 => 100269,
- 20 => 100270,
- 50 => 100162,
- 100 => 100163,
- 200 => 100164,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100165,
- 50 => 100166,
- 100 => 100167,
- 200 => 100168,
- ],
- mtopcard\ChinaTelecomCard => [
- 10 => 100351,
- 20 => 100352,
- 30 => 100353,
- 50 => 100354,
- 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'];
- }
|