config.php 554 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\jiec;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://14.192.8.43/api/receiveOrder';
  7. const QUERY_URL = 'http://14.192.8.43/api/queryOrder';
  8. const PARTNER_ID = '20';
  9. const KEY = '6699182237209e03e1eb4f92e75434c0';
  10. const NOTIFY_URL = BASE_SITE_URL."/mobile/refill_jiec.php";
  11. const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 2,
  14. mtopcard\ChinaUnicomCard => 0,
  15. mtopcard\ChinaTelecomCard => 1
  16. ];
  17. }