123456789101112131415161718192021 |
- <?php
- namespace refill\weit;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.98.208.197/api/telpay';
- const QUERY_URL = 'http://47.98.208.197/api/telpay/query';
- const MCH_ID = 10014;
- const KEY = 'f2962db97df033cac91e3f082dc342bf';
- const NOTIFY_URL = BASE_SITE_URL."/mobile/refill_weit.php";
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|