config.php 823 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace refill\yunchonggong_lt;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://119.23.54.206:8911/api/order/submit';
  7. const QUERY_URL = 'http://119.23.54.206:8911/api/order/query';
  8. const BALANCE_URL = 'http://119.23.54.206:8911/api/account/balance';
  9. const APP_ID = 'nOlXoN2jRJ';
  10. const APP_SECRET = 'qMZzSeqjmKOStyZC';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggong_lt.php";
  12. const PRODUCT = [
  13. mtopcard\ChinaUnicomCard => [
  14. 30 => 100036,
  15. 50 => 100037,
  16. 100 => 100038,
  17. 200 => 100039,
  18. ],
  19. ];
  20. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  21. const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
  22. }