Smart2Pay - Version 1.1.1

Version Notes

Added the following payment methods: XLTunai, Bancomer Pago referenciado, Santander Pago referenciado, ScotiaBank Pago referenciado, 7-Eleven Pago en efectivo, Oxxo Pago en efectivo,
IXE Pago referenciado, Cards Thailand, PayPal Thailand, AMEX Thailand, Cash Options Thailand, Online Banking Thailand, PaysBuy Wallet

Added translations for en_US, en_GB, es_AR, es_CL, es_CO, es_ES, es_MX, it_IT, pt_BR.

Download this release

Release Info

Developer Stefan Iancu
Extension Smart2Pay
Version 1.1.1
Comparing to
See all releases


Code changes from version 1.0.4 to 1.1.1

Files changed (52) hide show
  1. app/code/community/Smart2Pay/Globalpay/Block/Paymethod/Sendform.php +10 -8
  2. app/code/community/Smart2Pay/Globalpay/Model/Pay.php +1 -0
  3. app/code/community/Smart2Pay/Globalpay/controllers/IndexController.php +52 -36
  4. app/code/community/Smart2Pay/Globalpay/etc/config.xml +121 -124
  5. app/code/community/Smart2Pay/Globalpay/etc/system.xml +6 -33
  6. app/code/community/Smart2Pay/Globalpay/sql/globalpay_setup/mysql4-upgrade-1.0.3-1.1.1.php +585 -0
  7. app/design/frontend/base/default/template/smart2pay/globalpay/paymethod/sendform.phtml +19 -25
  8. app/locale/en_GB/Smart2Pay_Globalpay.csv +150 -0
  9. app/locale/en_GB/template/email/smart2pay/globalpay/payment_confirmation.html +24 -0
  10. app/locale/en_US/Smart2Pay_Globalpay.csv +28 -0
  11. app/locale/es_AR/Smart2Pay_Globalpay.csv +47 -0
  12. app/locale/es_CL/Smart2Pay_Globalpay.csv +47 -0
  13. app/locale/es_CO/Smart2Pay_Globalpay.csv +47 -0
  14. app/locale/es_ES/Smart2Pay_Globalpay.csv +47 -0
  15. app/locale/es_MX/Smart2Pay_Globalpay.csv +46 -0
  16. app/locale/it_IT/Smart2Pay_Globalpay.csv +14 -0
  17. app/locale/pt_BR/Smart2Pay_Globalpay.csv +28 -0
  18. package.xml +27 -8
  19. skin/frontend/base/default/images/smart2pay/methods/7eleven.gif +0 -0
  20. skin/frontend/base/default/images/smart2pay/methods/7eleven_grey.gif +0 -0
  21. skin/frontend/base/default/images/smart2pay/methods/IXe.gif +0 -0
  22. skin/frontend/base/default/images/smart2pay/methods/IXe_grey.gif +0 -0
  23. skin/frontend/base/default/images/smart2pay/methods/XLTunai.gif +0 -0
  24. skin/frontend/base/default/images/smart2pay/methods/XLTunai_grey.gif +0 -0
  25. skin/frontend/base/default/images/smart2pay/methods/bancomer.gif +0 -0
  26. skin/frontend/base/default/images/smart2pay/methods/bancomer_grey.gif +0 -0
  27. skin/frontend/base/default/images/smart2pay/methods/boleto_bancario_itau.gif +0 -0
  28. skin/frontend/base/default/images/smart2pay/methods/boleto_bancario_itau_grey.gif +0 -0
  29. skin/frontend/base/default/images/smart2pay/methods/cash_paysbuy.jpg +0 -0
  30. skin/frontend/base/default/images/smart2pay/methods/dp24_sofort_NEW.gif +0 -0
  31. skin/frontend/base/default/images/smart2pay/methods/dp24_sofort_NEW_grey.gif +0 -0
  32. skin/frontend/base/default/images/smart2pay/methods/dragonpay.jpg +0 -0
  33. skin/frontend/base/default/images/smart2pay/methods/dragonpay_grey.jpg +0 -0
  34. skin/frontend/base/default/images/smart2pay/methods/eKonto.gif +0 -0
  35. skin/frontend/base/default/images/smart2pay/methods/eKonto_grey.gif +0 -0
  36. skin/frontend/base/default/images/smart2pay/methods/mangirkart.jpg +0 -0
  37. skin/frontend/base/default/images/smart2pay/methods/mtcpay.png +0 -0
  38. skin/frontend/base/default/images/smart2pay/methods/mtcpay_grey.png +0 -0
  39. skin/frontend/base/default/images/smart2pay/methods/oxxo.gif +0 -0
  40. skin/frontend/base/default/images/smart2pay/methods/oxxo_grey.gif +0 -0
  41. skin/frontend/base/default/images/smart2pay/methods/paysera.gif +0 -0
  42. skin/frontend/base/default/images/smart2pay/methods/paysera_grey.gif +0 -0
  43. skin/frontend/base/default/images/smart2pay/methods/pwmb.png +0 -0
  44. skin/frontend/base/default/images/smart2pay/methods/pwmb_grey.png +0 -0
  45. skin/frontend/base/default/images/smart2pay/methods/santander.gif +0 -0
  46. skin/frontend/base/default/images/smart2pay/methods/santander_grey.gif +0 -0
  47. skin/frontend/base/default/images/smart2pay/methods/scotiabank.gif +0 -0
  48. skin/frontend/base/default/images/smart2pay/methods/scotiabank_grey.gif +0 -0
  49. skin/frontend/base/default/images/smart2pay/methods/tenpay.gif +0 -0
  50. skin/frontend/base/default/images/smart2pay/methods/tenpay_grey.gif +0 -0
  51. skin/frontend/base/default/images/smart2pay/methods/trustpay.png +0 -0
  52. skin/frontend/base/default/images/smart2pay/methods/trustpay_grey.png +0 -0
app/code/community/Smart2Pay/Globalpay/Block/Paymethod/Sendform.php CHANGED
@@ -19,9 +19,9 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
19
  $this->form_data['method_id'] = $_SESSION['globalpay_method'];
20
  $this->form_data['order_id'] = $order_id;
21
  $this->form_data['currency'] = $order->getOrderCurrency()->getCurrencyCode();
22
- $this->form_data['amount'] = number_format($order->getGrandTotal(), 2)*100;
23
- $this->form_data['customer_name'] = $order->getCustomerName();
24
- $this->form_data['customer_email'] = $order->getCustomerEmail();
25
  $this->form_data['country'] = $order->getBillingAddress()->getCountry();
26
 
27
  $messageToHash = 'MerchantID'.$this->form_data['mid']
@@ -31,9 +31,9 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
31
  .'ReturnURL'.$this->form_data['return_url']
32
  .'IncludeMethodIDs'.$this->form_data['methods'];
33
 
34
- if($this->form_data['send_customer_name'])
35
  $messageToHash .= "CustomerName".$this->form_data['customer_name'];
36
- if($this->form_data['send_customer_email'])
37
  $messageToHash .= "CustomerEmail".$this->form_data['customer_email'];
38
  if($this->form_data['send_country'])
39
  $messageToHash .= "Country".$this->form_data['country'];
@@ -41,14 +41,14 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
41
  $messageToHash .= "MethodID".$this->form_data['method_id'];
42
  }
43
 
44
- if($this->form_data['send_product_description']){
45
  if($this->form_data['product_description_ref']){
46
  $messageToHash .= "Description"."Ref. no.: ".$this->form_data['order_id'];
47
  }
48
  else{
49
  $messageToHash .= "Description".$this->form_data['product_description_custom'];
50
  }
51
- }
52
  if($this->form_data['skip_payment_page']){
53
  if(!in_array($this->form_data['method_id'], array(1, 20))){
54
  $messageToHash .= "SkipHpp1";
@@ -63,6 +63,8 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
63
 
64
  $messageToHash .= $this->form_data['signature'];
65
 
 
 
66
  $this->form_data['hash'] = Mage::helper('globalpay/helper')->computeSHA256Hash($messageToHash);
67
 
68
  //
@@ -71,4 +73,4 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
71
  //
72
  }
73
  }
74
- ?>
19
  $this->form_data['method_id'] = $_SESSION['globalpay_method'];
20
  $this->form_data['order_id'] = $order_id;
21
  $this->form_data['currency'] = $order->getOrderCurrency()->getCurrencyCode();
22
+ $this->form_data['amount'] = number_format($order->getGrandTotal(), 2, '.', '') * 100;
23
+ $this->form_data['customer_name'] = substr(trim($order->getCustomerName()),0,30);
24
+ $this->form_data['customer_email'] = trim($order->getCustomerEmail());
25
  $this->form_data['country'] = $order->getBillingAddress()->getCountry();
26
 
27
  $messageToHash = 'MerchantID'.$this->form_data['mid']
31
  .'ReturnURL'.$this->form_data['return_url']
32
  .'IncludeMethodIDs'.$this->form_data['methods'];
33
 
34
+ // if($this->form_data['send_customer_name'])
35
  $messageToHash .= "CustomerName".$this->form_data['customer_name'];
36
+ // if($this->form_data['send_customer_email'])
37
  $messageToHash .= "CustomerEmail".$this->form_data['customer_email'];
38
  if($this->form_data['send_country'])
39
  $messageToHash .= "Country".$this->form_data['country'];
41
  $messageToHash .= "MethodID".$this->form_data['method_id'];
42
  }
43
 
44
+ // if($this->form_data['send_product_description']){
45
  if($this->form_data['product_description_ref']){
46
  $messageToHash .= "Description"."Ref. no.: ".$this->form_data['order_id'];
47
  }
48
  else{
49
  $messageToHash .= "Description".$this->form_data['product_description_custom'];
50
  }
51
+ // }
52
  if($this->form_data['skip_payment_page']){
53
  if(!in_array($this->form_data['method_id'], array(1, 20))){
54
  $messageToHash .= "SkipHpp1";
63
 
64
  $messageToHash .= $this->form_data['signature'];
65
 
66
+ Mage::getModel('globalpay/logger')->write($messageToHash, 'info');
67
+
68
  $this->form_data['hash'] = Mage::helper('globalpay/helper')->computeSHA256Hash($messageToHash);
69
 
70
  //
73
  //
74
  }
75
  }
76
+ ?>
app/code/community/Smart2Pay/Globalpay/Model/Pay.php CHANGED
@@ -62,6 +62,7 @@
62
  {
63
  $_SESSION['s2p_handle_payment'] = true;
64
  //return Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB)."index.php/globalpay/";
 
65
  return Mage::getUrl('globalpay', array('_secure' => true));
66
  }
67
  }
62
  {
63
  $_SESSION['s2p_handle_payment'] = true;
64
  //return Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB)."index.php/globalpay/";
65
+ Mage::getModel('globalpay/logger')->write(Mage::getUrl('globalpay', array('_secure' => true)), 'info');
66
  return Mage::getUrl('globalpay', array('_secure' => true));
67
  }
68
  }
app/code/community/Smart2Pay/Globalpay/controllers/IndexController.php CHANGED
@@ -14,9 +14,14 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
14
  unset($_SESSION['s2p_handle_payment']);
15
  $this->loadLayout();
16
  $this->renderLayout();
 
 
17
  }
18
  else{
 
 
19
  $this->_redirectUrl(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK) . 'checkout/cart/');
 
20
  }
21
  }
22
 
@@ -37,56 +42,67 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
37
  $order = Mage::getModel('sales/order');
38
 
39
  try {
40
- parse_str(file_get_contents("php://input"), $response);
 
41
  $recomposedHashString = "NotificationType" . $response['NotificationType'] . "MethodID".$response['MethodID']."PaymentID".$response['PaymentID']."MerchantTransactionID".$response['MerchantTransactionID']."StatusID".$response['StatusID']."Amount".$response['Amount']."Currency".$response['Currency'].$payMethod->method_config['signature'];
42
 
43
  Mage::getModel('globalpay/logger')->write('StatusID = ' . $response['StatusID'], 'info');
44
  Mage::getModel('globalpay/logger')->write('MerchantTransactionID = ' . $response['MerchantTransactionID'], 'info');
45
-
46
  // Message is intact
47
  if($s2pHelper->computeSHA256Hash($recomposedHashString) == $response['Hash']){
48
 
49
  Mage::getModel('globalpay/logger')->write('Hashes match', 'info');
50
-
51
  $order->loadByIncrementId($response['MerchantTransactionID']);
52
-
53
  /**
54
  * Check status ID
55
  */
56
  switch($response['StatusID']){
57
  // Status = success
58
  case "2":
59
- $order->addStatusHistoryComment('Smart2Pay :: order has been paid.', $payMethod->method_config['order_status_on_2']);
60
- if ($payMethod->method_config['auto_invoice']) {
61
- // Create and pay Order Invoice
62
- if($order->canInvoice()) {
63
- $invoice = Mage::getModel('sales/service_order', $order)->prepareInvoice();
64
- $invoice->setRequestedCaptureCase(Mage_Sales_Model_Order_Invoice::CAPTURE_OFFLINE);
65
- $invoice->register();
66
- $transactionSave = Mage::getModel('core/resource_transaction')
67
- ->addObject($invoice)
68
- ->addObject($invoice->getOrder());
69
- $transactionSave->save();
70
- $order->addStatusHistoryComment('Smart2Pay :: order has been automatically invoiced.', $payMethod->method_config['order_status_on_2']);
71
- } else {
72
- Mage::getModel('globalpay/logger')->write('Order can not be invoiced', 'warning');
73
- }
74
- }
75
- if ($payMethod->method_config['auto_ship']) {
76
- if ($order->canShip()) {
77
- $itemQty = $order->getItemsCollection()->count();
78
- $shipment = Mage::getModel('sales/service_order', $order)->prepareShipment($itemQty);
79
- $shipment = new Mage_Sales_Model_Order_Shipment_Api();
80
- $shipmentId = $shipment->create($order->getIncrementId());
81
- $order->addStatusHistoryComment('Smart2Pay :: order has been automatically shipped.', $payMethod->method_config['order_status_on_2']);
82
- } else {
83
- Mage::getModel('globalpay/logger')->write('Order can not be shipped', 'warning');
84
- }
85
- }
86
- if ($payMethod->method_config['notify_customer']) {
87
- // Inform customer
88
- $this->informCustomer($order, $response['Amount'], $response['Currency']);
89
- }
 
 
 
 
 
 
 
 
 
 
90
  break;
91
  // Status = canceled
92
  case 3:
@@ -196,4 +212,4 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
196
  $this->loadLayout();
197
  $this->renderLayout();
198
  }
199
- }
14
  unset($_SESSION['s2p_handle_payment']);
15
  $this->loadLayout();
16
  $this->renderLayout();
17
+ Mage::getModel('globalpay/logger')->write('>>> Redirect OK :::', 'info');
18
+
19
  }
20
  else{
21
+ Mage::getModel('globalpay/logger')->write('>>> Redirect NOT OK, session empty. :::', 'info');
22
+
23
  $this->_redirectUrl(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK) . 'checkout/cart/');
24
+
25
  }
26
  }
27
 
42
  $order = Mage::getModel('sales/order');
43
 
