config.php 720 B

12345678910111213141516171819202122
  1. <?php
  2. namespace refill\lexianglt;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://103.216.152.8:8882?c=pay&m=create';
  7. const QUERY_URL= 'http://103.216.152.8:8883?m=querys&a=queryorder';
  8. const BALANCE_URL = 'http://103.216.152.8:8883?m=querys&a=querymoney';
  9. const MCH_ID = '62';
  10. const UserKey = 'c3318a032a7590a5';
  11. const aesIV = '1111111111111111';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_lexianglt.php";
  13. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  14. const operator = [
  15. mtopcard\ChinaMobileCard => 3,
  16. mtopcard\ChinaUnicomCard => 1,
  17. mtopcard\ChinaTelecomCard => 2
  18. ];
  19. }