You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
928 B
23 lines
928 B
<?php
|
|
/**
|
|
* Settings
|
|
*/
|
|
class Settings
|
|
{
|
|
const PROCESSING_CODE_BALANCE = "300000";
|
|
const PROCESSING_CODE_WITHDRAW = "010000";
|
|
const PROCESSING_CODE_CHANGEPIN = "900000";
|
|
const PROCESSING_CODE_DEPOSIT = "910000";
|
|
const MERCHANT_TYPE = "6011";
|
|
const POS_ENTRY_MODE_MAGNETIC = "0210";
|
|
const POS_CONDITION_CODE_NORMAL = "00";
|
|
const POS_CONDITION_CODE_VERIFICATION = "25";
|
|
const ACQUIRING_INSTITUTION_ID = "543210";
|
|
const TERMINAL_ID = "26430120";
|
|
const ACCEPTOR_ID = "112000005 ";
|
|
const PINBLOCK_PARAMS = "2001010100000000";
|
|
const ADDITIONAL_POS_INFO = "2200110000";
|
|
const CURRENCY_CODE = "643";
|
|
const VALID_TRACK2 = "5175380690063288=17032011993301500000";
|
|
const VALID_PINBLOCK = "A877727C5AD463DA";
|
|
}
|
|
|