123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace refill\hangtong;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.108.161.207/flow-receiver/api/v2/recharge';
- const QUERY_URL = 'http://47.108.161.207/flow-receiver/api/v2/query/single';
- const BALANCE_URL = 'http://47.108.161.207/flow-receiver/api/v2/balance/query';
- const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/refill_hangtong.php';
- const ACCOUNT = 'yezi';
- const KEY = '9074ca3652384ab2a9c7278842ec1147';
- const operator = [
- mtopcard\ChinaMobileCard => 'CMCC',
- mtopcard\ChinaUnicomCard => 'CUCC',
- mtopcard\ChinaTelecomCard => 'CTCC'
- ];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- 30 => 'CMCCALLr30r', 50 => 'CMCCALLr50r', 100 => 'CMCCALLr100r', 200 => 'CMCCALLr200r'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 'CUCCALLr30r', 50 => 'CUCCALLr50r', 100 => 'CUCCALLr100r', 200 => 'CUCCALLr200r',
- 300 => 'CUCCALLr300r', 500 => 'CUCCALLr500r'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 'CTCCALLr30r', 50 => 'CTCCALLr50r', 100 => 'CTCCALLr100r', 200 => 'CTCCALLr200r',
- 300 => 'CTCCALLr300r', 500 => 'CTCCALLr500r'
- ]
- ];
- }
|