12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace refill\ruixunda;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.76.172.131:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.76.172.131:8911/api/order/query';
- const BALANCE_URL = 'http://120.76.172.131:8911/api/account/balance';
- const APP_ID = 'kU6tn6YMjx';
- const APP_SECRET = 'UTzLpEOYVTPcCmwW';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruixunda.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100001,
- 50 => 100002,
- 100 => 100003,
- 200 => 100004,
- 300 => 100005,
- 500 => 100006,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100007,
- 50 => 100008,
- 100 => 100009,
- 200 => 100010,
- 300 => 100011,
- 500 => 100012,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100013,
- 50 => 100014,
- 100 => 100015,
- 200 => 100016,
- 300 => 100017,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|