44
  try {
45
+ $raw_input = file_get_contents("php://input");
46
+ parse_str($raw_input, $response);
47
  $recomposedHashString = "NotificationType" . $response['NotificationType'] . "MethodID".$response['MethodID']."PaymentID".$response['PaymentID']."MerchantTransactionID".$response['MerchantTransactionID']."StatusID".$response['StatusID']."Amount".$response['Amount']."Currency".$response['Currency'].$payMethod->method_config['signature'];
48
 
49
  Mage::getModel('globalpay/logger')->write('StatusID = ' . $response['StatusID'], 'info');
50
  Mage::getModel('globalpay/logger')->write('MerchantTransactionID = ' . $response['MerchantTransactionID'], 'info');
51
+
52
  // Message is intact
53
  if($s2pHelper->computeSHA256Hash($recomposedHashString) == $response['Hash']){
54
 
55
  Mage::getModel('globalpay/logger')->write('Hashes match', 'info');
56
+
57
  $order->loadByIncrementId($response['MerchantTransactionID']);
58
+ $order->addStatusHistoryComment('Smart2Pay :: notification received:<br>' . $raw_input);
59
  /**
60
  * Check status ID
61
  */
62
  switch($response['StatusID']){
63
  // Status = success
64
  case "2":
65
+ // cheking amount and currency
66
+ $orderAmount = number_format($order->getGrandTotal(), 2, '.', '') * 100;
67
+ $orderCurrency = $order->getOrderCurrency()->getCurrencyCode();
68
+
69
+ if($orderAmount != $response['Amount'] || $orderCurrency != $response['Currency']){
70
+ $order->addStatusHistoryComment('Smart2Pay :: notification has different amount and/or currency!. Please contact support@smart2pay.com', $payMethod->method_config['order_status_on_4']);
71
+ }
72
+ else{
73
+
74
+ $order->addStatusHistoryComment('Smart2Pay :: order has been paid. [MethodID:'. $response['MethodID'] .']', $payMethod->method_config['order_status_on_2']);
75
+ if ($payMethod->method_config['auto_invoice']) {
76
+ // Create and pay Order Invoice
77
+ if($order->canInvoice()) {
78
+ $invoice = Mage::getModel('sales/service_order', $order)->prepareInvoice();
79
+ $invoice->setRequestedCaptureCase(Mage_Sales_Model_Order_Invoice::CAPTURE_OFFLINE);
80
+ $invoice->register();
81
+ $transactionSave = Mage::getModel('core/resource_transaction')
82
+ ->addObject($invoice)
83
+ ->addObject($invoice->getOrder());
84
+ $transactionSave->save();
85
+ $order->addStatusHistoryComment('Smart2Pay :: order has been automatically invoiced.', $payMethod->method_config['order_status_on_2']);
86
+ } else {
87
+ Mage::getModel('globalpay/logger')->write('Order can not be invoiced', 'warning');
88
+ }
89
+ }
90
+ if ($payMethod->method_config['auto_ship']) {
91
+ if ($order->canShip()) {
92
+ $itemQty = $order->getItemsCollection()->count();
93
+ $shipment = Mage::getModel('sales/service_order', $order)->prepareShipment($itemQty);
94
+ $shipment = new Mage_Sales_Model_Order_Shipment_Api();
95
+ $shipmentId = $shipment->create($order->getIncrementId());
96
+ $order->addStatusHistoryComment('Smart2Pay :: order has been automatically shipped.', $payMethod->method_config['order_status_on_2']);
97
+ } else {
98
+ Mage::getModel('globalpay/logger')->write('Order can not be shipped', 'warning');
99
+ }
100
+ }
101
+ if ($payMethod->method_config['notify_customer']) {
102
+ // Inform customer
103
+ $this->informCustomer($order, $response['Amount'], $response['Currency']);
104
+ }
105
+ }
106
  break;
107
  // Status = canceled
108
  case 3:
212
  $this->loadLayout();
213
  $this->renderLayout();
214
  }
215
+ }
app/code/community/Smart2Pay/Globalpay/etc/config.xml CHANGED
@@ -1,124 +1,121 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Smart2Pay_Globalpay>
5
- <version>1.0.3</version>
6
- </Smart2Pay_Globalpay>
7
- </modules>
8
- <frontend>
9
- <routers>
10
- <globalpay>
11
- <use>standard</use>
12
- <args>
13
- <module>Smart2Pay_Globalpay</module>
14
- <frontName>globalpay</frontName>
15
- </args>
16
- </globalpay>
17
- </routers>
18
- <layout>
19
- <updates>
20
- <globalpay>
21
- <file>globalpay.xml</file>
22
- </globalpay>
23
- </updates>
24
- </layout>
25
- <translate>
26
- <modules>
27
- <Smart2Pay_Globalpay>
28
- <files>
29
- <default>Smart2Pay_Globalpay.csv</default>
30
- </files>
31
- </Smart2Pay_Globalpay>
32
- </modules>
33
- </translate>
34
- </frontend>
35
-
36
- <global>
37
-
38
- <template>
39
- <email>
40
- <payment_globalpay_payment_confirmation_template translate="label" module="globalpay">
41
- <label>Globalpay Confirmation Template</label>
42
- <file>smart2pay/globalpay/payment_confirmation.html</file>
43
- <type>html</type>
44
- </payment_globalpay_payment_confirmation_template>
45
- </email>
46
- </template>
47
-
48
- <resources>
49
- <globalpay_setup>
50
- <setup>
51
- <module>Smart2Pay_Globalpay</module>
52
- <class>Smart2Pay_Globalpay_Model_Resource_Setup</class>
53
- </setup>
54
- </globalpay_setup>
55
- </resources>
56
-
57
- <models>
58
- <globalpay>
59
- <class>Smart2Pay_Globalpay_Model</class>
60
- <resourceModel>globalpay_resource</resourceModel>
61
- </globalpay>
62
- <globalpay_resource>
63
- <class>Smart2Pay_Globalpay_Model_Resource</class>
64
- <entities>
65
- <country>
66
- <table>s2p_gp_countries</table>
67
- </country>
68
- <method>
69
- <table>s2p_gp_methods</table>
70
- </method>
71
- <countrymethod>
72
- <table>s2p_gp_countries_methods</table>
73
- </countrymethod>
74
- <logger>
75
- <table>s2p_gp_logs</table>
76
- </logger>
77
- </entities>
78
- </globalpay_resource>
79
- </models>
80
- <blocks>
81
- <globalpay>
82
- <class>Smart2Pay_Globalpay_Block</class>
83
- </globalpay>
84
- </blocks>
85
- <helpers>
86
- <globalpay>
87
- <class>Smart2Pay_Globalpay_Helper</class>
88
- </globalpay>
89
- </helpers>
90
- </global>
91
- <default>
92
- <payment>
93
- <globalpay>
94
- <active>1</active>
95
- <model>globalpay/pay</model>
96
- <order_status>holded</order_status>
97
- <order_status_on_2>processing</order_status_on_2>
98
- <order_status_on_3>canceled</order_status_on_3>
99
- <order_status_on_4>canceled</order_status_on_4>
100
- <order_status_on_5>canceled</order_status_on_5>
101
- <title>Alternative payment methods</title>
102
- <post_url_live>https://api.smart2pay.com</post_url_live>
103
- <post_url_test>https://apitest.smart2pay.com</post_url_test>
104
- <methods>1,2,3,4,5,8,9,12,13,14,18,19,20,22,23,24,25,27,28,29,32,33,34,35,36,37,40,42,43,44,46,47,48,49,52,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024</methods>
105
- <allowspecific>0</allowspecific>
106
- <autoselect_s2p>1</autoselect_s2p>
107
- <send_customer_name>1</send_customer_name>
108
- <send_customer_email>1</send_customer_email>
109
- <send_country>1</send_country>
110
- <send_payment_method>1</send_payment_method>
111
- <send_product_description>1</send_product_description>
112
- <product_description_ref>1</product_description_ref>
113
- <skip_payment_page>1</skip_payment_page>
114
- <debug_form>0</debug_form>
115
- <grid_column_number>3</grid_column_number>
116
- <return_url>http://www.example.com/index.php/globalpay/index/info/</return_url>
117
- <message_data_2>Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.</message_data_2>
118
- <message_data_4>There was a problem processing your payment. Please try again.</message_data_4>
119
- <message_data_3>You have canceled the payment.</message_data_3>
120
- <message_data_7>Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.</message_data_7>
121
- </globalpay>
122
- </payment>
123
- </default>
124
- </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Smart2Pay_Globalpay>
5
+ <version>1.1.1</version>
6
+ </Smart2Pay_Globalpay>
7
+ </modules>
8
+ <frontend>
9
+ <routers>
10
+ <globalpay>
11
+ <use>standard</use>
12
+ <args>
13
+ <module>Smart2Pay_Globalpay</module>
14
+ <frontName>globalpay</frontName>
15
+ </args>
16
+ </globalpay>
17
+ </routers>
18
+ <layout>
19
+ <updates>
20
+ <globalpay>
21
+ <file>globalpay.xml</file>
22
+ </globalpay>
23
+ </updates>
24
+ </layout>
25
+ <translate>
26
+ <modules>
27
+ <Smart2Pay_Globalpay>
28
+ <files>
29
+ <default>Smart2Pay_Globalpay.csv</default>
30
+ </files>
31
+ </Smart2Pay_Globalpay>
32
+ </modules>
33
+ </translate>
34
+ </frontend>
35
+
36
+ <global>
37
+
38
+ <template>
39
+ <email>
40
+ <payment_globalpay_payment_confirmation_template translate="label" module="globalpay">
41
+ <label>Globalpay Confirmation Template</label>
42
+ <file>smart2pay/globalpay/payment_confirmation.html</file>
43
+ <type>html</type>
44
+ </payment_globalpay_payment_confirmation_template>
45
+ </email>
46
+ </template>
47
+
48
+ <resources>
49
+ <globalpay_setup>
50
+ <setup>
51
+ <module>Smart2Pay_Globalpay</module>
52
+ <class>Smart2Pay_Globalpay_Model_Resource_Setup</class>
53
+ </setup>
54
+ </globalpay_setup>
55
+ </resources>
56
+
57
+ <models>
58
+ <globalpay>
59
+ <class>Smart2Pay_Globalpay_Model</class>
60
+ <resourceModel>globalpay_resource</resourceModel>
61
+ </globalpay>
62
+ <globalpay_resource>
63
+ <class>Smart2Pay_Globalpay_Model_Resource</class>
64
+ <entities>
65
+ <country>
66
+ <table>s2p_gp_countries</table>
67
+ </country>
68
+ <method>
69
+ <table>s2p_gp_methods</table>
70
+ </method>
71
+ <countrymethod>
72
+ <table>s2p_gp_countries_methods</table>
73
+ </countrymethod>
74
+ <logger>
75
+ <table>s2p_gp_logs</table>
76
+ </logger>
77
+ </entities>
78
+ </globalpay_resource>
79
+ </models>
80
+ <blocks>
81
+ <globalpay>
82
+ <class>Smart2Pay_Globalpay_Block</class>
83
+ </globalpay>
84
+ </blocks>
85
+ <helpers>
86
+ <globalpay>
87
+ <class>Smart2Pay_Globalpay_Helper</class>
88
+ </globalpay>
89
+ </helpers>
90
+ </global>
91
+ <default>
92
+ <payment>
93
+ <globalpay>
94
+ <active>1</active>
95
+ <model>globalpay/pay</model>
96
+ <order_status>holded</order_status>
97
+ <order_status_on_2>processing</order_status_on_2>
98
+ <order_status_on_3>canceled</order_status_on_3>
99
+ <order_status_on_4>canceled</order_status_on_4>
100
+ <order_status_on_5>canceled</order_status_on_5>
101
+ <title>Alternative payment methods</title>
102
+ <post_url_live>https://api.smart2pay.com</post_url_live>
103
+ <post_url_test>https://apitest.smart2pay.com</post_url_test>
104
+ <methods>1,2,3,4,5,8,9,12,13,14,18,19,20,22,23,24,25,27,28,29,32,33,34,35,36,37,40,42,43,44,46,47,48,49,52,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1033,1034,1035,1036,1037,1038</methods>
105
+ <allowspecific>0</allowspecific>
106
+ <autoselect_s2p>1</autoselect_s2p>
107
+ <send_country>1</send_country>
108
+ <send_payment_method>1</send_payment_method>
109
+ <product_description_ref>1</product_description_ref>
110
+ <skip_payment_page>1</skip_payment_page>
111
+ <debug_form>0</debug_form>
112
+ <grid_column_number>3</grid_column_number>
113
+ <return_url>http://www.example.com/index.php/globalpay/index/info/</return_url>
114
+ <message_data_2>Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.</message_data_2>
115
+ <message_data_4>There was a problem processing your payment. Please try again.</message_data_4>
116
+ <message_data_3>You have canceled the payment.</message_data_3>
117
+ <message_data_7>Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.</message_data_7>
118
+ </globalpay>
119
+ </payment>
120
+ </default>
121
+ </config>
 
 
 
app/code/community/Smart2Pay/Globalpay/etc/system.xml CHANGED
@@ -122,7 +122,7 @@
122
 
123
  <show_methods_in_grid translate="label">
124
  <label>Show methods in grid</label>
125
- <comment>By default, methods will be displayed within a two columns table, having logo/name and description. When set to yes, description is omitted, and columns number can be specified bellow.</comment>
126
  <frontend_type>select</frontend_type>
127
  <source_model>adminhtml/system_config_source_yesno</source_model>
128
  <sort_order>12</sort_order>
@@ -133,7 +133,7 @@
133
 
134
  <grid_column_number translate="label">
135
  <label>Grid column number</label>
136
- <comment>Please provide a number without aditional chars or spaces, otherwise, a default number 3 may be considered (This will be used only if above option is set to yes)</comment>
137
  <frontend_type>text</frontend_type>
138
  <sort_order>13</sort_order>
139
  <show_in_default>1</show_in_default>
@@ -152,24 +152,6 @@
152
  <show_in_store>0</show_in_store>
153
  </autoselect_s2p>
154
 
155
- <send_customer_email translate="label">
156
- <label>Send customer email</label>
157
- <frontend_type>select</frontend_type>
158
- <source_model>adminhtml/system_config_source_yesno</source_model>
159
- <sort_order>15</sort_order>
160
- <show_in_default>1</show_in_default>
161
- <show_in_website>1</show_in_website>
162
- <show_in_store>0</show_in_store>
163
- </send_customer_email>
164
- <send_customer_name translate="label">
165
- <label>Send customer name</label>
166
- <frontend_type>select</frontend_type>
167
- <source_model>adminhtml/system_config_source_yesno</source_model>
168
- <sort_order>16</sort_order>
169
- <show_in_default>1</show_in_default>
170
- <show_in_website>1</show_in_website>
171
- <show_in_store>0</show_in_store>
172
- </send_customer_name>
173
  <send_country translate="label">
174
  <label>Send country</label>
175
  <frontend_type>select</frontend_type>
@@ -188,17 +170,8 @@
188
  <show_in_website>1</show_in_website>
189
  <show_in_store>0</show_in_store>
190
  </send_payment_method>
191
- <send_product_description translate="label">
192
- <label>Send product description</label>
193
- <frontend_type>select</frontend_type>
194
- <source_model>adminhtml/system_config_source_yesno</source_model>
195
- <sort_order>19</sort_order>
196
- <show_in_default>1</show_in_default>
197
- <show_in_website>1</show_in_website>
198
- <show_in_store>0</show_in_store>
199
- </send_product_description>
200
  <product_description_ref translate="label">
201
- <label>Send product description as REF</label>
202
  <comment>If "No" is selected, the below custom description will be send</comment>
203
  <frontend_type>select</frontend_type>
204
  <source_model>adminhtml/system_config_source_yesno</source_model>
@@ -219,7 +192,7 @@
219
 
220
  <notify_customer translate="label">
221
  <label>Notify customer by email</label>
222
- <comment>Send an email notification to the customer containing payment details</comment>
223
  <frontend_type>select</frontend_type>
224
  <source_model>adminhtml/system_config_source_yesno</source_model>
225
  <sort_order>22</sort_order>
@@ -259,7 +232,7 @@
259
  </auto_ship>
260
 
261
  <order_status translate="label">
262
- <label>Default Order status</label>
263
  <frontend_type>select</frontend_type>
264
  <source_model>adminhtml/system_config_source_order_status</source_model>
265
  <sort_order>26</sort_order>
@@ -380,4 +353,4 @@
380
  </groups>
381
  </payment>
382
  </sections>
383
- </config>
122
 
123
  <show_methods_in_grid translate="label">
124
  <label>Show methods in grid</label>
125
+ <comment>By default, methods will be displayed as a two columns table, having paymentm method's logo or name and description. When set to yes, description is omitted, and columns number can be specified bellow.</comment>
126
  <frontend_type>select</frontend_type>
127
  <source_model>adminhtml/system_config_source_yesno</source_model>
128
  <sort_order>12</sort_order>
133
 
134
  <grid_column_number translate="label">
135
  <label>Grid column number</label>
136
+ <comment>Please provide a number, if left blank, the default value is 3 (This value is used only if above option is set to yes)</comment>
137
  <frontend_type>text</frontend_type>
138
  <sort_order>13</sort_order>
139
  <show_in_default>1</show_in_default>
152
  <show_in_store>0</show_in_store>
153
  </autoselect_s2p>
154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  <send_country translate="label">
156
  <label>Send country</label>
157
  <frontend_type>select</frontend_type>
170
  <show_in_website>1</show_in_website>
171
  <show_in_store>0</show_in_store>
172
  </send_payment_method>
 
 
 
 
 
 
 
 
 
173
  <product_description_ref translate="label">
174
+ <label>Send order number as product description</label>
175
  <comment>If "No" is selected, the below custom description will be send</comment>
176
  <frontend_type>select</frontend_type>
177
  <source_model>adminhtml/system_config_source_yesno</source_model>
192
 
193
  <notify_customer translate="label">
194
  <label>Notify customer by email</label>
195
+ <comment>Send a confirmation email to the customer on success payment notification</comment>
196
  <frontend_type>select</frontend_type>
197
  <source_model>adminhtml/system_config_source_yesno</source_model>
198
  <sort_order>22</sort_order>
232
  </auto_ship>
233
 
234
  <order_status translate="label">
235
+ <label>New Order status</label>
236
  <frontend_type>select</frontend_type>
237
  <source_model>adminhtml/system_config_source_order_status</source_model>
238
  <sort_order>26</sort_order>
353
  </groups>
354
  </payment>
355
  </sections>
356
+ </config>
app/code/community/Smart2Pay/Globalpay/sql/globalpay_setup/mysql4-upgrade-1.0.3-1.1.1.php ADDED
@@ -0,0 +1,585 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //die('Trying to setup Smart2Pay_Globalpay database');
3
+
4
+ $installer = $this;
5
+ $installer->startSetup();
6
+ $installer->run("
7
+
8
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/logger')}`;
9
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/logger')}` (
10
+ `log_id` int(11) NOT NULL auto_increment,
11
+ `log_type` varchar(255) collate utf8_unicode_ci default NULL,
12
+ `log_message` text collate utf8_unicode_ci default NULL,
13
+ `log_source_file` varchar(255) collate utf8_unicode_ci default NULL,
14
+ `log_source_file_line` varchar(255) collate utf8_unicode_ci default NULL,
15
+ `log_created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
16
+ PRIMARY KEY (`log_id`)
17
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
18
+
19
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/method')}`;
20
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/method')}` (
21
+ `method_id` int(11) NOT NULL auto_increment,
22
+ `display_name` varchar(255) collate utf8_unicode_ci default NULL,
23
+ `provider_value` varchar(255) collate utf8_unicode_ci default NULL,
24
+ `description` text collate utf8_unicode_ci,
25
+ `logo_url` varchar(255) collate utf8_unicode_ci default NULL,
26
+ `guaranteed` int(1) default NULL,
27
+ `active` int(1) default NULL,
28
+ PRIMARY KEY (`method_id`)
29
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
30
+ INSERT INTO `{$installer->getTable('globalpay/method')}` (`method_id`, `display_name`, `provider_value`, `description`, `logo_url`, `guaranteed`, `active`) VALUES
31
+ (1, 'Bank Transfer', 'banktransfer', 'Bank Transfer description', 'bank_transfer_logo_v5.gif', 1, 1),
32
+ (2, 'iDEAL', 'ideal', 'iDEAL description', 'ideal.jpg', 1, 1),
33
+ (3, 'MrCash', 'mrcash', 'MrCash description', 'mrcash.gif', 1, 1),
34
+ (4, 'Giropay', 'giropay', 'Giropay description', 'giropay.gif', 1, 1),
35
+ (5, 'EPS', 'eps', 'EPS description', 'eps-e-payment-standard.gif', 1, 1),
36
+ (8, 'UseMyFunds', 'umb', 'UseMyFunds description', 'umb.gif', 1, 1),
37
+ (9, 'DirectEbanking', 'dp24', 'DirectEbanking description', 'dp24_sofort.gif', 0, 1),
38
+ (12, 'Przelewy24', 'p24', 'Przelewy24 description', 'p24.gif', 1, 1),
39
+ (13, 'OneCard', 'onecard', 'OneCard description', 'onecard.gif', 1, 1),
40
+ (14, 'CashU', 'cashu', 'CashU description', 'cashu.gif', 1, 1),
41
+ (18, 'POLi', 'poli', 'POLi description', 'poli.gif', 0, 1),
42
+ (19, 'DineroMail', 'dineromail', 'DineroMail description', 'dineromail_v2.gif', 0, 1),
43
+ (20, 'Multibanco SIBS', 'sibs', 'Multibanco SIBS description', 'sibs_mb.gif', 1, 1),
44
+ (22, 'Moneta Wallet', 'moneta', 'Moneta Wallet description', 'moneta_v2.gif', 1, 1),
45
+ (23, 'WebToPay', 'webtopay', 'WebToPay description', 'webtopay_v3.gif', 1, 1),
46
+ (24, 'Alipay', 'alipay', 'Alipay description', 'alipay.jpg', 1, 1),
47
+ (25, 'Abaqoos', 'abaqoos', 'Abaqoos description', 'abaqoos.gif', 1, 1),
48
+ (27, 'eBanka', 'ebanka', 'eBanka description', 'ebanka.jpg', 1, 1),
49
+ (28, 'Ukash', 'ukash', 'Ukash description', 'ukash.gif', 1, 1),
50
+ (29, 'GluePay', 'gluepay', 'GluePay description', 'gluepay.jpg', 1, 1),
51
+ (32, 'Debito Banco do Brasil', 'debitobdb', 'Debito Banco do Brasil description', 'banco_do_brasil.jpg', 1, 1),
52
+ (33, 'CuentaDigital', 'cuentadigital', 'CuentaDigital description', 'cuentadigital.gif', 1, 1),
53
+ (34, 'CardsBrazil', 'cardsbrl', 'CardsBrazil description', 'cards_brl.gif', 0, 1),
54
+ (35, 'PaysBuy', 'paysbuy', 'PaysBuy description', 'paysbuy.gif', 0, 1),
55
+ (36, 'Mazooma', 'mazooma', 'Mazooma description', 'mazooma.gif', 0, 1),
56
+ (37, 'eNETS Debit', 'enets', 'eNETS Debit description', 'enets.gif', 1, 1),
57
+ (40, 'Paysafecard', 'paysafecard', 'Paysafecard description', 'paysafecard.gif', 1, 1),
58
+ (42, 'PayPal', 'paypal', 'PayPal description', 'paypal.jpg', 1, 0),
59
+ (43, 'PagTotal', 'pagtotal', 'PagTotal description', 'pagtotal.jpg', 0, 1),
60
+ (44, 'Payeasy', 'payeasy', 'Payeasy description', 'payeasy.gif', 1, 1),
61
+ (46, 'MercadoPago', 'mercadopago', 'MercadoPago description', 'mercadopago.jpg', 0, 1),
62
+ (47, 'Mozca', 'mozca', 'Mozca description', 'mozca.jpg', 0, 1),
63
+ (49, 'ToditoCash', 'toditocash', 'ToditoCash description', 'todito_cash.gif', 1, 1),
64
+ (58, 'PayWithMyBank', 'pwmb', 'PayWithMyBank description', 'pwmb.png', 1 , 1),
65
+ (63, 'TrustPay', 'trustpay','TrustPay description', 'trustpay.png', 1 , 1),
66
+ (64, 'MangirKart', 'mangirkart', 'MangirKart description', 'mangirkart.jpg', 1, 1),
67
+ (66, 'MTCPay', 'mtcpay', 'MTCPay description', 'mtcpay.png', 1, 1),
68
+ (67, 'DragonPay', 'dragonpay', 'DragonPay description', 'dragonpay.jpg', 1 , 1),
69
+ (1000, 'Boleto', 'paganet', 'Boleto description', 'boleto.jpg', 1, 1),
70
+ (1001, 'Debito', 'paganet', 'Debito description', 'debito_bradesco.jpg', 1, 1),
71
+ (1002, 'Transferencia', 'paganet', 'Transferencia description', 'bradesco_transferencia.jpg', 1, 1),
72
+ (1003, 'QIWI Wallet', 'qiwi', 'QIWI Wallet description', 'qiwi_wallet_v2.gif', 1, 1),
73
+ (1004, 'Beeline', 'qiwi', 'Beeline description', 'beeline.gif', 1, 1),
74
+ (1005, 'Megafon', 'qiwi', 'Megafon description', 'megafon_v1.gif', 1, 1),
75
+ (1006, 'MTS', 'qiwi', 'MTS description', 'mts.gif', 1, 1),
76
+ (1007, 'WebMoney', 'moneta', 'WebMoney description', 'webmoney_v1.gif', 1, 1),
77
+ (1008, 'Yandex', 'moneta', 'Yandex description', 'yandex_money.gif', 1, 1),
78
+ (1009, 'Alliance Online', 'asiapay', 'Alliance Online description', 'alliance_online.gif', 1, 1),
79
+ (1010, 'AmBank', 'asiapay', 'AmBank description', 'ambankgroup.gif', 1, 1),
80
+ (1011, 'CIMB Clicks', 'asiapay', 'CIMB Clicks description', 'cimb_clicks.gif', 1, 1),
81
+ (1012, 'FPX', 'asiapay', 'FPX description', 'FPX.gif', 1, 1),
82
+ (1013, 'Hong Leong Bank Transfer', 'asiapay', 'Hong Leong Bank Transfer description', 'hong_leong.gif', 1, 1),
83
+ (1014, 'Maybank2U', 'asiapay', 'Maybank2U description', 'maybank2u.gif', 1, 1),
84
+ (1015, 'Meps Cash', 'asiapay', 'Meps Cash description', 'meps_cash.gif', 1, 1),
85
+ (1016, 'Mobile Money', 'asiapay', 'Mobile Money description', 'mobile_money.gif', 1, 1),
86
+ (1017, 'RHB', 'asiapay', 'RHB description', 'rhb.gif', 1, 1),
87
+ (1018, 'Webcash', 'asiapay', 'Webcash description', 'web_cash.gif', 1, 1),
88
+ (1019, 'Credit Cards Colombia', 'pagosonline', 'Credit Cards Colombia description', 'cards_colombia.jpg', 1, 1),
89
+ (1020, 'PSE', 'pagosonline', 'PSE description', 'pse.gif', 1, 1),
90
+ (1021, 'ACH Debit', 'pagosonline', 'ACH Debit description', 'ACH.gif', 1, 1),
91
+ (1022, 'Via Baloto', 'pagosonline', 'Via Baloto description', 'payment_in_cash.gif', 1, 1),
92
+ (1023, 'Referenced Payment', 'pagosonline', 'Referenced Payment description', 'payment_references.gif', 1, 1),
93
+ (1024, 'Mandiri', 'asiapay', 'Mandiri description', 'mandiri.gif', 1, 1),
94
+ (1025, 'XL Tunai', 'asiapay', 'XL Tunai description', 'XLTunai.gif', 1, 1),
95
+ (1026, 'Bancomer Pago referenciado', 'dineromaildirect', 'Bancomer Pago referenciado description', 'bancomer.gif', 1, 1),
96
+ (1027, 'Santander Pago referenciado', 'dineromaildirect', 'Santander Pago referenciado description', 'santander.gif', 1, 1),
97
+ (1028, 'ScotiaBank Pago referenciado', 'dineromaildirect', 'ScotiaBank Pago referenciado description', 'scotiabank.gif', 1, 1),
98
+ (1029, '7-Eleven Pago en efectivo', 'dineromaildirect', '7-Eleven Pago en efectivo description', '7eleven.gif', 1, 1),
99
+ (1030, 'Oxxo Pago en efectivo', 'dineromaildirect', 'Oxxo Pago en efectivo description', 'oxxo.gif', 1, 1),
100
+ (1031, 'IXE Pago referenciado', 'dineromaildirect', 'IXE Pago referenciado description', 'IXe.gif', 1, 1),
101
+ (1033, 'Cards Thailand', 'paysbuy', 'Cards Thailand description', 'cards_brl.gif', 1, 1),
102
+ (1034, 'PayPalThailand', 'paysbuy', 'PayPalThailand description', 'paypal.jpg', 1, 1),
103
+ (1035, 'AMEXThailand', 'paysbuy', 'AMEXThailand description', 'american_express.jpg', 1, 1),
104
+ (1036, 'Cash Options Thailand', 'paysbuy', 'Cash Options Thailand description', 'cash_paysbuy.jpg', 1, 1),
105
+ (1037, 'OnlineBankingThailand', 'paysbuy', 'OnlineBankingThailand description', 'onlinebankingthailand.gif', 1, 1),
106
+ (1038, 'PaysBuy Wallet', 'paysbuy', 'PaysBuy Wallet description', 'paysbuy.gif', 1, 1);
107
+
108
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/country')}`;
109
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/country')}` (
110
+ `country_id` int(11) NOT NULL auto_increment,
111
+ `code` varchar(3) collate utf8_unicode_ci default NULL,
112
+ `name` varchar(100) collate utf8_unicode_ci default NULL,
113
+ PRIMARY KEY (`country_id`)
114
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
115
+ INSERT INTO `{$installer->getTable('globalpay/country')}` (`country_id`, `code`, `name`) VALUES
116
+ (1, 'AD', 'Andorra'),
117
+ (2, 'AE', 'United Arab Emirates'),
118
+ (3, 'AF', 'Afghanistan'),
119
+ (4, 'AG', 'Antigua and Barbuda'),
120
+ (5, 'AI', 'Anguilla'),
121
+ (6, 'AL', 'Albania'),
122
+ (7, 'AM', 'Armenia'),
123
+ (8, 'AN', 'Netherlands Antilles'),
124
+ (9, 'AO', 'Angola'),
125
+ (10, 'AQ', 'Antarctica'),
126
+ (11, 'AR', 'Argentina'),
127
+ (12, 'AS', 'American Samoa'),
128
+ (13, 'AT', 'Austria'),
129
+ (14, 'AU', 'Australia'),
130
+ (15, 'AW', 'Aruba'),
131
+ (16, 'AZ', 'Azerbaijan'),
132
+ (17, 'BA', 'Bosnia & Herzegowina'),
133
+ (18, 'BB', 'Barbados'),
134
+ (19, 'BD', 'Bangladesh'),
135
+ (20, 'BE', 'Belgium'),
136
+ (21, 'BF', 'Burkina Faso'),
137
+ (22, 'BG', 'Bulgaria'),
138
+ (23, 'BH', 'Bahrain'),
139
+ (24, 'BI', 'Burundi'),
140
+ (25, 'BJ', 'Benin'),
141
+ (26, 'BM', 'Bermuda'),
142
+ (27, 'BN', 'Brunei Darussalam'),
143
+ (28, 'BO', 'Bolivia'),
144
+ (29, 'BR', 'Brazil'),
145
+ (30, 'BS', 'Bahamas'),
146
+ (31, 'BT', 'Bhutan'),
147
+ (32, 'BV', 'Bouvet Island'),
148
+ (33, 'BW', 'Botswana'),
149
+ (34, 'BY', 'Belarus (formerly known as Byelorussia)'),
150
+ (35, 'BZ', 'Belize'),
151
+ (36, 'CA', 'Canada'),
152
+ (37, 'CC', 'Cocos (Keeling) Islands'),
153
+ (38, 'CD', 'Congo, Democratic Republic of the (formerly Zalre)'),
154
+ (39, 'CF', 'Central African Republic'),
155
+ (40, 'CG', 'Congo'),
156
+ (41, 'CH', 'Switzerland'),
157
+ (42, 'CI', 'Ivory Coast (Cote d''Ivoire)'),
158
+ (43, 'CK', 'Cook Islands'),
159
+ (44, 'CL', 'Chile'),
160
+ (45, 'CM', 'Cameroon'),
161
+ (46, 'CN', 'China'),
162
+ (47, 'CO', 'Colombia'),
163
+ (48, 'CR', 'Costa Rica'),
164
+ (49, 'CS', 'Serbia and Montenegro (formerly Yugoslavia)'),
165
+ (50, 'CU', 'Cuba'),
166
+ (51, 'CV', 'Cape Verde'),
167
+ (52, 'CX', 'Christmas Island'),
168
+ (53, 'CY', 'Cyprus'),
169
+ (54, 'CZ', 'Czech Republic'),
170
+ (55, 'DE', 'Germany'),
171
+ (56, 'DJ', 'Djibouti'),
172
+ (57, 'DK', 'Denmark'),
173
+ (58, 'DM', 'Dominica'),
174
+ (59, 'DO', 'Dominican Republic'),
175
+ (60, 'DZ', 'Algeria'),
176
+ (61, 'EC', 'Ecuador'),
177
+ (62, 'EE', 'Estonia'),
178
+ (63, 'EG', 'Egypt'),
179
+ (64, 'EH', 'Western Sahara'),
180
+ (65, 'ER', 'Eritrea'),
181
+ (66, 'ES', 'Spain'),
182
+ (67, 'ET', 'Ethiopia'),
183
+ (68, 'FI', 'Finland'),
184
+ (69, 'FJ', 'Fiji Islands'),
185
+ (70, 'FK', 'Falkland Islands (Malvinas)'),
186
+ (71, 'FM', 'Micronesia, Federated States of'),
187
+ (72, 'FO', 'Faroe Islands'),
188
+ (73, 'FR', 'France'),
189
+ (74, 'FX', 'France, Metropolitan'),
190
+ (75, 'GA', 'Gabon'),
191
+ (76, 'GB', 'United Kingdom'),
192
+ (77, 'GD', 'Grenada'),
193
+ (78, 'GE', 'Georgia'),
194
+ (79, 'GF', 'French Guiana'),
195
+ (80, 'GH', 'Ghana'),
196
+ (81, 'GI', 'Gibraltar'),
197
+ (82, 'GL', 'Greenland'),
198
+ (83, 'GM', 'Gambia'),
199
+ (84, 'GN', 'Guinea'),
200
+ (85, 'GP', 'Guadeloupe'),
201
+ (86, 'GQ', 'Equatorial Guinea'),
202
+ (87, 'GR', 'Greece'),
203
+ (88, 'GS', 'South Georgia and the South Sandwich Islands'),
204
+ (89, 'GT', 'Guatemala'),
205
+ (90, 'GU', 'Guam'),
206
+ (91, 'GW', 'Guinea-Bissau'),
207
+ (92, 'GY', 'Guyana'),
208
+ (93, 'HK', 'Hong Kong'),
209
+ (94, 'HM', 'Heard and McDonald Islands'),
210
+ (95, 'HN', 'Honduras'),
211
+ (96, 'HR', 'Croatia (local name: Hrvatska)'),
212
+ (97, 'HT', 'Haiti'),
213
+ (98, 'HU', 'Hungary'),
214
+ (99, 'ID', 'Indonesia'),
215
+ (100, 'IE', 'Ireland'),
216
+ (101, 'IL', 'Israel'),
217
+ (102, 'IN', 'India'),
218
+ (103, 'IO', 'British Indian Ocean Territory'),
219
+ (104, 'IQ', 'Iraq'),
220
+ (105, 'IR', 'Iran, Islamic Republic of'),
221
+ (106, 'IS', 'Iceland'),
222
+ (107, 'IT', 'Italy'),
223
+ (108, 'JM', 'Jamaica'),
224
+ (109, 'JO', 'Jordan'),
225
+ (110, 'JP', 'Japan'),
226
+ (111, 'KE', 'Kenya'),
227
+ (112, 'KG', 'Kyrgyzstan'),
228
+ (113, 'KH', 'Cambodia (formerly Kampuchea)'),
229
+ (114, 'KI', 'Kiribati'),
230
+ (115, 'KM', 'Comoros'),
231
+ (116, 'KN', 'Saint Kitts (Christopher) and Nevis'),
232
+ (117, 'KP', 'Korea, Democratic People''s Republic of (North Korea)'),
233
+ (118, 'KR', 'Korea, Republic of (South Korea)'),
234
+ (119, 'KW', 'Kuwait'),
235
+ (120, 'KY', 'Cayman Islands'),
236
+ (121, 'KZ', 'Kazakhstan'),
237
+ (122, 'LA', 'Lao People''s Democratic Republic (formerly Laos)'),
238
+ (123, 'LB', 'Lebanon'),
239
+ (124, 'LC', 'Saint Lucia'),
240
+ (125, 'LI', 'Liechtenstein'),
241
+ (126, 'LK', 'Sri Lanka'),
242
+ (127, 'LR', 'Liberia'),
243
+ (128, 'LS', 'Lesotho'),
244
+ (129, 'LT', 'Lithuania'),
245
+ (130, 'LU', 'Luxembourg'),
246
+ (131, 'LV', 'Latvia'),
247
+ (132, 'LY', 'Libyan Arab Jamahiriya'),
248
+ (133, 'MA', 'Morocco'),
249
+ (134, 'MC', 'Monaco'),
250
+ (135, 'MD', 'Moldova, Republic of'),
251
+ (136, 'MG', 'Madagascar'),
252
+ (137, 'MH', 'Marshall Islands'),
253
+ (138, 'MK', 'Macedonia, the Former Yugoslav Republic of'),
254
+ (139, 'ML', 'Mali'),
255
+ (140, 'MM', 'Myanmar (formerly Burma)'),
256
+ (141, 'MN', 'Mongolia'),
257
+ (142, 'MO', 'Macao (also spelled Macau)'),
258
+ (143, 'MP', 'Northern Mariana Islands'),
259
+ (144, 'MQ', 'Martinique'),
260
+ (145, 'MR', 'Mauritania'),
261
+ (146, 'MS', 'Montserrat'),
262
+ (147, 'MT', 'Malta'),
263
+ (148, 'MU', 'Mauritius'),
264
+ (149, 'MV', 'Maldives'),
265
+ (150, 'MW', 'Malawi'),
266
+ (151, 'MX', 'Mexico'),
267
+ (152, 'MY', 'Malaysia'),
268
+ (153, 'MZ', 'Mozambique'),
269
+ (154, 'NA', 'Namibia'),
270
+ (155, 'NC', 'New Caledonia'),
271
+ (156, 'NE', 'Niger'),
272
+ (157, 'NF', 'Norfolk Island'),
273
+ (158, 'NG', 'Nigeria'),
274
+ (159, 'NI', 'Nicaragua'),
275
+ (160, 'NL', 'Netherlands'),
276
+ (161, 'NO', 'Norway'),
277
+ (162, 'NP', 'Nepal'),
278
+ (163, 'NR', 'Nauru'),
279
+ (164, 'NU', 'Niue'),
280
+ (165, 'NZ', 'New Zealand'),
281
+ (166, 'OM', 'Oman'),
282
+ (167, 'PA', 'Panama'),
283
+ (168, 'PE', 'Peru'),
284
+ (169, 'PF', 'French Polynesia'),
285
+ (170, 'PG', 'Papua New Guinea'),
286
+ (171, 'PH', 'Philippines'),
287
+ (172, 'PK', 'Pakistan'),
288
+ (173, 'PL', 'Poland'),
289
+ (174, 'PM', 'St Pierre and Miquelon'),
290
+ (175, 'PN', 'Pitcairn Island'),
291
+ (176, 'PR', 'Puerto Rico'),
292
+ (177, 'PT', 'Portugal'),
293
+ (178, 'PW', 'Palau'),
294
+ (179, 'PY', 'Paraguay'),
295
+ (180, 'QA', 'Qatar'),
296
+ (181, 'RE', 'R'),
297
+ (182, 'RO', 'Romania'),
298
+ (183, 'RU', 'Russian Federation'),
299
+ (184, 'RW', 'Rwanda'),
300
+ (185, 'SA', 'Saudi Arabia'),
301
+ (186, 'SB', 'Solomon Islands'),
302
+ (187, 'SC', 'Seychelles'),
303
+ (188, 'SD', 'Sudan'),
304
+ (189, 'SE', 'Sweden'),
305
+ (190, 'SG', 'Singapore'),
306
+ (191, 'SH', 'St Helena'),
307
+ (192, 'SI', 'Slovenia'),
308
+ (193, 'SJ', 'Svalbard and Jan Mayen Islands'),
309
+ (194, 'SK', 'Slovakia'),
310
+ (195, 'SL', 'Sierra Leone'),
311
+ (196, 'SM', 'San Marino'),
312
+ (197, 'SN', 'Senegal'),
313
+ (198, 'SO', 'Somalia'),
314
+ (199, 'SR', 'Suriname'),
315
+ (200, 'ST', 'Sco Tom'),
316
+ (201, 'SU', 'Union of Soviet Socialist Republics'),
317
+ (202, 'SV', 'El Salvador'),
318
+ (203, 'SY', 'Syrian Arab Republic'),
319
+ (204, 'SZ', 'Swaziland'),
320
+ (205, 'TC', 'Turks and Caicos Islands'),
321
+ (206, 'TD', 'Chad'),
322
+ (207, 'TF', 'French Southern and Antarctic Territories'),
323
+ (208, 'TG', 'Togo'),
324
+ (209, 'TH', 'Thailand'),
325
+ (210, 'TJ', 'Tajikistan'),
326
+ (211, 'TK', 'Tokelau'),
327
+ (212, 'TM', 'Turkmenistan'),
328
+ (213, 'TN', 'Tunisia'),
329
+ (214, 'TO', 'Tonga'),
330
+ (215, 'TP', 'East Timor'),
331
+ (216, 'TR', 'Turkey'),
332
+ (217, 'TT', 'Trinidad and Tobago'),
333
+ (218, 'TV', 'Tuvalu'),
334
+ (219, 'TW', 'Taiwan, Province of China'),
335
+ (220, 'TZ', 'Tanzania, United Republic of'),
336
+ (221, 'UA', 'Ukraine'),
337
+ (222, 'UG', 'Uganda'),
338
+ (223, 'UM', 'United States Minor Outlying Islands'),
339
+ (224, 'US', 'United States of America'),
340
+ (225, 'UY', 'Uruguay'),
341
+ (226, 'UZ', 'Uzbekistan'),
342
+ (227, 'VA', 'Holy See (Vatican City State)'),
343
+ (228, 'VC', 'Saint Vincent and the Grenadines'),
344
+ (229, 'VE', 'Venezuela'),
345
+ (230, 'VG', 'Virgin Islands (British)'),
346
+ (231, 'VI', 'Virgin Islands (US)'),
347
+ (232, 'VN', 'Viet Nam'),
348
+ (233, 'VU', 'Vanautu'),
349
+ (234, 'WF', 'Wallis and Futuna Islands'),
350
+ (235, 'WS', 'Samoa'),
351
+ (236, 'XO', 'West Africa'),
352
+ (237, 'YE', 'Yemen'),
353
+ (238, 'YT', 'Mayotte'),
354
+ (239, 'ZA', 'South Africa'),
355
+ (240, 'ZM', 'Zambia'),
356
+ (241, 'ZW', 'Zimbabwe'),
357
+ (242, 'PS', 'Palestinian Territory');
358
+
359
+
360
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/countrymethod')}`;
361
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/countrymethod')}` (
362
+ `id` int(11) NOT NULL auto_increment,
363
+ `country_id` int(11) default NULL,
364
+ `method_id` int(11) default NULL,
365
+ `priority` int(2) default NULL,
366
+ PRIMARY KEY (`id`)
367
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
368
+ INSERT INTO `{$installer->getTable('globalpay/countrymethod')}` (`id`, `country_id`, `method_id`, `priority`) VALUES
369
+ (1, 2, 13, 1),
370
+ (2, 2, 14, 2),
371
+ (3, 11, 19, 1),
372
+ (4, 11, 33, 3),
373
+ (5, 11, 47, 2),
374
+ (6, 13, 1, 5),
375
+ (7, 13, 5, 1),
376
+ (8, 13, 9, 3),
377
+ (9, 13, 28, 4),
378
+ (10, 13, 40, 2),
379
+ (11, 14, 18, 1),
380
+ (12, 14, 28, 2),
381
+ (13, 20, 1, 3),
382
+ (14, 20, 3, 1),
383
+ (15, 20, 28, 4),
384
+ (16, 20, 40, 2),
385
+ (17, 22, 1, 1),
386
+ (18, 23, 13, 1),
387
+ (19, 23, 14, 2),
388
+ (20, 29, 32, 2),
389
+ (21, 29, 34, 3),
390
+ (22, 29, 43, 7),
391
+ (23, 29, 46, 1),
392
+ (24, 29, 47, 8),
393
+ (25, 29, 1000, 4),
394
+ (26, 29, 1001, 5),
395
+ (27, 29, 1002, 6),
396
+ (28, 36, 8, 1),
397
+ (29, 36, 28, 2),
398
+ (30, 41, 1, 1),
399
+ (31, 41, 9, 2),
400
+ (32, 44, 19, 2),
401
+ (33, 44, 47, 3),
402
+ (34, 46, 24, 1),
403
+ (35, 46, 28, 2),
404
+ (37, 47, 47, 8),
405
+ (38, 47, 1019, 1),
406
+ (39, 47, 1020, 2),
407
+ (40, 47, 1021, 3),
408
+ (41, 47, 1022, 4),
409
+ (42, 47, 1023, 5),
410
+ (43, 53, 13, 2),
411
+ (44, 53, 14, 3),
412
+ (45, 53, 28, 1),
413
+ (46, 54, 1, 3),
414
+ (47, 54, 27, 1),
415
+ (48, 54, 28, 2),
416
+ (49, 55, 1, 6),
417
+ (50, 55, 4, 1),
418
+ (51, 55, 9, 2),
419
+ (52, 55, 14, 5),
420
+ (53, 55, 28, 4),
421
+ (54, 55, 40, 3),
422
+ (55, 57, 1, 2),
423
+ (56, 57, 28, 3),
424
+ (57, 57, 29, 1),
425
+ (58, 60, 14, 1),
426
+ (59, 62, 1, 4),
427
+ (60, 62, 23, 1),
428
+ (61, 62, 28, 3),
429
+ (62, 62, 29, 2),
430
+ (63, 63, 13, 1),
431
+ (64, 63, 14, 2),
432
+ (65, 66, 1, 2),
433
+ (66, 66, 14, 4),
434
+ (67, 66, 28, 3),
435
+ (68, 66, 29, 1),
436
+ (69, 68, 1, 1),
437
+ (70, 68, 28, 3),
438
+ (71, 68, 29, 2),
439
+ (72, 73, 1, 1),
440
+ (73, 73, 14, 2),
441
+ (74, 76, 1, 1),
442
+ (75, 76, 40, 4),
443
+ (76, 76, 9, 3),
444
+ (77, 76, 14, 5),
445
+ (78, 76, 28, 2),
446
+ (79, 87, 28, 1),
447
+ (81, 98, 1, 3),
448
+ (82, 98, 25, 1),
449
+ (83, 98, 28, 2),
450
+ (84, 98, 40, 4),
451
+ (85, 99, 1024, 1),
452
+ (86, 100, 1, 2),
453
+ (87, 100, 14, 3),
454
+ (88, 100, 28, 1),
455
+ (89, 101, 13, 1),
456
+ (90, 101, 14, 2),
457
+ (91, 104, 13, 1),
458
+ (92, 104, 14, 2),
459
+ (93, 107, 1, 2),
460
+ (94, 107, 14, 3),
461
+ (95, 107, 28, 1),
462
+ (96, 109, 13, 1),
463
+ (97, 109, 14, 2),
464
+ (98, 119, 13, 1),
465
+ (99, 121, 1003, 1),
466
+ (100, 121, 1004, 2),
467
+ (101, 121, 1005, 3),
468
+ (102, 121, 1006, 4),
469
+ (103, 123, 13, 1),
470
+ (104, 123, 14, 2),
471
+ (105, 129, 1, 3),
472
+ (106, 129, 23, 1),
473
+ (107, 129, 29, 2),
474
+ (108, 130, 1, 1),
475
+ (109, 131, 23, 1),
476
+ (110, 131, 28, 3),
477
+ (111, 131, 29, 2),
478
+ (112, 151, 19, 2),
479
+ (113, 151, 28, 4),
480
+ (114, 151, 49, 1),
481
+ (115, 152, 1009, 1),
482
+ (116, 152, 1010, 2),
483
+ (117, 152, 1011, 3),
484
+ (118, 152, 1012, 4),
485
+ (119, 152, 1013, 5),
486
+ (120, 152, 1014, 6),
487
+ (121, 152, 1015, 7),
488
+ (122, 152, 1016, 8),
489
+ (123, 152, 1017, 9),
490
+ (124, 152, 1018, 10),
491
+ (125, 158, 14, 1),
492
+ (126, 160, 1, 5),
493
+ (127, 160, 2, 1),
494
+ (128, 160, 9, 2),
495
+ (129, 160, 28, 4),
496
+ (130, 160, 40, 3),
497
+ (131, 161, 1, 1),
498
+ (132, 161, 28, 3),
499
+ (133, 161, 29, 2),
500
+ (134, 165, 18, 2),
501
+ (135, 165, 28, 2),
502
+ (136, 166, 13, 1),
503
+ (137, 166, 14, 2),
504
+ (138, 171, 44, 1),
505
+ (139, 173, 1, 2),
506
+ (140, 173, 12, 1),
507
+ (141, 173, 14, 4),
508
+ (142, 173, 28, 3),
509
+ (143, 173, 40, 5),
510
+ (144, 177, 1, 3),
511
+ (145, 177, 14, 4),
512
+ (146, 177, 20, 1),
513
+ (147, 177, 28, 2),
514
+ (148, 180, 13, 1),
515
+ (149, 180, 14, 2),
516
+ (150, 182, 1, 2),
517
+ (151, 182, 40, 1),
518
+ (152, 183, 22, 1),
519
+ (153, 183, 28, 8),
520
+ (154, 183, 1003, 4),
521
+ (155, 183, 1004, 5),
522
+ (156, 183, 1005, 6),
523
+ (157, 183, 1006, 7),
524
+ (158, 183, 1007, 2),
525
+ (159, 183, 1008, 3),
526
+ (160, 185, 13, 1),
527
+ (161, 185, 14, 2),
528
+ (162, 188, 14, 1),
529
+ (163, 189, 1, 2),
530
+ (164, 189, 28, 3),
531
+ (165, 189, 29, 1),
532
+ (166, 190, 37, 1),
533
+ (167, 192, 14, 2),
534
+ (168, 192, 28, 1),
535
+ (169, 194, 1, 1),
536
+ (170, 209, 35, 1),
537
+ (171, 213, 13, 1),
538
+ (172, 213, 14, 2),
539
+ (173, 216, 1, 1),
540
+ (174, 216, 13, 3),
541
+ (175, 216, 14, 4),
542
+ (176, 216, 28, 5),
543
+ (177, 216, 40, 2),
544
+ (178, 219, 48, 1),
545
+ (179, 221, 22, 1),
546
+ (180, 221, 28, 4),
547
+ (181, 221, 1007, 2),
548
+ (182, 221, 1008, 3),
549
+ (183, 224, 8, 3),
550
+ (184, 224, 36, 1),
551
+ (186, 239, 1, 2),
552
+ (187, 239, 28, 1),
553
+ (188, 242, 13, 1),
554
+ (189, 242, 14, 2),
555
+ (190, 99, 1025, 2),
556
+ (191, 151, 1026, 5),
557
+ (192, 151, 1027, 6),
558
+ (193, 151, 1028, 7),
559
+ (194, 151, 1029, 8),
560
+ (195, 151, 1030, 9),
561
+ (196, 151, 1031, 10),
562
+ (198, 209, 1033, 7),
563
+ (199, 209, 1034, 6),
564
+ (200, 209, 1035, 5),
565
+ (201, 209, 1036, 3),
566
+ (202, 209, 1037, 4),
567
+ (203, 209, 1038, 2),
568
+ (204, 29, 19, 10),
569
+ (205, 107, 40, 4),
570
+ (206, 73, 40, 3),
571
+ (207, 73, 28, 4),
572
+ (208, 224, 58, 2),
573
+ (209, 194, 63, 2),
574
+ (210, 62, 63, 5),
575
+ (211, 192, 63, 3),
576
+ (212, 54, 63, 3),
577
+ (213, 182, 63, 3),
578
+ (214, 22, 63, 2),
579
+ (215, 98, 63, 5),
580
+ (216, 171, 67, 2),
581
+ (217, 216, 64, 6),
582
+ (218, 216, 66, 7);
583
+ ");
584
+ $installer->endSetup();
585
+ ?>
app/design/frontend/base/default/template/smart2pay/globalpay/paymethod/sendform.phtml CHANGED
@@ -1,19 +1,19 @@
1
 
2
- <div style="<?=($this->form_data['debug_form']) ? "display: table;" : "display: none;" ?>">
3
 
4
  <?php if($this->form_data['debug_form']): ?>
5
- <p><b>Message to hash</b>: <?=$this->message_to_hash?></p>
6
- <p><b>Hash</b>: <?=$this->hash?></p>
7
  <?php endif; ?>
8
 
9
- <form action="<?= $this->form_data['post_url'] ?>" id="s2pform" method="POST" <?php if($this->form_data['redirect_in_iframe']) echo 'target="merchantIframe"'; ?>>
10
  <table>
11
  <tr>
12
  <td>
13
  MerchantID
14
  </td>
15
  <td>
16
- <input type="text" name="MerchantID" value="<?= $this->form_data['mid'] ?>"/>
17
  </td>
18
  </tr>
19
  <tr>
@@ -21,7 +21,7 @@
21
  MerchantTransactionID
22
  </td>
23
  <td>
24
- <input type="text" name="MerchantTransactionID" value="<?= $this->form_data['order_id'] ?>"/>
25
  </td>
26
  </tr>
27
  <tr>
@@ -29,7 +29,7 @@
29
  Amount
30
  </td>
31
  <td>
32
- <input type="text" name="Amount" value="<?= $this->form_data['amount'] ?>"/>
33
  </td>
34
  </tr>
35
  <tr>
@@ -37,7 +37,7 @@
37
  Currency
38
  </td>
39
  <td>
40
- <input type="text" name="Currency" value="<?= $this->form_data['currency'] ?>"/>
41
  </td>
42
  </tr>
43
  <tr>
@@ -45,7 +45,7 @@
45
  ReturnURL
46
  </td>
47
  <td>
48
- <input type="text" name="ReturnURL" value="<?= $this->form_data['return_url'] ?>"/>
49
  </td>
50
  </tr>
51
  <tr>
@@ -53,7 +53,7 @@
53
  IncludeMethodIDs
54
  </td>
55
  <td>
56
- <input type="text" name="IncludeMethodIDs" value="<?= $this->form_data['methods'] ?>"/>
57
  </td>
58
  </tr>
59
  <tr>
@@ -61,27 +61,23 @@
61
  Optional:
62
  </td>
63
  </tr>
64
- <?php if($this->form_data['send_customer_name']): ?>
65
  <tr>
66
  <td>
67
  CustomerName
68
  </td>
69
  <td>
70
- <input type="text" name="CustomerName" value="<?= $this->form_data['customer_name'] ?>"/>
71
  </td>
72
  </tr>
73
- <?php endif; ?>
74
 
75
- <?php if($this->form_data['send_customer_email']): ?>
76
  <tr>
77
  <td>
78
  CustomerEmail
79
  </td>
80
  <td>
81
- <input type="text" name="CustomerEmail" value="<?= $this->form_data['customer_email'] ?>"/>
82
  </td>
83
  </tr>
84
- <?php endif; ?>
85
 
86
  <?php if($this->form_data['send_country']): ?>
87
  <tr>
@@ -89,7 +85,7 @@
89
  Country
90
  </td>
91
  <td>
92
- <input type="text" name="Country" value="<?= $this->form_data['country'] ?>"/>
93
  </td>
94
  </tr>
95
  <?php endif; ?>
@@ -100,19 +96,18 @@
100
  MethodID
101
  </td>
102
  <td>
103
- <input type="text" name="MethodID" value="<?= $this->form_data['method_id'] ?>"/>
104
  </td>
105
  </tr>
106
  <?php endif; ?>
107
 
108
- <?php if($this->form_data['send_product_description']): ?>
109
  <?php if($this->form_data['product_description_ref']): ?>
110
  <tr>
111
  <td>
112
  Description
113
  </td>
114
  <td>
115
- <input type="text" name="Description" value="<?= "Ref. no.: ".$this->form_data['order_id'] ?>"/>
116
  </td>
117
  </tr>
118
  <?php else: ?>
@@ -121,10 +116,9 @@
121
  Description
122
  </td>
123
  <td>
124
- <input type="text" name="Description" value="<?= $this->form_data['product_description_custom'] ?>"/>
125
  </td>
126
  </tr>
127
- <?php endif; ?>
128
  <?php endif; ?>
129
 
130
  <?php if($this->form_data['skip_payment_page']): ?>
@@ -157,7 +151,7 @@
157
  SkinID
158
  </td>
159
  <td>
160
- <input type="text" name="SkinID" value="<?=$this->form_data['skin_id']?>"/>
161
  </td>
162
  </tr>
163
  <?php endif; ?>
@@ -167,7 +161,7 @@
167
  Hash
168
  </td>
169
  <td>
170
- <input type="text" name="Hash" value="<?= $this->form_data['hash'] ?>"/>
171
  </td>
172
  </tr>
173
  <tr>
@@ -244,4 +238,4 @@
244
  window.attachEvent('onmessage', onmessage);
245
  }
246
  });
