config.php 735 B

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