config.php 768 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\kangkai;
  3. use mtopcard;
  4. class config
  5. {
  6. //885
  7. const ORDER_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=charge';
  8. const QUERY_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=queryReport';
  9. const GET_PACKAGE_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=getPackage';
  10. const BALANCE_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=getBalance';
  11. const Account = '18500608333';
  12. const ApiKey = '0fa1c183841942659d77747987230da3';
  13. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_kangkai.php";
  14. const operator = [
  15. mtopcard\ChinaMobileCard => 1,
  16. mtopcard\ChinaUnicomCard => 2,
  17. mtopcard\ChinaTelecomCard => 3
  18. ];
  19. }