247
- </script>
1
 
2
+ <div style="<?php echo ($this->form_data['debug_form']) ? "display: table;" : "display: none;" ?>">
3
 
4
  <?php if($this->form_data['debug_form']): ?>
5
+ <p><b>Message to hash</b>: <?php echo $this->message_to_hash?></p>
6
+ <p><b>Hash</b>: <?php echo $this->hash?></p>
7
  <?php endif; ?>
8
 
9
+ <form action="<?php echo $this->form_data['post_url'] ?>" id="s2pform" method="POST" <?php if($this->form_data['redirect_in_iframe']) echo 'target="merchantIframe"'; ?>>
10
  <table>
11
  <tr>
12
  <td>
13
  MerchantID
14
  </td>
15
  <td>
16
+ <input type="text" name="MerchantID" value="<?php echo $this->form_data['mid'] ?>"/>
17
  </td>
18
  </tr>
19
  <tr>
21
  MerchantTransactionID
22
  </td>
23
  <td>
24
+ <input type="text" name="MerchantTransactionID" value="<?php echo $this->form_data['order_id'] ?>"/>
25
  </td>
26
  </tr>
27
  <tr>
29
  Amount
30
  </td>
31
  <td>
32
+ <input type="text" name="Amount" value="<?php echo $this->form_data['amount'] ?>"/>
33
  </td>
