|
@@ -361,31 +361,31 @@ |
|
|
block discarded – undo |
|
361
|
361
|
private function transaction_vars_list() |
|
362
|
362
|
{ |
|
363
|
363
|
return array( |
|
364
|
|
- 'business' => '', // Primary merchant e-mail address |
|
365
|
|
- 'confirmed' => false, // used to check if the payment is confirmed |
|
366
|
|
- 'exchange_rate' => '', // Exchange rate used if a currency conversion occurred |
|
|
364
|
+ 'business' => '', // Primary merchant e-mail address |
|
|
365
|
+ 'confirmed' => false, // used to check if the payment is confirmed |
|
|
366
|
+ 'exchange_rate' => '', // Exchange rate used if a currency conversion occurred |
|
367
|
367
|
'first_name' => array('', true), // First name of sender |
|
368
|
368
|
'item_name' => array('', true), // Equal to: $this->config['sitename'] |
|
369
|
|
- 'item_number' => '', // Equal to: 'uid_' . $this->user->data['user_id'] . '_' . time() |
|
|
369
|
+ 'item_number' => '', // Equal to: 'uid_' . $this->user->data['user_id'] . '_' . time() |
|
370
|
370
|
'last_name' => array('', true), // Last name of sender |
|
371
|
|
- 'mc_currency' => '', // Currency |
|
372
|
|
- 'mc_gross' => 0.00, // Amt received (before fees) |
|
373
|
|
- 'mc_fee' => 0.00, // Amt of fees |
|
374
|
|
- 'parent_txn_id' => '', // Transaction ID |
|
375
|
|
- 'payer_email' => '', // PayPal sender email address |
|
376
|
|
- 'payer_id' => '', // PayPal sender ID |
|
377
|
|
- 'payer_status' => 'unverified', // PayPal sender status (verified, unverified?) |
|
378
|
|
- 'payment_date' => '', // Payment Date/Time EX: '19:08:04 Oct 03, 2007 PDT' |
|
379
|
|
- 'payment_status' => '', // eg: 'Completed' |
|
380
|
|
- 'payment_type' => '', // Payment type |
|
381
|
|
- 'receiver_id' => '', // Secure Merchant Account ID |
|
382
|
|
- 'receiver_email' => '', // Merchant e-mail address |
|
383
|
|
- 'residence_country' => '', // Merchant country code |
|
384
|
|
- 'settle_amount' => 0.00, // Amt received after currency conversion (before fees) |
|
385
|
|
- 'settle_currency' => '', // Currency of 'settle_amount' |
|
386
|
|
- 'test_ipn' => false, // used when transaction come from Sandbox platform |
|
387
|
|
- 'txn_id' => '', // Transaction ID |
|
388
|
|
- 'txn_type' => '', // Transaction type - Should be: 'send_money' |
|
|
371
|
+ 'mc_currency' => '', // Currency |
|
|
372
|
+ 'mc_gross' => 0.00, // Amt received (before fees) |
|
|
373
|
+ 'mc_fee' => 0.00, // Amt of fees |
|
|
374
|
+ 'parent_txn_id' => '', // Transaction ID |
|
|
375
|
+ 'payer_email' => '', // PayPal sender email address |
|
|
376
|
+ 'payer_id' => '', // PayPal sender ID |
|
|
377
|
+ 'payer_status' => 'unverified', // PayPal sender status (verified, unverified?) |
|
|
378
|
+ 'payment_date' => '', // Payment Date/Time EX: '19:08:04 Oct 03, 2007 PDT' |
|
|
379
|
+ 'payment_status' => '', // eg: 'Completed' |
|
|
380
|
+ 'payment_type' => '', // Payment type |
|
|
381
|
+ 'receiver_id' => '', // Secure Merchant Account ID |
|
|
382
|
+ 'receiver_email' => '', // Merchant e-mail address |
|
|
383
|
+ 'residence_country' => '', // Merchant country code |
|
|
384
|
+ 'settle_amount' => 0.00, // Amt received after currency conversion (before fees) |
|
|
385
|
+ 'settle_currency' => '', // Currency of 'settle_amount' |
|
|
386
|
+ 'test_ipn' => false, // used when transaction come from Sandbox platform |
|
|
387
|
+ 'txn_id' => '', // Transaction ID |
|
|
388
|
+ 'txn_type' => '', // Transaction type - Should be: 'send_money' |
|
389
|
389
|
); |
|
390
|
390
|
} |
|
391
|
391
|
|