123456789101112131415161718192021 |
- <?php
- namespace refill\langke;
- use mtopcard;
- class config
- {
- //975 1
- const ORDER_URL = 'http://120.25.107.85/order/createOrder.html';
- const ORDER_QUERY_URL = 'http://120.25.107.85/order/queryOrderInfo.html';
- const KEY = '0TKtWOgpaLc5CQ0KvewK5J';
- const ORGID = 7532391600;
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_langke.php";
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- const operator = [
- mtopcard\ChinaMobileCard => 'YD',
- mtopcard\ChinaUnicomCard => 'LT',
- mtopcard\ChinaTelecomCard => 'DX'
- ];
- }
|