34
  </tr>
35
  <tr>
37
  Currency
38
  </td>
39
  <td>
40
+ <input type="text" name="Currency" value="<?php echo $this->form_data['currency'] ?>"/>
41
  </td>
42
  </tr>
43
  <tr>
45
  ReturnURL
46
  </td>
47
  <td>
48
+ <input type="text" name="ReturnURL" value="<?php echo $this->form_data['return_url'] ?>"/>
49
  </td>
50
  </tr>
51
  <tr>
53
  IncludeMethodIDs
54
  </td>
55
  <td>
56
+ <input type="text" name="IncludeMethodIDs" value="<?php echo $this->form_data['methods'] ?>"/>
57
  </td>
58
  </tr>
59
  <tr>
61
  Optional:
62
  </td>
63
  </tr>
 
64
  <tr>
65
  <td>
66
  CustomerName
67
  </td>
68
  <td>
69
+ <input type="text" name="CustomerName" value="<?php echo $this->form_data['customer_name'] ?>"/>
70
  </td>
71
  </tr>
 
72
 
 
73
  <tr>
74
  <td>
75
  CustomerEmail
76
  </td>
77
  <td>
78
+ <input type="text" name="CustomerEmail" value="<?php echo $this->form_data['customer_email'] ?>"/>
79
  </td>
80
  </tr>
 
81
 
82
  <?php if($this->form_data['send_country']): ?>
83
  <tr>
85
  Country
86
  </td>
87
  <td>
88
+ <input type="text" name="Country" value="<?php echo $this->form_data['country'] ?>"/>
89
  </td>
90
  </tr>
91
  <?php endif; ?>
96
  MethodID
97
  </td>
98
  <td>
99
+ <input type="text" name="MethodID" value="<?php echo $this->form_data['method_id'] ?>"/>
100
  </td>
101
  </tr>
102
  <?php endif; ?>
103
 
 
104
  <?php if($this->form_data['product_description_ref']): ?>
105
  <tr>
106
  <td>
107
  Description
108
  </td>
109
  <td>
110
+ <input type="text" name="Description" value="<?php echo "Ref. no.: ".$this->form_data['order_id'] ?>"/>
111
  </td>
112
  </tr>
113
  <?php else: ?>
116
  Description
117
  </td>
118
  <td>
119
+ <input type="text" name="Description" value="<?php echo $this->form_data['product_description_custom'] ?>"/>
120
  </td>
121
  </tr>
 
122
  <?php endif; ?>
123
 
124
  <?php if($this->form_data['skip_payment_page']): ?>
151
  SkinID
152
  </td>
153
  <td>
154
+ <input type="text" name="SkinID" value="<?php echo $this->form_data['skin_id']?>"/>
155
  </td>
156
  </tr>
157
  <?php endif; ?>
161
  Hash
162
  </td>
163
  <td>
164
+ <input type="text" name="Hash" value="<?php echo $this->form_data['hash'] ?>"/>
165
  </td>
166
  </tr>
167
  <tr>
238
  window.attachEvent('onmessage', onmessage);
239
  }
240
  });
