config.php 551 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\weit;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://47.98.208.197/api/telpay';
  7. const QUERY_URL = 'http://47.98.208.197/api/telpay/query';
  8. const MCH_ID = 10014;
  9. const KEY = 'f2962db97df033cac91e3f082dc342bf';
  10. const NOTIFY_URL = BASE_SITE_URL."/mobile/refill_weit.php";
  11. const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded'];
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 2,
  14. mtopcard\ChinaUnicomCard => 1,
  15. mtopcard\ChinaTelecomCard => 3
  16. ];
  17. }