123456789101112131415161718192021 |
- <?php
- namespace refill\afandnew;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://ddd.nvtu.ren/gateway/recharge';
- const QUERY_URL = 'http://ddd.nvtu.ren/gateway/recharge/order';
- const APP_ID = 'RC5229f3ef515e4b34adfb9aa251b5e15e';
- const KEY = '9803e5a3e4984ea4b8f847de28f22e2f';
- const NOTIFY_URL = BASE_SITE_URL."/mobile/refill_afandnew.php";
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [50 => '2110000050000', 100 => '21100000100000', 200 => '21100000200101'],
- mtopcard\ChinaUnicomCard => [50 => '2310000050101', 100 => '23100000100101', 200 => '23100000200101'],
- mtopcard\ChinaTelecomCard => [50 => '2210000050101', 100 => '22100000100101', 200 => '22100000200101'],
- ];
- }
|