241
+ </script>
app/locale/en_GB/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Please choose one of the following payment methods."
2
+ "If you choose to simply continue, default method will be", "If you simply choose continue, the default payment method will be"
3
+ "Bank Transfer","Bank Transfer"
4
+ "iDEAL","iDEAL"
5
+ "MrCash","MrCash"
6
+ "Giropay","Giropay"
7
+ "EPS","EPS"
8
+ "UseMyFunds","UseMyFunds"
9
+ "DirectEbanking","DirectEbanking"
10
+ "Przelewy24","Przelewy24"
11
+ "OneCard","OneCard"
12
+ "CashU","CashU"
13
+ "POLi","POLi"
14
+ "DineroMail","DineroMail"
15
+ "Multibanco SIBS","Multibanco SIBS"
16
+ "Moneta Wallet","Moneta Wallet"
17
+ "WebToPay","WebToPay"
18
+ "Alipay","Alipay"
19
+ "Abaqoos","Abaqoos"
20
+ "eBanka","eBanka"
21
+ "Ukash","Ukash"
22
+ "GluePay","GluePay"
23
+ "Debito Banco do Brasil","Debito Banco do Brasil"
24
+ "CuentaDigital","CuentaDigital"
25
+ "CardsBrazil","CardsBrazil"
26
+ "PaysBuy","PaysBuy"
27
+ "Mazooma","Mazooma"
28
+ "eNETS Debit","eNETS Debit"
29
+ "Paysafecard","Paysafecard"
30
+ "PayPal","PayPal"
31
+ "PagTotal","PagTotal"
32
+ "Payeasy","Payeasy"
33
+ "MercadoPago","MercadoPago"
34
+ "Mozca","Mozca"
35
+ "Gash","Gash"
36
+ "ToditoCash","ToditoCash"
37
+ "SecureVaultPayments","SecureVaultPayments"
38
+ "Boleto","Boleto"
39
+ "Debito","Debito"
40
+ "Transferencia","Transferencia"
41
+ "QIWI Wallet","QIWI Wallet"
42
+ "Beeline","Beeline"
43
+ "Megafon","Megafon"
44
+ "MTS","MTS"
45
+ "WebMoney","WebMoney"
46
+ "Yandex","Yandex"
47
+ "Alliance Online","Alliance Online"
48
+ "AmBank","AmBank"
49
+ "CIMB Clicks","CIMB Clicks"
50
+ "FPX","FPX"
51
+ "Hong Leong Bank Transfer","Hong Leong Bank Transfer"
52
+ "Maybank2U","Maybank2U"
53
+ "Meps Cash","Meps Cash"
54
+ "Mobile Money","Mobile Money"
55
+ "RHB","RHB"
56
+ "Webcash","Webcash"
57
+ "Credit Cards Colombia","Credit Cards Colombia"
58
+ "PSE","PSE"
59
+ "ACH Debit","ACH Debit"
60
+ "Via Baloto","Via Baloto"
61
+ "Referenced Payment","Referenced Payment"
62
+ "Mandiri","Mandiri"
63
+ "XLTunai", "XLTunai"
64
+ "Bancomer Pago referenciado", "Bancomer Pago referenciado"
65
+ "Santander Pago referenciado", "Santander Pago referenciado"
66
+ "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
67
+ "7-Eleven Pago en efectivo", "7-Eleven Pago en efectivo"
68
+ "Oxxo Pago en efectivo", "Oxxo Pago en efectivo"
69
+ "IXE Pago referenciado", "IXE Pago referenciado"
70
+ "Boleto Itau", "Boleto Itaú"
71
+ "Cards Thailand", "Cards Thailand"
72
+ "PayPalThailand", "PayPal Thailand"
73
+ "AMEXThailand", "AMEX Thailand"
74
+ "Cash Options Thailand", "Cash Options Thailand"
75
+ "OnlineBankingThailand", "Online Banking Thailand"
76
+ "PaysBuy Wallet", "PaysBuy Wallet"
77
+ "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
+ "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
+ "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
+ "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
+ "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
+ "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
+ "DirectEbanking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
+ "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
+ "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
+ "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
87
+ "POLi description","POLi is an online payment service that enables you to safely pay directly from your own internet banking. In order to pay with POLi you will have to select your bank and download the POLi application."
88
+ "DineroMail description","DineroMail is a major electronic payment system on the Latin American market that offers all of the most popular payment methods available in Argentina, Brazil, Chile, Colombia and Mexico. If you do not have a DineroMail account click <a href=""http://www.dineromail.com/"" target=""_blank"">here</a> to register."
89
+ "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
90
+ "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
+ "WebToPay description","WebToPay is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a WebToPay account. If you do not have a WebToPay account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
+ "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
+ "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
+ "eBanka description","eBanka (eKonto) is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don"
95
+ "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
96
+ "GluePay description","Instant Bank (former GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
+ "Debito Banco do Brasil description","Debito Banco do Brasil allows you to pay online with your bank account - fast, easy and secure. You need to have a bank account with internet banking at Banco do Brasil."
98
+ "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
+ "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
100
+ "PaysBuy description","PaysBuy allows you to pay with the flexibility using PaysBuy account balances (click <a href=""https://www.paysbuy.com/register.aspx"" target=""_blank"">here</a> to create your PaysBuy account if do not have one already), or directly via internet banking, credit cards or cash. "
101
+ "Mazooma description","Mazooma is an innovative payment solution provider for online commerce. Mazooma lets you pay from your own bank account by connecting you directly to your online bank account for a safe, simple and easy checkout."
102
+ "eNETS Debit description","eNETS Debit is an Internet-based payment method that enables you to pay from your bank account using your Internet Banking PIN and ID. "
103
+ "Paysafecard description","Paysafecard voucher is a prepaid voucher you can use to pay- there are no extra fees. So, if you want to purchase using Paysafecard voucher you simply visit your <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">nearest store</a>. Then you simply type in the 16 digit voucher code and that"
104
+ "PayPal description","PayPal is the world's largest online payment network, serving over 230 million members in 190 countries and regions. With PayPal you can pay using your credit card or checking account. If you do not have a PayPal account click <a href=""https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=POF0zpshlSyFe4t6PMraBTKqVa0vfnf5zlWQViMb3horYjAo21mGHfjsmmO&dispatch=5885d80a13c0db1f8e263663d3faee8d7283e7f0184a5674430f290db9e9c846"" target=""_blank"">here</a> to register."
105
+ "PagTotal description","PagTotal is a payment method in Brazil, reinforced by mobile phone security. The main benefit in using PagTotal is that it enables you to pay and confirm the payment anywhere you want, just through a simple SMS. If you do not have a Pagtotal account click <a href=""https://www.pagtotal.com.br/index.php?op=3"" target=""_blank"">here</a> to register."
106
+ "Payeasy description","PayEasy provides a secure, unified interface to all of the popular payment options. Via PayEasy you can pay using major credit cards, ATM debit cards, mobile payments, over-the-counter-cash (Dragonpay), online banking payments and direct bank transfers."
107
+ "MercadoPago description","MercadoPago is the biggest Internet Wallet in Latin America allowing you to pay via the most popular methods of payment. To pay with MercadoPago you need to have a MercadoPago account. If you do not have a MercadoPago account click <a href=""https://www.mercadopago.com/mlb/cadastro/register"" target=""_blank"">here</a> to register. "
108
+ "Mozca description","To pay with Mozca is very simple: you just use your mobile phone number and a 4-digit password to confirm that your mobile phone really belongs to you and is in your hands. A PIN Code MOZCA will be sent to you via SMS as a confirmation of your payment."
109
+ "Gash description","Gash voucher is a prepaid voucher you can use to pay- there are no extra fees. So, if you want to purchase using GASH voucher you simply visit your <a href=""http://www.gashplus.com/gashstore/GashStore.aspx"" target=""_blank"">nearest store</a>. Then you simply type in the 14/20/21 digit voucher code and that"
110
+ "ToditoCash description","Todito Cash is a rechargeable prepaid card that you can use to pay and you can recharge just like you do with your mobile phone in over 20,000 outlets including convenience <a href=""https://www.toditocash.com/html/puntosdeventa.php"" target=""_blank"">stores and banks</a>.If you do not have a ToditoCash account click <a href=""https://www.toditocash.com/php/crearCuenta.php"" target=""_blank"">here</a> to register."
111
+ "SecureVaultPayments description","SecureVaultPayments allows you to pay using your internet banking. You choose your bank and all the other payment details you will enter at your own bank."
112
+ "Boleto description","Boleto Bancario is one of the most used payment options in Brazil. To pay with Boleto Bancario you print the Boleto and can go to a physical bank branch in your area and pay with cash, use online banking, or simply go to an ATM machine."
113
+ "Debito description","Debito Bradesco is a real time bank transfer payment option available for Bradesco Bank Customers in Brazil. You simply need to enter your Banco Bradesco debit card number and confirm the payment with a PIN number."
114
+ "Transferencia description","Transferencia Entre Contas is a real-time bank transfer method allowing you to pay. To use this payment method you need a bank account at Bradesco with internet banking."
115
+ "QIWI Wallet description","QIWI is a major electronic payment system on the Russian market that offers all of the popular payment methods through Qiwi Wallet or directly. You can pay with QIWI Wallet from the balance of your QIWI account, or pay directly with debit or credit card, or using cash at a QIWI kiosk. "
116
+ "Beeline description","This option is available if your phone number belongs to Beeline mobile operator. Beeline approves or declines your payment request depending on the amount of your phone balance."
117
+ "Megafon description","This option is available if your phone number belongs to Megafon mobile operator. Megafon approves or declines your payment request depending on the amount of your phone balance."
118
+ "MTS description","This option is available if your phone number belongs to MTC mobile operator. MTC approves or declines your payment request depending on the amount of your phone balance."
119
+ "WebMoney description","WebMoney Transfer is a payment system offering most popular payment methods direct and through the WebMoney Wallet. To be able to pay with WebMoney you need to register first (click <a href=""http://start.webmoney.ru/?lang=en"" target=""_blank"">here</a>) if you are not yet registered."
120
+ "Yandex description","Yandex.Money is the leading online payment system in Russia that offers most of the popular payment methods direct and through Yandex.Money eWallet. To pay with Yandex.Money eWallet you only need a web browser and can pay using - cash, bank account or credit card."
121
+ "Alliance Online description","Alliance Online is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Alliance Online Bank."
122
+ "AmBank description","AmBank is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at AmBank."
123
+ "CIMB Clicks description","CIMB Clicks (formerly known as Channel-e) is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at CIMB Bank."
124
+ "FPX description","FPX is an online payment method that allows you to pay in real time via internet banking. You just need to choose your own bank and enter on the bank"
125
+ "Hong Leong Bank Transfer description","Hong Leong Bank Transfer is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Hong Leong Bank."
126
+ "Maybank2U description","Maybank2U is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Maybank2U."
127
+ "Meps Cash description","MEPSCASH is electronic money (e-money) provided via MEPS. You need to first top MEPSCASH into the ATM card or MyKad (similar to TouchnGo). When you pay, the MEPSCASH amount is deducted from the card itself."
128
+ "Mobile Money description","Mobile Money allows you to pay via your mobile phone and is under the supervision of Central Bank of Malaysia. To start using Mobile Money you need to register first (click <a href=""https://mmweb.mobile-money.com/UserReg/index.aspx"" target=""_blank"">here</a>) if you are not yet registered."
129
+ "RHB description","RHB is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at RHB Bank."
130
+ "Webcash description","WEBCASH is a Prepaid Payment System you can use to pay. You determine the amount of the cash value you want to top-up into your Webcash account. If you do not have a Webcash account register <a href=""https://webcash.com.my/postregistration.php?chk=0"" target=""_blank"">here</a>."
131
+ "Credit Cards Colombia description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners."
132
+ "PSE description","(Acronym in Spanish) Electronic Services Supplier; it is an ACH Colombia SA service where you are redirected to your selected bank website and then you need to introduce your user, password and account number."
133
+ "ACH Debit description","ACH debit is a payment method that allows the Merchant to collect funds from your bank account using your bank routing number and your account number. You are the only one who can give authorization for an ACH debit to occur, at which time the authorized amount is deducted from your account."
134
+ "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
135
+ "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
136
+ "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
137
+ "XLTunai description", "XL Tunai is an online payment method that allows you to transform your phone into a digital wallet. To use this payment method you need to register your phone number at XL centers or agents. You will receive a PIN in order to authorize the payments."
138
+ "Bancomer Pago referenciado description", "To pay with Bancomer - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
139
+ "Santander Pago referenciado description", "To pay with Santantder - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
140
+ "ScotiaBank Pago referenciado description", "To pay with Scotiabank - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
141
+ "7-Eleven Pago en efectivo description", "Print and present this voucher at any 7-ELEVEN store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
142
+ "Oxxo Pago en efectivo description", "Print and present this voucher at any Oxxo store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
143
+ "IXE Pago referenciado description", "To pay with IXE - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
144
+ "Boleto Itau description", "To pay with Boleto Itaú you need to print the Boleto and go to a physical bank branch in your area and pay with cash, online banking, or simply go to an ATM machine."
145
+ "Cards Thailand description", "Cards Thailand"
146
+ "PayPalThailand description", "PayPal Thailand"
147
+ "AMEXThailand description", "AMEX Thailand"
148
+ "Cash Options Thailand description", "Cash Options Thailand"
149
+ "OnlineBankingThailand description", "Online Banking Thailand"
150
+ "PaysBuy Wallet description", "PaysBuy Wallet"
app/locale/en_GB/template/email/smart2pay/globalpay/payment_confirmation.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <title>{{var site_url}} : Order # {{var order_increment_id}} - payment confirmation</title>
4
+ <style type='text/css'>
5
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
6
+ </style>
7
+ </head>
8
+ <body style='background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px;'>
9
+ <table style='width:600; background: #fff; min-height: 300px; margin: 0px auto; padding: 10px; border:1px solid #E0E0E0;'>
10
+ <tr>
11
+ <td>
12
+ <a href='{{var site_url}}'>{{var site_name}}</a>
13
+ <h1 style='font-size:22px; font-weight:normal; line-height:22px;'>Hello, {{var customer_name}}!</h1>
14
+ <p>This is the payment confirmation of order # {{var order_increment_id}}, placed on {{var order_date}}, using Smart2Pay processor.</p>
15
+ <h2 style='font-size:18px; font-weight:normal; line-height:22px;'>Total paid: {{var total_paid}} {{var currency}}</h2>
16
+ <br />
17
+ <p>Thank you!</p>
18
+ <br />
19
+ <p>If you have any questions about your order please contact us at <a href='mailto:{{var support_email}}'>{{var support_email}}</a></p>
20
+ </td>
21
+ </td>
22
+ </table>
23
+ </body>
24
+ </html>
app/locale/en_US/Smart2Pay_Globalpay.csv CHANGED
@@ -60,6 +60,20 @@
60
  "Via Baloto","Via Baloto"
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
64
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
65
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
@@ -120,3 +134,17 @@
120
  "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
121
  "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
122
  "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  "Via Baloto","Via Baloto"
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
63
+ "XLTunai", "XLTunai"
64
+ "Bancomer Pago referenciado", "Bancomer Pago referenciado"
65
+ "Santander Pago referenciado", "Santander Pago referenciado"
66
+ "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
67
+ "7-Eleven Pago en efectivo", "7-Eleven Pago en efectivo"
68
+ "Oxxo Pago en efectivo", "Oxxo Pago en efectivo"
69
+ "IXE Pago referenciado", "IXE Pago referenciado"
70
+ "Boleto Itau", "Boleto Itaú"
71
+ "Cards Thailand", "Cards Thailand"
72
+ "PayPalThailand", "PayPal Thailand"
73
+ "AMEXThailand", "AMEX Thailand"
74
+ "Cash Options Thailand", "Cash Options Thailand"
75
+ "OnlineBankingThailand", "Online Banking Thailand"
76
+ "PaysBuy Wallet", "PaysBuy Wallet"
77
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
134
  "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
135
  "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
136
  "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
137
+ "XLTunai description", "XL Tunai is an online payment method that allows you to transform your phone into a digital wallet. To use this payment method you need to register your phone number at XL centers or agents. You will receive a PIN in order to authorize the payments."
138
+ "Bancomer Pago referenciado description", "To pay with Bancomer - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
139
+ "Santander Pago referenciado description", "To pay with Santantder - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
140
+ "ScotiaBank Pago referenciado description", "To pay with Scotiabank - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
141
+ "7-Eleven Pago en efectivo description", "Print and present this voucher at any 7-ELEVEN store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
142
+ "Oxxo Pago en efectivo description", "Print and present this voucher at any Oxxo store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
143
+ "IXE Pago referenciado description", "To pay with IXE - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
144
+ "Boleto Itau description", "To pay with Boleto Itaú you need to print the Boleto and go to a physical bank branch in your area and pay with cash, online banking, or simply go to an ATM machine."
145
+ "Cards Thailand description", "Cards Thailand"
146
+ "PayPalThailand description", "PayPal Thailand"
147
+ "AMEXThailand description", "AMEX Thailand"
148
+ "Cash Options Thailand description", "Cash Options Thailand"
149
+ "OnlineBankingThailand description", "Online Banking Thailand"
150
+ "PaysBuy Wallet description", "PaysBuy Wallet"
app/locale/es_AR/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
+ "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
+ "ToditoCash","ToditoCash"
4
+ "Bancomer Pago referenciado","Bancomer Pago referenciado"
5
+ "Santander Pago referenciado","Santander Pago referenciado"
6
+ "ScotiaBank Pago referenciado","ScotiaBank Pago referenciado"
7
+ "7-Eleven Pago en efectivo","7-Eleven Pago en efectivo"
8
+ "Oxxo Pago en efectivo","Oxxo Pago en efectivo"
9
+ "IXE Pago referenciado","IXE Pago referenciado"
10
+ "DineroMail","DineroMail"
11
+ "Ukash","Ukash"
12
+ "Paysafecard","Paysafecard"
13
+ "Credit Cards Colombia","Credit Cards Colombia"
14
+ "PSE","PSE"
15
+ "ACH Debit","ACH Debit"
16
+ "Via Baloto","Via Baloto"
17
+ "Referenced Payment","Referenced Payment"
18
+ "Mozca","Mozca"
19
+ "CuentaDigital","CuentaDigital"
20
+ "GluePay","GluePay"
21
+ "Bank Transfer","Bank Transfer"
22
+ "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
+ "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
+ "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
+ "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
+ "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
+ "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
+ "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
+ "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
+ "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
+ "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
+ "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
+ "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
+ "Alternative payment methods","Métodos de pago alternativos"
44
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
+ "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
+ "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_CL/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
+ "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
+ "ToditoCash","ToditoCash"
4
+ "Bancomer Pago referenciado","Bancomer Pago referenciado"
5
+ "Santander Pago referenciado","Santander Pago referenciado"
6
+ "ScotiaBank Pago referenciado","ScotiaBank Pago referenciado"
7
+ "7-Eleven Pago en efectivo","7-Eleven Pago en efectivo"
8
+ "Oxxo Pago en efectivo","Oxxo Pago en efectivo"
9
+ "IXE Pago referenciado","IXE Pago referenciado"
10
+ "DineroMail","DineroMail"
11
+ "Ukash","Ukash"
12
+ "Paysafecard","Paysafecard"
13
+ "Credit Cards Colombia","Credit Cards Colombia"
14
+ "PSE","PSE"
15
+ "ACH Debit","ACH Debit"
16
+ "Via Baloto","Via Baloto"
17
+ "Referenced Payment","Referenced Payment"
18
+ "Mozca","Mozca"
19
+ "CuentaDigital","CuentaDigital"
20
+ "GluePay","GluePay"
21
+ "Bank Transfer","Bank Transfer"
22
+ "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
+ "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
+ "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
+ "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
+ "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
+ "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
+ "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
+ "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
+ "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
+ "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
+ "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
+ "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
+ "Alternative payment methods","Métodos de pago alternativos"
44
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
+ "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
+ "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_CO/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
+ "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
+ "ToditoCash","ToditoCash"
4
+ "Bancomer Pago referenciado","Bancomer Pago referenciado"
5
+ "Santander Pago referenciado","Santander Pago referenciado"
6
+ "ScotiaBank Pago referenciado","ScotiaBank Pago referenciado"
7
+ "7-Eleven Pago en efectivo","7-Eleven Pago en efectivo"
8
+ "Oxxo Pago en efectivo","Oxxo Pago en efectivo"
9
+ "IXE Pago referenciado","IXE Pago referenciado"
10
+ "DineroMail","DineroMail"
11
+ "Ukash","Ukash"
12
+ "Paysafecard","Paysafecard"
13
+ "Credit Cards Colombia","Credit Cards Colombia"
14
+ "PSE","PSE"
15
+ "ACH Debit","ACH Debit"
16
+ "Via Baloto","Via Baloto"
17
+ "Referenced Payment","Referenced Payment"
18
+ "Mozca","Mozca"
19
+ "CuentaDigital","CuentaDigital"
20
+ "GluePay","GluePay"
21
+ "Bank Transfer","Bank Transfer"
22
+ "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
+ "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
+ "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
+ "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
+ "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
+ "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
+ "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
+ "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
+ "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
+ "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
+ "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
+ "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
+ "Alternative payment methods","Métodos de pago alternativos"
44
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
+ "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
+ "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_ES/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
+ "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
+ "ToditoCash","ToditoCash"
4
+ "Bancomer Pago referenciado","Bancomer Pago referenciado"
5
+ "Santander Pago referenciado","Santander Pago referenciado"
6
+ "ScotiaBank Pago referenciado","ScotiaBank Pago referenciado"
7
+ "7-Eleven Pago en efectivo","7-Eleven Pago en efectivo"
8
+ "Oxxo Pago en efectivo","Oxxo Pago en efectivo"
9
+ "IXE Pago referenciado","IXE Pago referenciado"
10
+ "DineroMail","DineroMail"
11
+ "Ukash","Ukash"
12
+ "Paysafecard","Paysafecard"
13
+ "Credit Cards Colombia","Credit Cards Colombia"
14
+ "PSE","PSE"
15
+ "ACH Debit","ACH Debit"
16
+ "Via Baloto","Via Baloto"
17
+ "Referenced Payment","Referenced Payment"
18
+ "Mozca","Mozca"
19
+ "CuentaDigital","CuentaDigital"
20
+ "GluePay","GluePay"
21
+ "Bank Transfer","Bank Transfer"
22
+ "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
+ "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
+ "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
+ "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
+ "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
+ "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
+ "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
+ "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
+ "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
+ "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
+ "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
+ "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
+ "Alternative payment methods ","Métodos de pago alternativos"
44
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
+ "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
+ "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_MX/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
+ "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
+ "ToditoCash","ToditoCash"
4
+ "Bancomer Pago referenciado","Bancomer Pago referenciado"
5
+ "Santander Pago referenciado","Santander Pago referenciado"
6
+ "ScotiaBank Pago referenciado","ScotiaBank Pago referenciado"
7
+ "7-Eleven Pago en efectivo","7-Eleven Pago en efectivo"
8
+ "Oxxo Pago en efectivo","Oxxo Pago en efectivo"
9
+ "IXE Pago referenciado","IXE Pago referenciado"
10
+ "DineroMail","DineroMail"
11
+ "Ukash","Ukash"
12
+ "Paysafecard","Paysafecard"
13
+ "Credit Cards Colombia","Credit Cards Colombia"
14
+ "PSE","PSE"
15
+ "ACH Debit","ACH Debit"
16
+ "Via Baloto","Via Baloto"
17
+ "Referenced Payment","Referenced Payment"
18
+ "Mozca","Mozca"
19
+ "CuentaDigital","CuentaDigital"
20
+ "GluePay","GluePay"
21
+ "Bank Transfer","Bank Transfer"
22
+ "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
+ "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
+ "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
+ "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
+ "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
+ "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
+ "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
+ "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
+ "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
+ "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
+ "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
+ "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
44
+ "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
45
+ "You have canceled the payment.","Ha cancelado el pago."
46
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/it_IT/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Si prega di scegliere uno dei seguenti metodi di pagamento."
2
+ "If you choose to simply continue, default method will be", "Se si sceglie di continuare semplicemente, metodo di default sarà"
3
+ "Bank Transfer","Bank Transfer"
4
+ "CashU","CashU"
5
+ "Ukash","Ukash"
6
+ "Paysafecard","Paysafecard"
7
+ "Bank Transfer description","Il bonifico bancario Le offre la possibilità di pagare localmente dal Suo conto bancario. Riceverà un numero di riferimento e il numero del conto bancario per poter effettuare il pagamento."
8
+ "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
9
+ "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
10
+ "Paysafecard description","Paysafecard voucher is a prepaid voucher you can use to pay- there are no extra fees. So, if you want to purchase using Paysafecard voucher you simply visit your <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">nearest store</a>. Then you simply type in the 16 digit voucher code and that's it - the payment is done."
11
+ "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Grazie, la transazione è stata elaborata con successo. Dopo aver ricevuto la conferma definitiva, si rendono disponibili i beni."
12
+ "There was a problem processing your payment. Please try again.","C'è stato un problema durante l'elaborazione del vostro pagamento. Riprova."
13
+ "You have canceled the payment.","Hai annullato il pagamento."
14
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Grazie, la transazione è attesa. Dopo aver ricevuto la conferma definitiva, si rendono disponibili i beni."
app/locale/pt_BR/Smart2Pay_Globalpay.csv CHANGED
@@ -60,6 +60,20 @@
60
  "Via Baloto","Via Baloto"
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
64
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
65
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
@@ -120,3 +134,17 @@
120
  "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
