12345678910111213141516171819202122 |
- <?php
- namespace refill\moxj_fs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://150.107.3.58/api/receiveOrder';
- const QUERY_URL = 'http://150.107.3.58/api/queryOrder';
- const PARTNER_ID = '58';
- const KEY = 'a287ccee4bb064445b8fb7ca743d1dad';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_moxj_fs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 0,
- mtopcard\ChinaTelecomCard => 1
- ];
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- }
|