121
  "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
122
  "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  "Via Baloto","Via Baloto"
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
63
+ "XLTunai", "XLTunai"
64
+ "Bancomer Pago referenciado", "Bancomer Pago referenciado"
65
+ "Santander Pago referenciado", "Santander Pago referenciado"
66
+ "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
67
+ "7-Eleven Pago en efectivo", "7-Eleven Pago en efectivo"
68
+ "Oxxo Pago en efectivo", "Oxxo Pago en efectivo"
69
+ "IXE Pago referenciado", "IXE Pago referenciado"
70
+ "Boleto Itau", "Boleto Itaú"
71
+ "Cards Thailand", "Cards Thailand"
72
+ "PayPalThailand", "PayPal Thailand"
73
+ "AMEXThailand", "AMEX Thailand"
74
+ "Cash Options Thailand", "Cash Options Thailand"
75
+ "OnlineBankingThailand", "Online Banking Thailand"
76
+ "PaysBuy Wallet", "PaysBuy Wallet"
77
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
134
  "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
135
  "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
136
  "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
137
+ "XLTunai description", "XL Tunai is an online payment method that allows you to transform your phone into a digital wallet. To use this payment method you need to register your phone number at XL centers or agents. You will receive a PIN in order to authorize the payments."
138
+ "Bancomer Pago referenciado description", "To pay with Bancomer - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
139
+ "Santander Pago referenciado description", "To pay with Santantder - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
140
+ "ScotiaBank Pago referenciado description", "To pay with Scotiabank - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
141
+ "7-Eleven Pago en efectivo description", "Print and present this voucher at any 7-ELEVEN store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
142
+ "Oxxo Pago en efectivo description", "Print and present this voucher at any Oxxo store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
143
+ "IXE Pago referenciado description", "To pay with IXE - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
144
+ "Boleto Itau description", "To pay with Boleto Itaú you need to print the Boleto and go to a physical bank branch in your area and pay with cash, online banking, or simply go to an ATM machine."
145
+ "Cards Thailand description", "Cards Thailand"
146
+ "PayPalThailand description", "PayPal Thailand"
147
+ "AMEXThailand description", "AMEX Thailand"
148
+ "Cash Options Thailand description", "Cash Options Thailand"
149
+ "OnlineBankingThailand description", "Online Banking Thailand"
150
+ "PaysBuy Wallet description", "PaysBuy Wallet"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Smart2Pay</name>
4
- <version>1.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">The Open Software License 3.0 (OSL-3.0)</license>
7
  <channel>community</channel>
@@ -40,15 +40,18 @@
40
  &lt;li&gt;Paysafecard&lt;/li&gt;&#xD;
41
  &lt;li&gt;PagTotal&lt;/li&gt;&#xD;
42
  &lt;li&gt;Payeasy&lt;/li&gt;&#xD;
 
43
  &lt;li&gt;MercadoPago&lt;/li&gt;&#xD;
44
  &lt;li&gt;Mozca&lt;/li&gt;&#xD;
45
  &lt;li&gt;Gash&lt;/li&gt;&#xD;
46
  &lt;li&gt;ToditoCash&lt;/li&gt;&#xD;
47
  &lt;li&gt;Pay with my bank&lt;/li&gt;&#xD;
 
 
 
48
  &lt;li&gt;Boleto&lt;/li&gt;&#xD;
49
  &lt;li&gt;Debito Bradesco&lt;/li&gt;&#xD;
50
- &lt;li&gt;Transferencia Bradesco&lt;/li&gt;&#xD;
51
- &lt;li&gt;QIWI Wallet&lt;/li&gt;&#xD;
52
  &lt;li&gt;Beeline&lt;/li&gt;&#xD;
53
  &lt;li&gt;Megafon&lt;/li&gt;&#xD;
54
  &lt;li&gt;MTS&lt;/li&gt;&#xD;
@@ -69,17 +72,33 @@
69
  &lt;li&gt;ACH Debit&lt;/li&gt;&#xD;
70
  &lt;li&gt;Via Baloto&lt;/li&gt;&#xD;
71
  &lt;li&gt;Referenced Payment&lt;/li&gt;&#xD;
72
- &lt;li&gt;Mandiri&lt;/li&gt;&#xD;
 
 
 
 
 
 
 
 
 
 
 
 
73
  &lt;/ul&gt;&#xD;
74
  &#xD;
75
  &lt;p&gt;Let us handle your payments on the web; increase your Sales and Customer satisfaction, join Smart2Pay, the smart way to pay on the web.&lt;/p&gt;&#xD;
76
  &#xD;
77
  &lt;p&gt;Please register online on https://dashboardtest.smart2pay.com/Account/Register or e-mail support@smart2pay.com for instructions on account activation and detailed documentation.&lt;/p&gt;</description>
78
- <notes>Fixed problem with redirect when mod_rewrite is disabled.</notes>
 
 
 
 
79
  <authors><author><name>Stefan Iancu</name><user>stefani</user><email>stefan@smart2pay.com</email></author></authors>
80
- <date>2013-07-29</date>
81
- <time>16:12:25</time>
82
- <contents><target name="magecommunity"><dir name="Smart2Pay"><dir name="Globalpay"><dir name="Block"><file name="Info.php" hash="7ba152ab49b0dc36cc9af68d4877a649"/><dir name="Paymethod"><file name="Form.php" hash="b1482f3ec22b1a2a20117d8847451ec1"/><file name="Sendform.php" hash="50167cb04edf408aa881cdf32d704e4b"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bb23054b861b1468c0a70e2ce5acdb8d"/><file name="Helper.php" hash="a549c535e360a93958c6ca941f80b129"/></dir><dir name="Model"><file name="Country.php" hash="4b433925bed9f5d47d64497432e75a34"/><file name="Countrymethod.php" hash="2aa968c593058fd86b2c8d0550f3e286"/><file name="GlobalpayLog.php" hash="f68fd78b1020729985c405d539cb94d4"/><file name="Logger.php" hash="6268d6a7829e481187b0d998be88bab0"/><file name="Method.php" hash="99a1ed249df5d21e978406f2aee202d7"/><file name="Pay.php" hash="0a126ce946bb38475450705eaaba471a"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ad5ae7ebc94b095bb7264bdf8a8384db"/></dir><file name="Country.php" hash="48d23e3ab4a5c2788839433080179c65"/><dir name="Countrymethod"><file name="Collection.php" hash="31e944d1e66e1da9d3d3779c9cc318d3"/></dir><file name="Countrymethod.php" hash="95db4406bede177910938746e660360f"/><dir name="Logger"><file name="Collection.php" hash="f4db3e9e19df5570603cdddc843017ea"/></dir><file name="Logger.php" hash="ef953126a8793499b676a0aea7070fda"/><dir name="Method"><file name="Collection.php" hash="52091137c467ca6e4ef07e15505e41cd"/></dir><file name="Method.php" hash="ab86d14385f2330a81e13ac0d931fb89"/><file name="Setup.php" hash="6cad02bba0656dab9a7a7a85489f92c3"/></dir><dir name="Source"><file name="Displaymodes.php" hash="d58bea7ddb68a9ae8cd32aa1b175ce5f"/><file name="Methods.php" hash="00c268b45390e7dc505f3bf08699e65d"/><file name="Testlive.php" hash="c9cde641fdc6d7e853de3b6af3fa1d90"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="dc46886339c449cd7a35051f4d0a51c3"/><file name="TestsController.php" hash="491989d17c884c304866caa317ba4b03"/></dir><dir name="etc"><file name="config.xml" hash="0bd9d7d15d2049d1fe722fde843f29bb"/><file name="system.xml" hash="f90ab9d1a7251b5a8c6ed7a17ba8453d"/></dir><dir name="sql"><dir name="globalpay_setup"><file name="mysql4-install-0.1.0.php" hash="a9028322416d7a057b933e5ff7461b7e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="globalpay.xml" hash="d5f5abd3bbf9b9184cd18304acdac867"/></dir><dir name="template"><dir name="smart2pay"><dir name="globalpay"><file name="info.phtml" hash="27dd1e9f9fc5390ad74f45573ac51dea"/><dir name="paymethod"><file name="form.phtml" hash="0121fb12d5270242933707c0d001bc7a"/><file name="sendform.phtml" hash="b2b5c2863c42203ad576041abb08fec0"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smart2Pay_Globalpay.xml" hash="1f3951214d78df89b34a781bd683699c"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="806d64bbabd8af1221f20fc948003e8b"/></dir><dir name="pt_BR"><file name="Smart2Pay_Globalpay.csv" hash="19bed49a5bc1b4eeff8c849157e1ce5f"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="smart2pay"><dir name="methods"><file name="ABN-AMRO.jpg" hash="82dd9741d9ce8f1c0706a9a29c775faa"/><file name="FPX.gif" hash="34cc5462d208c69dd7cec27024bd1f8a"/><file name="FPX_grey.gif" hash="f56883b1becf81c26a160d8022de9e58"/><file name="Frieslandbank.jpg" hash="25c44572f3d202a37e3801d78f8b9385"/><file name="RBS.jpg" hash="b11037004617f3a5f5afec6ed37953e8"/><file name="abaqoos.gif" hash="9ecff0690953339133a8123c360e0441"/><file name="abaqoos_grey.gif" hash="080802fd1a5b90238ff1d206a15036f5"/><file name="ach.gif" hash="51b669a1d1ca0ff736166d27bf027213"/><file name="ach_grey.gif" hash="b876306dd72ae61c40c34f8b3aee7521"/><file name="alipay.jpg" hash="97430660b667441dc0a5d6611ccef494"/><file name="alipay_grey.jpg" hash="46d76de83013eec2856479e36cdf6dae"/><file name="alliance_online.gif" hash="321be117b6327f455cb3e8d31461fed9"/><file name="alliance_online_grey.gif" hash="e6f9d3180442f9fa432dc9ae0806ed09"/><file name="ambankgroup.gif" hash="f7f6e54e102819c15ad8c6ee37756dec"/><file name="ambankgroup_grey.gif" hash="c2a1ad7a5515fc857c043eaa0bba3955"/><file name="american_express.jpg" hash="84cf63cad26fcb5dbec431e7173731c7"/><file name="american_express_grey.jpg" hash="79bde788bfc298de8e9ea999e3a67754"/><file name="arztebank.jpg" hash="920e6d907af58292790e95ce5cc46905"/><file name="arztebank_grey.jpg" hash="ef1fb04251d1bebb0f9416e0764355a1"/><file name="asn_bank_logo.jpg" hash="ce53a6afff0590f26080ab71b7eddbd9"/><file name="banco_do_brasil.jpg" hash="4d97f3ee9a5ddfe75b52e42efac1b0a6"/><file name="banco_do_brasil_grey.jpg" hash="bd8f1252c31cbd7f4d28fe464ffd931b"/><file name="bank_austria.jpg" hash="a1bbf3da1eaa934e649a25beb56ca723"/><file name="bank_austria_grey.jpg" hash="a076595d919a5d83ca84cda845b40eca"/><file name="bank_burgeland.jpg" hash="c2425d58078fc8409d252667e712678a"/><file name="bank_burgeland_grey.jpg" hash="a1e08848c1ae3cb3ed891619325039a6"/><file name="bank_transfer_logo_v2.png" hash="513ff9d754da83a8b88da278954573ff"/><file name="bank_transfer_logo_v3.png" hash="a07da37a5832723883907a6d97aa011f"/><file name="bank_transfer_logo_v4.png" hash="1450f028cebd6dfc9ae2e36bbabc4fa6"/><file name="bank_transfer_logo_v5.gif" hash="4c76e68b7b0bab515876738b2f8e5539"/><file name="bank_transfer_logo_v5_grey.gif" hash="acb5862cf5636d94b5639e01069b58da"/><file name="bawag.jpg" hash="fa7cbc4ed038912ccaff7a93bd12978e"/><file name="bawag_grey.jpg" hash="7fd2c562481207a397e2a57f02dd8f81"/><file name="beeline.gif" hash="ccf64a91497758ccfa09e901cfa3f8f9"/><file name="beeline_grey.gif" hash="50e464db96cc2cde3c3ab3b8ac4e5b50"/><file name="boleto.jpg" hash="c79ebd618a7846334551af31eb4d9210"/><file name="boleto_grey.jpg" hash="d8b8af5824b75978718f4c4afcc344ac"/><file name="bradesco.jpg" hash="9d36af7f1e683bad48cdfbd4bfa7139e"/><file name="bradesco_grey.jpg" hash="93f1d8a84ab95166da85cc79957a1877"/><file name="bradesco_transferencia.jpg" hash="b0104bf5523f25b13c737b6b16ae7861"/><file name="bradesco_transferencia_grey.jpg" hash="2c70c68882be95369364dd032e5a81f6"/><file name="cabal.jpg" hash="4040e34511e05f1116fcadee18caa390"/><file name="cabal_grey.jpg" hash="92d0c8bc4fec1de7bfe2b5394970e49e"/><file name="cards_brl.gif" hash="422c1841a3234b148abdcf2d975f3a6e"/><file name="cards_brl_grey.gif" hash="fb250a891eab3b0c134c4b6b758272ca"/><file name="cards_colombia.jpg" hash="860319e1d33185be94fefcc2ccdbdcc7"/><file name="cards_colombia_grey.jpg" hash="00f7613cc02ffbdd13f8c3cc527ec5d3"/><file name="cards_logo.jpg" hash="f8358cc095447ae13bc01df071ed05cf"/><file name="cards_logo_grey.jpg" hash="6b63d47ac7fa2fc2c161f5343f6bbe83"/><file name="cashu.gif" hash="b11b9372c99e2eeba612deffbecbe23e"/><file name="cashu_grey.gif" hash="b025eb62f94662114c588757fcd28306"/><file name="cimb_clicks.gif" hash="87cfb10e123e945e243d4be68d74dfa4"/><file name="cimb_clicks_grey.gif" hash="ff11b24190a5a4658e2ed02c1eb9e254"/><file name="cuentadigital.gif" hash="6ea9d5498162d29bfcc8783fdb5a5915"/><file name="cuentadigital_grey.gif" hash="55a018c483a9f73e1d6694180a0f916c"/><file name="debito.jpg" hash="9fb5508cd7f0e584a416d0408b87e388"/><file name="debito_bradesco.jpg" hash="eb55ec42d033eba98b2b5075af0e96c0"/><file name="debito_bradesco_grey.jpg" hash="ed2f64e3408fe4ffad34950631bb559d"/><file name="debitobdb.jpg" hash="ca83fb36d62761bf6129e9ed2cd3e4f2"/><file name="debitobdb_grey.jpg" hash="d8f412bcea2de20f0273b41d9efffb25"/><file name="dineromail.gif" hash="165c7a216c2128cb88999d2313a03ee1"/><file name="dineromail_grey.gif" hash="9ea93cee63769fb3917eb7da977c39dd"/><file name="dineromail_v2.gif" hash="4a6753b4abbf58c71331864afa2c87fd"/><file name="dineromail_v2_grey.gif" hash="8d31ce280f249f7191ae3a0ab5563db9"/><file name="diners_club.jpg" hash="1d285b6477835279dede276886c4df91"/><file name="diners_club_grey.jpg" hash="90c195eafa58ade4657ffe3377d4eaaf"/><file name="discover.jpg" hash="7897fbc91bcff2fe3aa5b96e4f27340c"/><file name="discover_grey.jpg" hash="c54ef5a6a415c65cf8dbf3eda04ed441"/><file name="dp24_sofort.gif" hash="591d4c558ba73c63cb86b269edb37aa5"/><file name="dp24_sofort_grey.gif" hash="958dc7077eb00754a18a778d07f1e3b0"/><file name="easybank.jpg" hash="efefee8a24b5c084d65a3b3aef5bc1fc"/><file name="easybank_grey.jpg" hash="c1762fd4716c5d018c1f94e4390b9ac2"/><file name="ebanka.jpg" hash="f12cfb39af1310c60b6c7970d3a2a9b6"/><file name="ebanka_grey.jpg" hash="741393e8af189bddaa6c8778727dfb3c"/><file name="enets.gif" hash="bd6e2b5fc1c2e4f76e7b482275f2bda9"/><file name="enets_grey.gif" hash="59cbf860fe1106ce2650079e1f1c9e13"/><file name="eps-e-payment-standard.gif" hash="adc705e916095300e742bb248d957cde"/><file name="eps-e-payment-standard_grey.gif" hash="7b126f8cc47c6ba24f87f9b42973856f"/><file name="erste.jpg" hash="22220bca0bfa256b5c08f1f78d7f56b2"/><file name="erste_grey.jpg" hash="5480c45e2ff7820414d3097576e1c718"/><file name="gartnerbank.jpg" hash="c512b747545a5f64c07240265291b618"/><file name="gartnerbank_grey.jpg" hash="8a7216a173c15e31b317e33a0d4fcec4"/><file name="gash.gif" hash="9a9ddb20ba6e0e7dc65542c3fd8a3c1a"/><file name="gash_grey.gif" hash="635521bd6cd7e9e16b322fea3df1c39d"/><file name="giropay.gif" hash="a369853d4dca4e678964d3cd0f100ad0"/><file name="giropay_grey.gif" hash="f8f70668270d08d1c4bb4bf7c8fdef8c"/><file name="gluepay.jpg" hash="ab23cfb7303bd716012a82bc01ab0d5f"/><file name="gluepay_grey.jpg" hash="8d59d1eb8202de195120e570c2e526ec"/><file name="hipercard.jpg" hash="f90502730aa04872a58e6384cf8e8867"/><file name="hipercard_grey.jpg" hash="7a4108411fa694ef041152f62910c950"/><file name="hong_leong.gif" hash="2dd6e01d1993f6b5de40ac888723e293"/><file name="hong_leong_grey.gif" hash="8283f40b5e4a4cdb305fbbfc3d1f7cd5"/><file name="hypo.jpg" hash="0b3a6e2dfe85840658c3d2729b540042"/><file name="hypo_grey.jpg" hash="06fa0a4662552761a54e36aad277508d"/><file name="ideal.jpg" hash="37baefc16cd46d0fad89d8b3af68687d"/><file name="ideal_grey.jpg" hash="6d1d7d63b6a144832ec4295f8b28c1d7"/><file name="maestro.jpg" hash="85f3a2b4e288db5a1fdcee4ddbbe0300"/><file name="maestro_grey.jpg" hash="cf93aa2806efc66d39997435339b47b7"/><file name="mandiri.gif" hash="88ed6722469878f1c423d548cb31cd45"/><file name="mandiri_grey.gif" hash="6ec67f2e4c947d670ab689f94d34ef96"/><file name="mastercard.jpg" hash="fcded6aaeecc8e73f3e99187e77b5f34"/><file name="mastercard_grey.jpg" hash="3aa899d221d128c96e0e095aeca763e2"/><file name="maybank2u.gif" hash="fc4f2ae73b4672308451db5bed9c334b"/><file name="maybank2u_grey.gif" hash="b54795f9fcf4adfdb36e65089f62d81b"/><file name="mazooma.gif" hash="2241b7344c2b8e1ee70ad6e073c4f342"/><file name="mazooma_grey.gif" hash="5db064edd62f797baf4bc70d1fa221d3"/><file name="megafon.jpg" hash="9864e6ee4ff66ad0d9e21e596a16b3e4"/><file name="megafon_v1.gif" hash="0daecce60b8719ae8985d0e8a22d53ee"/><file name="megafon_v1_grey.gif" hash="2dadcabaafaf7970bf924c017eb5c419"/><file name="megafon_v2.gif" hash="ef7528f2d666fdfc0d8947ee18980b63"/><file name="megafon_v2_grey.gif" hash="a26f3a31ec3b223d4c84db583c224390"/><file name="meps_cash.gif" hash="cc419c7a482a57688ee5d93f331fcaa5"/><file name="meps_cash_grey.gif" hash="54adc93d4ec83d0dac5a12942c347d9f"/><file name="mercadopago.jpg" hash="f0d1fb160e6087b6505cba8f628da912"/><file name="mercadopago_grey.jpg" hash="777c628df4d889c01a13eaf5981d4513"/><file name="mobile_money.gif" hash="d44ec4368140041bb9fb84d6ee25ebc2"/><file name="mobile_money_grey.gif" hash="58527f75aeb0957e135a8c1fd68c17b5"/><file name="moneta.gif" hash="4bde6bd5ee50af375576974ee119c34b"/><file name="moneta_grey.gif" hash="c001b6ebd356dc0c0234791b950b3a69"/><file name="moneta_v2.gif" hash="14e3ca50db6bf538c3fa8c386411e56b"/><file name="moneta_v2_grey.gif" hash="4a6af98d43978b0783742f9a618d7fae"/><file name="mozca.jpg" hash="626773a49f8dba726f23f16bc258c896"/><file name="mozca_grey.jpg" hash="da34d14a6f4c28d0b5c6423692eb5b25"/><file name="mrcash.gif" hash="ecfb32489dcd09688fad5b116b3a85fd"/><file name="mrcash_grey.gif" hash="4cbaff4a13b6e6aae67946df05c6b27f"/><file name="mts.gif" hash="3c18eeb9214120d260a8a5667023e353"/><file name="mts_grey.gif" hash="e9d0c92e7794dea81039d07f0d09da11"/><file name="onecard.gif" hash="8c0b265fb5ea2fe1b174f87fb08c3e88"/><file name="onecard_grey.gif" hash="f37ec1c53e91e6fc3b9dedad4be9e1b1"/><file name="p24.gif" hash="05d24431783c90f1f37897f5e9a81dc9"/><file name="p24_grey.gif" hash="8bb083943400daed13271899892254b6"/><file name="pagtotal.jpg" hash="44426ff1d7d2d7387241354a91b0d855"/><file name="pagtotal_grey.jpg" hash="02d0a0fd8829cab14bf7a1527aa5a091"/><file name="payeasy.gif" hash="67cf43560bfb9cfe722538ef5c95433d"/><file name="payeasy_grey.gif" hash="47641e238b6fe6416ce2eb2cc351989f"/><file name="payment_in_cash.gif" hash="820e303d6b9ba66deab9f33e14253a58"/><file name="payment_in_cash_grey.gif" hash="978b6c2ca861bf967683d5a19adee694"/><file name="payment_references.gif" hash="ff968e7c1061aec0918b1a437099b540"/><file name="payment_references_grey.gif" hash="b77e2bbe0f62adcc7f1c041a458df752"/><file name="paypal.jpg" hash="c7559f323ab08f854c52fe4895f4ca55"/><file name="paypal_grey.jpg" hash="37597681016a307384874900f6128c33"/><file name="paysafecard.gif" hash="58a072776d1eb9644fdc533c594ef9f4"/><file name="paysafecard_grey.gif" hash="a08463516029a51b82a6329186698542"/><file name="paysbuy.gif" hash="ce0b88b54c2599aa109be5bf8fb4a133"/><file name="paysbuy_grey.gif" hash="6a3f0504f18b83f8987e9c4dc6cb664c"/><file name="poli.gif" hash="85ffbae6ae3706cdd88420f32bce1067"/><file name="poli_grey.gif" hash="1cc332df9c0e07f11567f2ef6cb062dd"/><file name="poli_v2.gif" hash="82a1218a9db8bdb204142b2fd5a2102e"/><file name="poli_v2_grey.gif" hash="ab9ed910c67f6e8f16681af512be3b5a"/><file name="pse.gif" hash="6e3197c2386c10c021085207217bd5e8"/><file name="pse_grey.gif" hash="a4a610bc5ac861ee97baa76c718b9c2b"/><file name="qiwi_wallet.gif" hash="e16df15584ee92d03c68f3a86eef1bc7"/><file name="qiwi_wallet_grey.gif" hash="fa4e3c399e721950d0d0274362677aa4"/><file name="qiwi_wallet_v2.gif" hash="46bce6e2a50c8dcf1532fe4f360957bd"/><file name="qiwi_wallet_v2_grey.gif" hash="d07ab773f6d9d014ac39959165918991"/><file name="rhb.gif" hash="d70d74834b9c1cfe2ff54514611e5684"/><file name="rhb_grey.gif" hash="d7e0e622e7c491d932d545c01150941e"/><file name="secure_vault.gif" hash="4d868b10b4d6545d22371de98cd92da3"/><file name="secure_vault_grey.gif" hash="760faaddc25befe508a6c8301e13cbea"/><file name="sibs_mb.gif" hash="3ea1f60c9c28aa46d747ecc60d19bfc0"/><file name="sibs_mb_grey.gif" hash="5f82bafbdbafdc842d9cd270f5477056"/><file name="sorocred.jpg" hash="ae5246d01aac784074fe326472dd6926"/><file name="sorocred_grey.jpg" hash="99561b84c21316cd94e3b6caafdf5225"/><file name="sparda.jpg" hash="4af507ced7ded8aaf8fb6d3b75c09b7f"/><file name="sparda_grey.jpg" hash="f84beefa87c5357f2d62c914f57a870f"/><file name="svp_grey.png" hash="507db08c738d4d9d314e4bca85a019cc"/><file name="todito_cash.gif" hash="1c1d1a1307f420805f8efd82d4988ae5"/><file name="todito_cash_grey.gif" hash="be7b28e381859bc17890cf7c82e314ff"/><file name="ukash.gif" hash="877c5677688589135a878813c9bc88c0"/><file name="ukash_grey.gif" hash="41ae1ea3c5a3c47853ff4ad898d5aa67"/><file name="umb.gif" hash="1ed0888a7874f41d4459d1cd9d65b171"/><file name="umb_grey.gif" hash="6511e82dc24db5041dadddc4ea735295"/><file name="visa.jpg" hash="41fd15708b63a7a305d8eecd86196677"/><file name="visa_electron.jpg" hash="ed77ab7059c7f16c1ad1a86e08ceacca"/><file name="visa_electron_grey.jpg" hash="6c2fb39684baaf916fcb2b6b5cf46293"/><file name="visa_grey.jpg" hash="1df46140f2380cabd1320048fad0f357"/><file name="volksbank.jpg" hash="70d0d657bd47bde2bb5f5d32ae1d222c"/><file name="volksbank_grey.jpg" hash="c5598166c0909bd09115fe91183feb69"/><file name="web_cash.gif" hash="a33d76bb68588b1f4ee791d0f6da17db"/><file name="web_cash_grey.gif" hash="bca8a9e4c4f296e5b595d719d1054fbb"/><file name="webmoney.jpg" hash="750addb8f763dd8ba9fe55024f392ea0"/><file name="webmoney_v1.gif" hash="ccf285ac5829e91f421c33e4a31b8b8e"/><file name="webmoney_v1_grey.gif" hash="c226455ae63261f4c835a460d65b8c3f"/><file name="webtopay_v3.gif" hash="2445c0587bf52dcfd40d586d910e76c3"/><file name="webtopay_v3_grey.gif" hash="b35f10379f0838103fb02bf414e71984"/><file name="yandex_money.gif" hash="f5111aa14fa33b0bdb0b657b515b00dc"/><file name="yandex_money_grey.gif" hash="96974577c36a912e7b9993cbb56a9121"/></dir></dir></dir></dir></dir></dir></target></contents>
83
  <compatible/>
84
  <dependencies><required><php><min>5.2.6</min><max>5.4.16</max></php></required></dependencies>
85
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Smart2Pay</name>
4
+ <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">The Open Software License 3.0 (OSL-3.0)</license>
7
  <channel>community</channel>
40
  &lt;li&gt;Paysafecard&lt;/li&gt;&#xD;
41
  &lt;li&gt;PagTotal&lt;/li&gt;&#xD;
42
  &lt;li&gt;Payeasy&lt;/li&gt;&#xD;
43
+ &lt;li&gt;DragonPay&lt;/li&gt;&#xD;
44
  &lt;li&gt;MercadoPago&lt;/li&gt;&#xD;
45
  &lt;li&gt;Mozca&lt;/li&gt;&#xD;
46
  &lt;li&gt;Gash&lt;/li&gt;&#xD;
47
  &lt;li&gt;ToditoCash&lt;/li&gt;&#xD;
48
  &lt;li&gt;Pay with my bank&lt;/li&gt;&#xD;
49
+ &lt;li&gt;Trustpay&lt;/li&gt;&#xD;
50
+ &lt;li&gt;MTCPay&lt;/li&gt;&#xD;
51
+ &lt;li&gt;MangirKart&lt;/li&gt;&#xD;
52
  &lt;li&gt;Boleto&lt;/li&gt;&#xD;
53
  &lt;li&gt;Debito Bradesco&lt;/li&gt;&#xD;
54
+ &lt;li&gt;Transferencia Bradesco&lt;/li&gt;&lt;li&gt;QIWI Wallet&lt;/li&gt;&#xD;
 
55
  &lt;li&gt;Beeline&lt;/li&gt;&#xD;
56
  &lt;li&gt;Megafon&lt;/li&gt;&#xD;
57
  &lt;li&gt;MTS&lt;/li&gt;&#xD;
72
  &lt;li&gt;ACH Debit&lt;/li&gt;&#xD;
73
  &lt;li&gt;Via Baloto&lt;/li&gt;&#xD;
74
  &lt;li&gt;Referenced Payment&lt;/li&gt;&#xD;
75
+ &lt;li&gt;XLTunai&lt;/li&gt;&#xD;
76
+ &lt;li&gt;Bancomer Pago referenciado&lt;/li&gt;&#xD;
77
+ &lt;li&gt;Santander Pago referenciado&lt;/li&gt;&#xD;
78
+ &lt;li&gt;ScotiaBank Pago referenciado&lt;/li&gt;&#xD;
79
+ &lt;li&gt;7-Eleven Pago en efectivo&lt;/li&gt;&#xD;
80
+ &lt;li&gt;Oxxo Pago en efectivo&lt;/li&gt;&#xD;
81
+ &lt;li&gt;IXE Pago referenciado&lt;/li&gt;&#xD;
82
+ &lt;li&gt;Cards Thailand&lt;/li&gt;&#xD;
83
+ &lt;li&gt;PayPal Thailand&lt;/li&gt;&#xD;
84
+ &lt;li&gt;AMEX Thailand&lt;/li&gt;&#xD;
85
+ &lt;li&gt;Cash Options Thailand&lt;/li&gt;&#xD;
86
+ &lt;li&gt;Online Banking Thailand&lt;/li&gt;&#xD;
87
+ &lt;li&gt;PaysBuy Wallet&lt;/li&gt;&#xD;
88
  &lt;/ul&gt;&#xD;
89
  &#xD;
90
  &lt;p&gt;Let us handle your payments on the web; increase your Sales and Customer satisfaction, join Smart2Pay, the smart way to pay on the web.&lt;/p&gt;&#xD;
91
  &#xD;
92
  &lt;p&gt;Please register online on https://dashboardtest.smart2pay.com/Account/Register or e-mail support@smart2pay.com for instructions on account activation and detailed documentation.&lt;/p&gt;</description>
93
+ <notes>Added the following payment methods: XLTunai, Bancomer Pago referenciado, Santander Pago referenciado, ScotiaBank Pago referenciado, 7-Eleven Pago en efectivo, Oxxo Pago en efectivo,&#xD;
94
+ IXE Pago referenciado, Cards Thailand, PayPal Thailand, AMEX Thailand, Cash Options Thailand, Online Banking Thailand, PaysBuy Wallet&#xD;
95
+ &#xD;
96
+ &#xD;
97
+ Added translations for en_US, en_GB, es_AR, es_CL, es_CO, es_ES, es_MX, it_IT, pt_BR.</notes>
98
  <authors><author><name>Stefan Iancu</name><user>stefani</user><email>stefan@smart2pay.com</email></author></authors>
99
+ <date>2013-08-09</date>
100
+ <time>13:37:53</time>
101
+ <contents><target name="magecommunity"><dir name="Smart2Pay"><dir name="Globalpay"><dir name="Block"><file name="Info.php" hash="7ba152ab49b0dc36cc9af68d4877a649"/><dir name="Paymethod"><file name="Form.php" hash="b1482f3ec22b1a2a20117d8847451ec1"/><file name="Sendform.php" hash="e936dd51dfcfd0f319b246edf210a33a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bb23054b861b1468c0a70e2ce5acdb8d"/><file name="Helper.php" hash="a549c535e360a93958c6ca941f80b129"/></dir><dir name="Model"><file name="Country.php" hash="4b433925bed9f5d47d64497432e75a34"/><file name="Countrymethod.php" hash="2aa968c593058fd86b2c8d0550f3e286"/><file name="GlobalpayLog.php" hash="f68fd78b1020729985c405d539cb94d4"/><file name="Logger.php" hash="6268d6a7829e481187b0d998be88bab0"/><file name="Method.php" hash="99a1ed249df5d21e978406f2aee202d7"/><file name="Pay.php" hash="d5f0b2f4f0cf42295fa2fb45a11759fb"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ad5ae7ebc94b095bb7264bdf8a8384db"/></dir><file name="Country.php" hash="48d23e3ab4a5c2788839433080179c65"/><dir name="Countrymethod"><file name="Collection.php" hash="31e944d1e66e1da9d3d3779c9cc318d3"/></dir><file name="Countrymethod.php" hash="95db4406bede177910938746e660360f"/><dir name="Logger"><file name="Collection.php" hash="f4db3e9e19df5570603cdddc843017ea"/></dir><file name="Logger.php" hash="ef953126a8793499b676a0aea7070fda"/><dir name="Method"><file name="Collection.php" hash="52091137c467ca6e4ef07e15505e41cd"/></dir><file name="Method.php" hash="ab86d14385f2330a81e13ac0d931fb89"/><file name="Setup.php" hash="6cad02bba0656dab9a7a7a85489f92c3"/></dir><dir name="Source"><file name="Displaymodes.php" hash="d58bea7ddb68a9ae8cd32aa1b175ce5f"/><file name="Methods.php" hash="00c268b45390e7dc505f3bf08699e65d"/><file name="Testlive.php" hash="c9cde641fdc6d7e853de3b6af3fa1d90"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="8e0e17e1510b8fff45300a347b99869e"/><file name="TestsController.php" hash="491989d17c884c304866caa317ba4b03"/></dir><dir name="etc"><file name="config.xml" hash="9034b12e9ddc7d701b16157a57958bd3"/><file name="system.xml" hash="ab61dfbde5a1847d86a2637ee3cf44cf"/></dir><dir name="sql"><dir name="globalpay_setup"><file name="mysql4-install-0.1.0.php" hash="a9028322416d7a057b933e5ff7461b7e"/><file name="mysql4-upgrade-1.0.3-1.1.1.php" hash="e101b2deef4a6911e20d9604a87f92b4"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="globalpay.xml" hash="d5f5abd3bbf9b9184cd18304acdac867"/></dir><dir name="template"><dir name="smart2pay"><dir name="globalpay"><file name="info.phtml" hash="27dd1e9f9fc5390ad74f45573ac51dea"/><dir name="paymethod"><file name="form.phtml" hash="0121fb12d5270242933707c0d001bc7a"/><file name="sendform.phtml" hash="54226c7581ac32786e8e7f81b34e5882"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="smart2pay"><dir name="methods"><file name="7eleven.gif" hash="34064a09693cc286ec61ca3c2689382a"/><file name="7eleven_grey.gif" hash="6eec329dc25961fae2a8a78b3d946a99"/><file name="ABN-AMRO.jpg" hash="82dd9741d9ce8f1c0706a9a29c775faa"/><file name="FPX.gif" hash="34cc5462d208c69dd7cec27024bd1f8a"/><file name="FPX_grey.gif" hash="f56883b1becf81c26a160d8022de9e58"/><file name="Frieslandbank.jpg" hash="25c44572f3d202a37e3801d78f8b9385"/><file name="IXe.gif" hash="1a36c6a866390fe4dfbcdf6ea7dabaa9"/><file name="IXe_grey.gif" hash="bdacd3d56125aa7d00d5b135885b7fcd"/><file name="RBS.jpg" hash="b11037004617f3a5f5afec6ed37953e8"/><file name="XLTunai.gif" hash="114b251f96a1b465133dab839132331c"/><file name="XLTunai_grey.gif" hash="c10fa0b64812167f317f168246f3a1ab"/><file name="abaqoos.gif" hash="9ecff0690953339133a8123c360e0441"/><file name="abaqoos_grey.gif" hash="080802fd1a5b90238ff1d206a15036f5"/><file name="ach.gif" hash="51b669a1d1ca0ff736166d27bf027213"/><file name="ach_grey.gif" hash="b876306dd72ae61c40c34f8b3aee7521"/><file name="alipay.jpg" hash="97430660b667441dc0a5d6611ccef494"/><file name="alipay_grey.jpg" hash="46d76de83013eec2856479e36cdf6dae"/><file name="alliance_online.gif" hash="321be117b6327f455cb3e8d31461fed9"/><file name="alliance_online_grey.gif" hash="e6f9d3180442f9fa432dc9ae0806ed09"/><file name="ambankgroup.gif" hash="f7f6e54e102819c15ad8c6ee37756dec"/><file name="ambankgroup_grey.gif" hash="c2a1ad7a5515fc857c043eaa0bba3955"/><file name="american_express.jpg" hash="84cf63cad26fcb5dbec431e7173731c7"/><file name="american_express_grey.jpg" hash="79bde788bfc298de8e9ea999e3a67754"/><file name="arztebank.jpg" hash="920e6d907af58292790e95ce5cc46905"/><file name="arztebank_grey.jpg" hash="ef1fb04251d1bebb0f9416e0764355a1"/><file name="asn_bank_logo.jpg" hash="ce53a6afff0590f26080ab71b7eddbd9"/><file name="banco_do_brasil.jpg" hash="4d97f3ee9a5ddfe75b52e42efac1b0a6"/><file name="banco_do_brasil_grey.jpg" hash="bd8f1252c31cbd7f4d28fe464ffd931b"/><file name="bancomer.gif" hash="59d3973018a23020bce776180620a5ee"/><file name="bancomer_grey.gif" hash="6f0708f36e0217c1c013994feca929ec"/><file name="bank_austria.jpg" hash="a1bbf3da1eaa934e649a25beb56ca723"/><file name="bank_austria_grey.jpg" hash="a076595d919a5d83ca84cda845b40eca"/><file name="bank_burgeland.jpg" hash="c2425d58078fc8409d252667e712678a"/><file name="bank_burgeland_grey.jpg" hash="a1e08848c1ae3cb3ed891619325039a6"/><file name="bank_transfer_logo_v2.png" hash="513ff9d754da83a8b88da278954573ff"/><file name="bank_transfer_logo_v3.png" hash="a07da37a5832723883907a6d97aa011f"/><file name="bank_transfer_logo_v4.png" hash="1450f028cebd6dfc9ae2e36bbabc4fa6"/><file name="bank_transfer_logo_v5.gif" hash="4c76e68b7b0bab515876738b2f8e5539"/><file name="bank_transfer_logo_v5_grey.gif" hash="acb5862cf5636d94b5639e01069b58da"/><file name="bawag.jpg" hash="fa7cbc4ed038912ccaff7a93bd12978e"/><file name="bawag_grey.jpg" hash="7fd2c562481207a397e2a57f02dd8f81"/><file name="beeline.gif" hash="ccf64a91497758ccfa09e901cfa3f8f9"/><file name="beeline_grey.gif" hash="50e464db96cc2cde3c3ab3b8ac4e5b50"/><file name="boleto.jpg" hash="c79ebd618a7846334551af31eb4d9210"/><file name="boleto_bancario_itau.gif" hash="7c47d83948b9ce642987666e45fc051b"/><file name="boleto_bancario_itau_grey.gif" hash="4d84e963d65d68ac2ac4d3239df6718e"/><file name="boleto_grey.jpg" hash="d8b8af5824b75978718f4c4afcc344ac"/><file name="bradesco.jpg" hash="9d36af7f1e683bad48cdfbd4bfa7139e"/><file name="bradesco_grey.jpg" hash="93f1d8a84ab95166da85cc79957a1877"/><file name="bradesco_transferencia.jpg" hash="b0104bf5523f25b13c737b6b16ae7861"/><file name="bradesco_transferencia_grey.jpg" hash="2c70c68882be95369364dd032e5a81f6"/><file name="cabal.jpg" hash="4040e34511e05f1116fcadee18caa390"/><file name="cabal_grey.jpg" hash="92d0c8bc4fec1de7bfe2b5394970e49e"/><file name="cards_brl.gif" hash="422c1841a3234b148abdcf2d975f3a6e"/><file name="cards_brl_grey.gif" hash="fb250a891eab3b0c134c4b6b758272ca"/><file name="cards_colombia.jpg" hash="860319e1d33185be94fefcc2ccdbdcc7"/><file name="cards_colombia_grey.jpg" hash="00f7613cc02ffbdd13f8c3cc527ec5d3"/><file name="cards_logo.jpg" hash="f8358cc095447ae13bc01df071ed05cf"/><file name="cards_logo_grey.jpg" hash="6b63d47ac7fa2fc2c161f5343f6bbe83"/><file name="cash_paysbuy.jpg" hash="e3339aa7291693a2a8b053b4fdc10bab"/><file name="cashu.gif" hash="b11b9372c99e2eeba612deffbecbe23e"/><file name="cashu_grey.gif" hash="b025eb62f94662114c588757fcd28306"/><file name="cimb_clicks.gif" hash="87cfb10e123e945e243d4be68d74dfa4"/><file name="cimb_clicks_grey.gif" hash="ff11b24190a5a4658e2ed02c1eb9e254"/><file name="cuentadigital.gif" hash="6ea9d5498162d29bfcc8783fdb5a5915"/><file name="cuentadigital_grey.gif" hash="55a018c483a9f73e1d6694180a0f916c"/><file name="debito.jpg" hash="9fb5508cd7f0e584a416d0408b87e388"/><file name="debito_bradesco.jpg" hash="eb55ec42d033eba98b2b5075af0e96c0"/><file name="debito_bradesco_grey.jpg" hash="ed2f64e3408fe4ffad34950631bb559d"/><file name="debitobdb.jpg" hash="ca83fb36d62761bf6129e9ed2cd3e4f2"/><file name="debitobdb_grey.jpg" hash="d8f412bcea2de20f0273b41d9efffb25"/><file name="dineromail.gif" hash="165c7a216c2128cb88999d2313a03ee1"/><file name="dineromail_grey.gif" hash="9ea93cee63769fb3917eb7da977c39dd"/><file name="dineromail_v2.gif" hash="4a6753b4abbf58c71331864afa2c87fd"/><file name="dineromail_v2_grey.gif" hash="8d31ce280f249f7191ae3a0ab5563db9"/><file name="diners_club.jpg" hash="1d285b6477835279dede276886c4df91"/><file name="diners_club_grey.jpg" hash="90c195eafa58ade4657ffe3377d4eaaf"/><file name="discover.jpg" hash="7897fbc91bcff2fe3aa5b96e4f27340c"/><file name="discover_grey.jpg" hash="c54ef5a6a415c65cf8dbf3eda04ed441"/><file name="dp24_sofort.gif" hash="591d4c558ba73c63cb86b269edb37aa5"/><file name="dp24_sofort_NEW.gif" hash="7e8525303d803df6281c81f9011ebefe"/><file name="dp24_sofort_NEW_grey.gif" hash="aa042e6eb9be0a55f3b99007e6f5e40f"/><file name="dp24_sofort_grey.gif" hash="958dc7077eb00754a18a778d07f1e3b0"/><file name="dragonpay.jpg" hash="8ba2880b7b0b5f9108a09f003f2eb74b"/><file name="dragonpay_grey.jpg" hash="78e1397597adcc83649f25f06111c085"/><file name="eKonto.gif" hash="031a1321bdfeb801f30701e8af53c8e4"/><file name="eKonto_grey.gif" hash="63ae97d6b8efe04ef167bd027936e479"/><file name="easybank.jpg" hash="efefee8a24b5c084d65a3b3aef5bc1fc"/><file name="easybank_grey.jpg" hash="c1762fd4716c5d018c1f94e4390b9ac2"/><file name="ebanka.jpg" hash="f12cfb39af1310c60b6c7970d3a2a9b6"/><file name="ebanka_grey.jpg" hash="741393e8af189bddaa6c8778727dfb3c"/><file name="enets.gif" hash="bd6e2b5fc1c2e4f76e7b482275f2bda9"/><file name="enets_grey.gif" hash="59cbf860fe1106ce2650079e1f1c9e13"/><file name="eps-e-payment-standard.gif" hash="adc705e916095300e742bb248d957cde"/><file name="eps-e-payment-standard_grey.gif" hash="7b126f8cc47c6ba24f87f9b42973856f"/><file name="erste.jpg" hash="22220bca0bfa256b5c08f1f78d7f56b2"/><file name="erste_grey.jpg" hash="5480c45e2ff7820414d3097576e1c718"/><file name="gartnerbank.jpg" hash="c512b747545a5f64c07240265291b618"/><file name="gartnerbank_grey.jpg" hash="8a7216a173c15e31b317e33a0d4fcec4"/><file name="gash.gif" hash="9a9ddb20ba6e0e7dc65542c3fd8a3c1a"/><file name="gash_grey.gif" hash="635521bd6cd7e9e16b322fea3df1c39d"/><file name="giropay.gif" hash="a369853d4dca4e678964d3cd0f100ad0"/><file name="giropay_grey.gif" hash="f8f70668270d08d1c4bb4bf7c8fdef8c"/><file name="gluepay.jpg" hash="ab23cfb7303bd716012a82bc01ab0d5f"/><file name="gluepay_grey.jpg" hash="8d59d1eb8202de195120e570c2e526ec"/><file name="hipercard.jpg" hash="f90502730aa04872a58e6384cf8e8867"/><file name="hipercard_grey.jpg" hash="7a4108411fa694ef041152f62910c950"/><file name="hong_leong.gif" hash="2dd6e01d1993f6b5de40ac888723e293"/><file name="hong_leong_grey.gif" hash="8283f40b5e4a4cdb305fbbfc3d1f7cd5"/><file name="hypo.jpg" hash="0b3a6e2dfe85840658c3d2729b540042"/><file name="hypo_grey.jpg" hash="06fa0a4662552761a54e36aad277508d"/><file name="ideal.jpg" hash="37baefc16cd46d0fad89d8b3af68687d"/><file name="ideal_grey.jpg" hash="6d1d7d63b6a144832ec4295f8b28c1d7"/><file name="maestro.jpg" hash="85f3a2b4e288db5a1fdcee4ddbbe0300"/><file name="maestro_grey.jpg" hash="cf93aa2806efc66d39997435339b47b7"/><file name="mandiri.gif" hash="88ed6722469878f1c423d548cb31cd45"/><file name="mandiri_grey.gif" hash="6ec67f2e4c947d670ab689f94d34ef96"/><file name="mangirkart.jpg" hash="4c297147e68215bcafd92782e1663117"/><file name="mastercard.jpg" hash="fcded6aaeecc8e73f3e99187e77b5f34"/><file name="mastercard_grey.jpg" hash="3aa899d221d128c96e0e095aeca763e2"/><file name="maybank2u.gif" hash="fc4f2ae73b4672308451db5bed9c334b"/><file name="maybank2u_grey.gif" hash="b54795f9fcf4adfdb36e65089f62d81b"/><file name="mazooma.gif" hash="2241b7344c2b8e1ee70ad6e073c4f342"/><file name="mazooma_grey.gif" hash="5db064edd62f797baf4bc70d1fa221d3"/><file name="megafon.jpg" hash="9864e6ee4ff66ad0d9e21e596a16b3e4"/><file name="megafon_v1.gif" hash="0daecce60b8719ae8985d0e8a22d53ee"/><file name="megafon_v1_grey.gif" hash="2dadcabaafaf7970bf924c017eb5c419"/><file name="megafon_v2.gif" hash="ef7528f2d666fdfc0d8947ee18980b63"/><file name="megafon_v2_grey.gif" hash="a26f3a31ec3b223d4c84db583c224390"/><file name="meps_cash.gif" hash="cc419c7a482a57688ee5d93f331fcaa5"/><file name="meps_cash_grey.gif" hash="54adc93d4ec83d0dac5a12942c347d9f"/><file name="mercadopago.jpg" hash="f0d1fb160e6087b6505cba8f628da912"/><file name="mercadopago_grey.jpg" hash="777c628df4d889c01a13eaf5981d4513"/><file name="mobile_money.gif" hash="d44ec4368140041bb9fb84d6ee25ebc2"/><file name="mobile_money_grey.gif" hash="58527f75aeb0957e135a8c1fd68c17b5"/><file name="moneta.gif" hash="4bde6bd5ee50af375576974ee119c34b"/><file name="moneta_grey.gif" hash="c001b6ebd356dc0c0234791b950b3a69"/><file name="moneta_v2.gif" hash="14e3ca50db6bf538c3fa8c386411e56b"/><file name="moneta_v2_grey.gif" hash="4a6af98d43978b0783742f9a618d7fae"/><file name="mozca.jpg" hash="626773a49f8dba726f23f16bc258c896"/><file name="mozca_grey.jpg" hash="da34d14a6f4c28d0b5c6423692eb5b25"/><file name="mrcash.gif" hash="ecfb32489dcd09688fad5b116b3a85fd"/><file name="mrcash_grey.gif" hash="4cbaff4a13b6e6aae67946df05c6b27f"/><file name="mtcpay.png" hash="1acfec41fea98b5692537a7ed137e556"/><file name="mtcpay_grey.png" hash="8d2471aeed41c7e5ea0627edc50fa579"/><file name="mts.gif" hash="3c18eeb9214120d260a8a5667023e353"/><file name="mts_grey.gif" hash="e9d0c92e7794dea81039d07f0d09da11"/><file name="onecard.gif" hash="8c0b265fb5ea2fe1b174f87fb08c3e88"/><file name="onecard_grey.gif" hash="f37ec1c53e91e6fc3b9dedad4be9e1b1"/><file name="oxxo.gif" hash="39a7b9d78e465cb6bd914bd650cdf657"/><file name="oxxo_grey.gif" hash="f45edb2dc33fe37cabcae62b63179b00"/><file name="p24.gif" hash="05d24431783c90f1f37897f5e9a81dc9"/><file name="p24_grey.gif" hash="8bb083943400daed13271899892254b6"/><file name="pagtotal.jpg" hash="44426ff1d7d2d7387241354a91b0d855"/><file name="pagtotal_grey.jpg" hash="02d0a0fd8829cab14bf7a1527aa5a091"/><file name="payeasy.gif" hash="67cf43560bfb9cfe722538ef5c95433d"/><file name="payeasy_grey.gif" hash="47641e238b6fe6416ce2eb2cc351989f"/><file name="payment_in_cash.gif" hash="820e303d6b9ba66deab9f33e14253a58"/><file name="payment_in_cash_grey.gif" hash="978b6c2ca861bf967683d5a19adee694"/><file name="payment_references.gif" hash="ff968e7c1061aec0918b1a437099b540"/><file name="payment_references_grey.gif" hash="b77e2bbe0f62adcc7f1c041a458df752"/><file name="paypal.jpg" hash="c7559f323ab08f854c52fe4895f4ca55"/><file name="paypal_grey.jpg" hash="37597681016a307384874900f6128c33"/><file name="paysafecard.gif" hash="58a072776d1eb9644fdc533c594ef9f4"/><file name="paysafecard_grey.gif" hash="a08463516029a51b82a6329186698542"/><file name="paysbuy.gif" hash="ce0b88b54c2599aa109be5bf8fb4a133"/><file name="paysbuy_grey.gif" hash="6a3f0504f18b83f8987e9c4dc6cb664c"/><file name="paysera.gif" hash="a9b49116a485e079c14435f2c8f3ebb5"/><file name="paysera_grey.gif" hash="477121bf236b2ac87e73580a2545b5ef"/><file name="poli.gif" hash="85ffbae6ae3706cdd88420f32bce1067"/><file name="poli_grey.gif" hash="1cc332df9c0e07f11567f2ef6cb062dd"/><file name="poli_v2.gif" hash="82a1218a9db8bdb204142b2fd5a2102e"/><file name="poli_v2_grey.gif" hash="ab9ed910c67f6e8f16681af512be3b5a"/><file name="pse.gif" hash="6e3197c2386c10c021085207217bd5e8"/><file name="pse_grey.gif" hash="a4a610bc5ac861ee97baa76c718b9c2b"/><file name="pwmb.png" hash="0f8fc1c0ef17b18feae6f703d5e79f8f"/><file name="pwmb_grey.png" hash="7dc818575813d559df3901575b500bc4"/><file name="qiwi_wallet.gif" hash="e16df15584ee92d03c68f3a86eef1bc7"/><file name="qiwi_wallet_grey.gif" hash="fa4e3c399e721950d0d0274362677aa4"/><file name="qiwi_wallet_v2.gif" hash="46bce6e2a50c8dcf1532fe4f360957bd"/><file name="qiwi_wallet_v2_grey.gif" hash="d07ab773f6d9d014ac39959165918991"/><file name="rhb.gif" hash="d70d74834b9c1cfe2ff54514611e5684"/><file name="rhb_grey.gif" hash="d7e0e622e7c491d932d545c01150941e"/><file name="santander.gif" hash="03ddf28ce467aabcf922a06111cba206"/><file name="santander_grey.gif" hash="bddb4f6f439c307ac7540e43408e6bda"/><file name="scotiabank.gif" hash="42157d67add2903652dd5e3a7ecf7cc3"/><file name="scotiabank_grey.gif" hash="e67793346f3017f784b9827917c6accb"/><file name="secure_vault.gif" hash="4d868b10b4d6545d22371de98cd92da3"/><file name="secure_vault_grey.gif" hash="760faaddc25befe508a6c8301e13cbea"/><file name="sibs_mb.gif" hash="3ea1f60c9c28aa46d747ecc60d19bfc0"/><file name="sibs_mb_grey.gif" hash="5f82bafbdbafdc842d9cd270f5477056"/><file name="sorocred.jpg" hash="ae5246d01aac784074fe326472dd6926"/><file name="sorocred_grey.jpg" hash="99561b84c21316cd94e3b6caafdf5225"/><file name="sparda.jpg" hash="4af507ced7ded8aaf8fb6d3b75c09b7f"/><file name="sparda_grey.jpg" hash="f84beefa87c5357f2d62c914f57a870f"/><file name="svp_grey.png" hash="507db08c738d4d9d314e4bca85a019cc"/><file name="tenpay.gif" hash="550be3db4283fb6ebded4a5e167d88b7"/><file name="tenpay_grey.gif" hash="0dded13d859360a75fa84a9ff5dcba2c"/><file name="todito_cash.gif" hash="1c1d1a1307f420805f8efd82d4988ae5"/><file name="todito_cash_grey.gif" hash="be7b28e381859bc17890cf7c82e314ff"/><file name="trustpay.png" hash="af9db4dcb9410af39e3c88f626f34b76"/><file name="trustpay_grey.png" hash="24bd44c2746a92b0879560b91dffafcf"/><file name="ukash.gif" hash="877c5677688589135a878813c9bc88c0"/><file name="ukash_grey.gif" hash="41ae1ea3c5a3c47853ff4ad898d5aa67"/><file name="umb.gif" hash="1ed0888a7874f41d4459d1cd9d65b171"/><file name="umb_grey.gif" hash="6511e82dc24db5041dadddc4ea735295"/><file name="visa.jpg" hash="41fd15708b63a7a305d8eecd86196677"/><file name="visa_electron.jpg" hash="ed77ab7059c7f16c1ad1a86e08ceacca"/><file name="visa_electron_grey.jpg" hash="6c2fb39684baaf916fcb2b6b5cf46293"/><file name="visa_grey.jpg" hash="1df46140f2380cabd1320048fad0f357"/><file name="volksbank.jpg" hash="70d0d657bd47bde2bb5f5d32ae1d222c"/><file name="volksbank_grey.jpg" hash="c5598166c0909bd09115fe91183feb69"/><file name="web_cash.gif" hash="a33d76bb68588b1f4ee791d0f6da17db"/><file name="web_cash_grey.gif" hash="bca8a9e4c4f296e5b595d719d1054fbb"/><file name="webmoney.jpg" hash="750addb8f763dd8ba9fe55024f392ea0"/><file name="webmoney_v1.gif" hash="ccf285ac5829e91f421c33e4a31b8b8e"/><file name="webmoney_v1_grey.gif" hash="c226455ae63261f4c835a460d65b8c3f"/><file name="webtopay_v3.gif" hash="2445c0587bf52dcfd40d586d910e76c3"/><file name="webtopay_v3_grey.gif" hash="b35f10379f0838103fb02bf414e71984"/><file name="yandex_money.gif" hash="f5111aa14fa33b0bdb0b657b515b00dc"/><file name="yandex_money_grey.gif" hash="96974577c36a912e7b9993cbb56a9121"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smart2Pay_Globalpay.xml" hash="1f3951214d78df89b34a781bd683699c"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="c8c04c062fee65273bb4d5352ba3f71b"/></dir><dir name="en_GB"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="c8c04c062fee65273bb4d5352ba3f71b"/></dir><dir name="pt_BR"><file name="Smart2Pay_Globalpay.csv" hash="72c7cef13001b2e90ad38ee89c32852f"/></dir><dir name="es_AR"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_CL"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_CO"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_ES"><file name="Smart2Pay_Globalpay.csv" hash="ac603910d33aa5c729ff12bfd6b2ab4e"/></dir><dir name="es_MX"><file name="Smart2Pay_Globalpay.csv" hash="0193cd699c4fe9c5d613188f91e9b3cb"/></dir><dir name="it_IT"><file name="Smart2Pay_Globalpay.csv" hash="5e72668927b8756914a79403d34b2f3d"/></dir></target></contents>
102
  <compatible/>
103
  <dependencies><required><php><min>5.2.6</min><max>5.4.16</max></php></required></dependencies>
104
  </package>
skin/frontend/base/default/images/smart2pay/methods/7eleven.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/7eleven_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/IXe.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/IXe_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/XLTunai.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/XLTunai_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/bancomer.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/bancomer_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/boleto_bancario_itau.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/boleto_bancario_itau_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/cash_paysbuy.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/dp24_sofort_NEW.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/dp24_sofort_NEW_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/dragonpay.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/dragonpay_grey.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/eKonto.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/eKonto_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/mangirkart.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/mtcpay.png ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/mtcpay_grey.png ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/oxxo.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/oxxo_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/paysera.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/paysera_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/pwmb.png ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/pwmb_grey.png ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/santander.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/santander_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/scotiabank.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/scotiabank_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/tenpay.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/tenpay_grey.gif ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/trustpay.png ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/trustpay_grey.png ADDED
Binary file