Version Notes
Download this release
Release Info
Developer | Kassim Belghait |
Extension | Allopass_Hipay |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.5.0
- app/code/community/Allopass/Hipay/Block/Checkout/Tokenjs.php +0 -0
- app/code/community/Allopass/Hipay/Controller/Payment.php +1 -1
- app/code/community/Allopass/Hipay/Helper/Data.php +12 -0
- app/code/community/Allopass/Hipay/Model/Method/Abstract.php +17 -4
- app/code/community/Allopass/Hipay/Model/Method/CcXtimes.php +0 -0
- app/code/community/Allopass/Hipay/Model/Method/HostedXtimes.php +0 -0
- app/code/community/Allopass/Hipay/controllers/CcxtimesController.php +0 -0
- app/code/community/Allopass/Hipay/controllers/HostedxtimesController.php +0 -0
- app/code/community/Allopass/Hipay/controllers/SddController.php +0 -0
- app/code/community/Allopass/Hipay/etc/config.xml +2 -1
- app/code/community/Allopass/Hipay/etc/system.xml +172 -1
- app/design/frontend/base/default/layout/hipay.xml +8 -0
- app/design/frontend/base/default/template/hipay/checkout/tokenjs.phtml +4 -0
- app/design/frontend/base/default/template/hipay/form/cc.phtml +8 -1
- app/locale/en_US/Allopass_Hipay.csv +2 -1
- app/locale/fr_FR/Allopass_Hipay.csv +1 -0
- app/locale/it_IT/Allopass_Hipay.csv +4 -3
- package.xml +1 -1
- skin/frontend/base/default/js/hipay-fingerprint.min.js +1 -0
- skin/frontend/base/default/js/hipay-fullservice-sdk.min.js +0 -0
app/code/community/Allopass/Hipay/Block/Checkout/Tokenjs.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/Controller/Payment.php
CHANGED
@@ -95,7 +95,7 @@ class Allopass_Hipay_Controller_Payment extends Mage_Core_Controller_Front_Actio
|
|
95 |
$this->processResponse();
|
96 |
}*/
|
97 |
$this->processResponse();
|
98 |
-
$this->_redirect('
|
99 |
|
100 |
return $this;
|
101 |
}
|
95 |
$this->processResponse();
|
96 |
}*/
|
97 |
$this->processResponse();
|
98 |
+
$this->_redirect(Mage::helper('hipay')->getCheckoutSuccessPage($this->getOrder()->getPayment()));
|
99 |
|
100 |
return $this;
|
101 |
}
|
app/code/community/Allopass/Hipay/Helper/Data.php
CHANGED
@@ -607,5 +607,17 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
|
|
607 |
return $params;
|
608 |
}
|
609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
|
611 |
}
|
607 |
return $params;
|
608 |
}
|
609 |
|
610 |
+
/**
|
611 |
+
* @param Mage_Sales_Model_Order_Payment $payment
|
612 |
+
*
|
613 |
+
* @return string
|
614 |
+
*/
|
615 |
+
public function getCheckoutSuccessPage($payment) {
|
616 |
+
// if empty success page magento
|
617 |
+
return empty(Mage::getStoreConfig('payment/'.$payment->getMethod().'/success_redirect_page')) ?
|
618 |
+
Mage::getUrl('checkout/onepage/success') :
|
619 |
+
Mage::getStoreConfig('payment/'.$payment->getMethod().'/success_redirect_page');
|
620 |
+
}
|
621 |
+
|
622 |
|
623 |
}
|
app/code/community/Allopass/Hipay/Model/Method/Abstract.php
CHANGED
@@ -103,7 +103,8 @@ abstract class Allopass_Hipay_Model_Method_Abstract extends Mage_Payment_Model_M
|
|
103 |
->setAdditionalInformation('use_oneclick',$oneclickMode == "use_oneclick" ? 1 : 0)
|
104 |
->setAdditionalInformation('selected_oneclick_card',$oneclickCard == "" ? 0 : $oneclickCard)
|
105 |
->setAdditionalInformation('split_payment_id',$splitPaymentId != "" ? $splitPaymentId : 0)
|
106 |
-
->setAdditionalInformation('token',$token != "" ? $token : "")
|
|
|
107 |
|
108 |
|
109 |
}
|
@@ -859,7 +860,7 @@ abstract class Allopass_Hipay_Model_Method_Abstract extends Mage_Payment_Model_M
|
|
859 |
switch ($gatewayResponse->getState())
|
860 |
{
|
861 |
case self::STATE_COMPLETED:
|
862 |
-
return $this->isAdmin() ? $urlAdmin : Mage::
|
863 |
|
864 |
case self::STATE_FORWARDING:
|
865 |
$payment->setIsTransactionPending(1);
|
@@ -968,9 +969,8 @@ abstract class Allopass_Hipay_Model_Method_Abstract extends Mage_Payment_Model_M
|
|
968 |
*/
|
969 |
public function getGatewayParams($payment,$amount,$token=null)
|
970 |
{
|
971 |
-
|
972 |
$params = array();
|
973 |
-
|
974 |
$params['orderid'] = $payment->getOrder()->getIncrementId();
|
975 |
|
976 |
$paymentProduct = null;
|
@@ -1074,6 +1074,19 @@ abstract class Allopass_Hipay_Model_Method_Abstract extends Mage_Payment_Model_M
|
|
1074 |
//add url to order in BO Magento
|
1075 |
$params['cdata1'] = Mage::getUrl('adminhtml/sales_order/view',array('_secure'=>true,'order_id'=>$payment->getOrder()->getId()));
|
1076 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1077 |
|
1078 |
return $params;
|
1079 |
}
|
103 |
->setAdditionalInformation('use_oneclick',$oneclickMode == "use_oneclick" ? 1 : 0)
|
104 |
->setAdditionalInformation('selected_oneclick_card',$oneclickCard == "" ? 0 : $oneclickCard)
|
105 |
->setAdditionalInformation('split_payment_id',$splitPaymentId != "" ? $splitPaymentId : 0)
|
106 |
+
->setAdditionalInformation('token',$token != "" ? $token : "")
|
107 |
+
->setAdditionalInformation('device_fingerprint', $data->getData('device_fingerprint'));
|
108 |
|
109 |
|
110 |
}
|
860 |
switch ($gatewayResponse->getState())
|
861 |
{
|
862 |
case self::STATE_COMPLETED:
|
863 |
+
return $this->isAdmin() ? $urlAdmin : Mage::helper('hipay')->getCheckoutSuccessPage($payment);
|
864 |
|
865 |
case self::STATE_FORWARDING:
|
866 |
$payment->setIsTransactionPending(1);
|
969 |
*/
|
970 |
public function getGatewayParams($payment,$amount,$token=null)
|
971 |
{
|
|
|
972 |
$params = array();
|
973 |
+
|
974 |
$params['orderid'] = $payment->getOrder()->getIncrementId();
|
975 |
|
976 |
$paymentProduct = null;
|
1074 |
//add url to order in BO Magento
|
1075 |
$params['cdata1'] = Mage::getUrl('adminhtml/sales_order/view',array('_secure'=>true,'order_id'=>$payment->getOrder()->getId()));
|
1076 |
|
1077 |
+
// Add custom data for transaction request
|
1078 |
+
if(class_exists('Allopass_Hipay_Helper_CustomData',false) &&
|
1079 |
+
method_exists(Mage::helper('hipay/customData'),'getCustomData'))
|
1080 |
+
{
|
1081 |
+
$customData = Mage::helper('hipay/customData')->getCustomData($payment,$amount);
|
1082 |
+
|
1083 |
+
if (is_array($customData)){
|
1084 |
+
$params['custom_data'] = json_encode(($customData));
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
}
|
1088 |
+
|
1089 |
+
$params['device_fingerprint'] = $payment->getAdditionalInformation('device_fingerprint');
|
1090 |
|
1091 |
return $params;
|
1092 |
}
|
app/code/community/Allopass/Hipay/Model/Method/CcXtimes.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/Model/Method/HostedXtimes.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/controllers/CcxtimesController.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/controllers/HostedxtimesController.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/controllers/SddController.php
CHANGED
File without changes
|
app/code/community/Allopass/Hipay/etc/config.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<config>
|
2 |
<modules>
|
3 |
<Allopass_Hipay>
|
4 |
-
<version>1.
|
5 |
</Allopass_Hipay>
|
6 |
</modules>
|
7 |
<global>
|
@@ -344,6 +344,7 @@
|
|
344 |
<vault_endpoint_production>https://secure-vault.hipay-tpp.com/rest/v1/token/</vault_endpoint_production>
|
345 |
<gateway_endpoint_stage>https://stage-secure-gateway.hipay-tpp.com/rest/v1/</gateway_endpoint_stage>
|
346 |
<gateway_endpoint_production>https://secure-gateway.hipay-tpp.com/rest/v1/</gateway_endpoint_production>
|
|
|
347 |
</hipay_api>
|
348 |
<fraud_payment>
|
349 |
<identity>general</identity>
|
1 |
<config>
|
2 |
<modules>
|
3 |
<Allopass_Hipay>
|
4 |
+
<version>1.5.0</version>
|
5 |
</Allopass_Hipay>
|
6 |
</modules>
|
7 |
<global>
|
344 |
<vault_endpoint_production>https://secure-vault.hipay-tpp.com/rest/v1/token/</vault_endpoint_production>
|
345 |
<gateway_endpoint_stage>https://stage-secure-gateway.hipay-tpp.com/rest/v1/</gateway_endpoint_stage>
|
346 |
<gateway_endpoint_production>https://secure-gateway.hipay-tpp.com/rest/v1/</gateway_endpoint_production>
|
347 |
+
<fingerprint>1</fingerprint>
|
348 |
</hipay_api>
|
349 |
<fraud_payment>
|
350 |
<identity>general</identity>
|
app/code/community/Allopass/Hipay/etc/system.xml
CHANGED
@@ -142,6 +142,15 @@
|
|
142 |
<show_in_website>1</show_in_website>
|
143 |
<show_in_store>1</show_in_store>
|
144 |
</proxy_pass>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
</fields>
|
146 |
</hipay_api>
|
147 |
<fraud_payment translate="label">
|
@@ -350,6 +359,15 @@
|
|
350 |
<show_in_website>1</show_in_website>
|
351 |
<show_in_store>0</show_in_store>
|
352 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
<pending_redirect_page translate="label">
|
354 |
<label>Redirect page pending status</label>
|
355 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -638,6 +656,15 @@
|
|
638 |
<show_in_website>1</show_in_website>
|
639 |
<show_in_store>0</show_in_store>
|
640 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
641 |
<pending_redirect_page translate="label">
|
642 |
<label>Redirect page pending status</label>
|
643 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -889,6 +916,15 @@
|
|
889 |
<show_in_website>1</show_in_website>
|
890 |
<show_in_store>0</show_in_store>
|
891 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
<pending_redirect_page translate="label">
|
893 |
<label>Redirect page pending status</label>
|
894 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -1226,6 +1262,15 @@
|
|
1226 |
<show_in_website>1</show_in_website>
|
1227 |
<show_in_store>0</show_in_store>
|
1228 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1229 |
<pending_redirect_page translate="label">
|
1230 |
<label>Redirect page pending status</label>
|
1231 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -1526,6 +1571,15 @@
|
|
1526 |
<show_in_website>1</show_in_website>
|
1527 |
<show_in_store>0</show_in_store>
|
1528 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1529 |
<pending_redirect_page translate="label">
|
1530 |
<label>Redirect page pending status</label>
|
1531 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -1708,6 +1762,15 @@
|
|
1708 |
<show_in_website>1</show_in_website>
|
1709 |
<show_in_store>0</show_in_store>
|
1710 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1711 |
<pending_redirect_page translate="label">
|
1712 |
<label>Redirect page pending status</label>
|
1713 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -1890,6 +1953,15 @@
|
|
1890 |
<show_in_website>1</show_in_website>
|
1891 |
<show_in_store>0</show_in_store>
|
1892 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1893 |
<pending_redirect_page translate="label">
|
1894 |
<label>Redirect page pending status</label>
|
1895 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -2436,6 +2508,15 @@
|
|
2436 |
<show_in_website>1</show_in_website>
|
2437 |
<show_in_store>0</show_in_store>
|
2438 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2439 |
<pending_redirect_page translate="label">
|
2440 |
<label>Redirect page pending status</label>
|
2441 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -2618,6 +2699,15 @@
|
|
2618 |
<show_in_website>1</show_in_website>
|
2619 |
<show_in_store>0</show_in_store>
|
2620 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2621 |
<pending_redirect_page translate="label">
|
2622 |
<label>Redirect page pending status</label>
|
2623 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -2800,6 +2890,15 @@
|
|
2800 |
<show_in_website>1</show_in_website>
|
2801 |
<show_in_store>0</show_in_store>
|
2802 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2803 |
<pending_redirect_page translate="label">
|
2804 |
<label>Redirect page pending status</label>
|
2805 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -2982,6 +3081,15 @@
|
|
2982 |
<show_in_website>1</show_in_website>
|
2983 |
<show_in_store>0</show_in_store>
|
2984 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2985 |
<pending_redirect_page translate="label">
|
2986 |
<label>Redirect page pending status</label>
|
2987 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -3164,6 +3272,15 @@
|
|
3164 |
<show_in_website>1</show_in_website>
|
3165 |
<show_in_store>0</show_in_store>
|
3166 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3167 |
<pending_redirect_page translate="label">
|
3168 |
<label>Redirect page pending status</label>
|
3169 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -3346,6 +3463,15 @@
|
|
3346 |
<show_in_website>1</show_in_website>
|
3347 |
<show_in_store>0</show_in_store>
|
3348 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3349 |
<pending_redirect_page translate="label">
|
3350 |
<label>Redirect page pending status</label>
|
3351 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -3510,7 +3636,16 @@
|
|
3510 |
<show_in_website>1</show_in_website>
|
3511 |
<show_in_store>0</show_in_store>
|
3512 |
</hipay_status_validate_order>
|
3513 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3514 |
<label>Redirect page pending status</label>
|
3515 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3516 |
<frontend_type>select</frontend_type>
|
@@ -3674,6 +3809,15 @@
|
|
3674 |
<show_in_website>1</show_in_website>
|
3675 |
<show_in_store>0</show_in_store>
|
3676 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3677 |
<pending_redirect_page translate="label">
|
3678 |
<label>Redirect page pending status</label>
|
3679 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -3838,6 +3982,15 @@
|
|
3838 |
<show_in_website>1</show_in_website>
|
3839 |
<show_in_store>0</show_in_store>
|
3840 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3841 |
<pending_redirect_page translate="label">
|
3842 |
<label>Redirect page pending status</label>
|
3843 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -4020,6 +4173,15 @@
|
|
4020 |
<show_in_website>1</show_in_website>
|
4021 |
<show_in_store>0</show_in_store>
|
4022 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4023 |
<pending_redirect_page translate="label">
|
4024 |
<label>Redirect page pending status</label>
|
4025 |
<comment>Page to redirect when transaction is in pending status</comment>
|
@@ -4184,6 +4346,15 @@
|
|
4184 |
<show_in_website>1</show_in_website>
|
4185 |
<show_in_store>0</show_in_store>
|
4186 |
</hipay_status_validate_order>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4187 |
<pending_redirect_page translate="label">
|
4188 |
<label>Redirect page pending status</label>
|
4189 |
<comment>Page to redirect when transaction is in pending status</comment>
|
142 |
<show_in_website>1</show_in_website>
|
143 |
<show_in_store>1</show_in_store>
|
144 |
</proxy_pass>
|
145 |
+
<fingerprint translate="label comment">
|
146 |
+
<label>Device fingerprint</label>
|
147 |
+
<frontend_type>select</frontend_type>
|
148 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
149 |
+
<sort_order>100</sort_order>
|
150 |
+
<show_in_default>1</show_in_default>
|
151 |
+
<show_in_website>1</show_in_website>
|
152 |
+
<show_in_store>1</show_in_store>
|
153 |
+
</fingerprint>
|
154 |
</fields>
|
155 |
</hipay_api>
|
156 |
<fraud_payment translate="label">
|
359 |
<show_in_website>1</show_in_website>
|
360 |
<show_in_store>0</show_in_store>
|
361 |
</hipay_status_validate_order>
|
362 |
+
<success_redirect_page translate="label">
|
363 |
+
<label>Redirect page success</label>
|
364 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
365 |
+
<frontend_type>text</frontend_type>
|
366 |
+
<sort_order>26</sort_order>
|
367 |
+
<show_in_default>1</show_in_default>
|
368 |
+
<show_in_website>1</show_in_website>
|
369 |
+
<show_in_store>0</show_in_store>
|
370 |
+
</success_redirect_page>
|
371 |
<pending_redirect_page translate="label">
|
372 |
<label>Redirect page pending status</label>
|
373 |
<comment>Page to redirect when transaction is in pending status</comment>
|
656 |
<show_in_website>1</show_in_website>
|
657 |
<show_in_store>0</show_in_store>
|
658 |
</hipay_status_validate_order>
|
659 |
+
<success_redirect_page translate="label">
|
660 |
+
<label>Redirect page success</label>
|
661 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
662 |
+
<frontend_type>text</frontend_type>
|
663 |
+
<sort_order>26</sort_order>
|
664 |
+
<show_in_default>1</show_in_default>
|
665 |
+
<show_in_website>1</show_in_website>
|
666 |
+
<show_in_store>0</show_in_store>
|
667 |
+
</success_redirect_page>
|
668 |
<pending_redirect_page translate="label">
|
669 |
<label>Redirect page pending status</label>
|
670 |
<comment>Page to redirect when transaction is in pending status</comment>
|
916 |
<show_in_website>1</show_in_website>
|
917 |
<show_in_store>0</show_in_store>
|
918 |
</hipay_status_validate_order>
|
919 |
+
<success_redirect_page translate="label">
|
920 |
+
<label>Redirect page success</label>
|
921 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
922 |
+
<frontend_type>text</frontend_type>
|
923 |
+
<sort_order>26</sort_order>
|
924 |
+
<show_in_default>1</show_in_default>
|
925 |
+
<show_in_website>1</show_in_website>
|
926 |
+
<show_in_store>0</show_in_store>
|
927 |
+
</success_redirect_page>
|
928 |
<pending_redirect_page translate="label">
|
929 |
<label>Redirect page pending status</label>
|
930 |
<comment>Page to redirect when transaction is in pending status</comment>
|
1262 |
<show_in_website>1</show_in_website>
|
1263 |
<show_in_store>0</show_in_store>
|
1264 |
</hipay_status_validate_order>
|
1265 |
+
<success_redirect_page translate="label">
|
1266 |
+
<label>Redirect page success</label>
|
1267 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
1268 |
+
<frontend_type>text</frontend_type>
|
1269 |
+
<sort_order>26</sort_order>
|
1270 |
+
<show_in_default>1</show_in_default>
|
1271 |
+
<show_in_website>1</show_in_website>
|
1272 |
+
<show_in_store>0</show_in_store>
|
1273 |
+
</success_redirect_page>
|
1274 |
<pending_redirect_page translate="label">
|
1275 |
<label>Redirect page pending status</label>
|
1276 |
<comment>Page to redirect when transaction is in pending status</comment>
|
1571 |
<show_in_website>1</show_in_website>
|
1572 |
<show_in_store>0</show_in_store>
|
1573 |
</hipay_status_validate_order>
|
1574 |
+
<success_redirect_page translate="label">
|
1575 |
+
<label>Redirect page success</label>
|
1576 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
1577 |
+
<frontend_type>text</frontend_type>
|
1578 |
+
<sort_order>26</sort_order>
|
1579 |
+
<show_in_default>1</show_in_default>
|
1580 |
+
<show_in_website>1</show_in_website>
|
1581 |
+
<show_in_store>0</show_in_store>
|
1582 |
+
</success_redirect_page>
|
1583 |
<pending_redirect_page translate="label">
|
1584 |
<label>Redirect page pending status</label>
|
1585 |
<comment>Page to redirect when transaction is in pending status</comment>
|
1762 |
<show_in_website>1</show_in_website>
|
1763 |
<show_in_store>0</show_in_store>
|
1764 |
</hipay_status_validate_order>
|
1765 |
+
<success_redirect_page translate="label">
|
1766 |
+
<label>Redirect page success</label>
|
1767 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
1768 |
+
<frontend_type>text</frontend_type>
|
1769 |
+
<sort_order>26</sort_order>
|
1770 |
+
<show_in_default>1</show_in_default>
|
1771 |
+
<show_in_website>1</show_in_website>
|
1772 |
+
<show_in_store>0</show_in_store>
|
1773 |
+
</success_redirect_page>
|
1774 |
<pending_redirect_page translate="label">
|
1775 |
<label>Redirect page pending status</label>
|
1776 |
<comment>Page to redirect when transaction is in pending status</comment>
|
1953 |
<show_in_website>1</show_in_website>
|
1954 |
<show_in_store>0</show_in_store>
|
1955 |
</hipay_status_validate_order>
|
1956 |
+
<success_redirect_page translate="label">
|
1957 |
+
<label>Redirect page success</label>
|
1958 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
1959 |
+
<frontend_type>text</frontend_type>
|
1960 |
+
<sort_order>26</sort_order>
|
1961 |
+
<show_in_default>1</show_in_default>
|
1962 |
+
<show_in_website>1</show_in_website>
|
1963 |
+
<show_in_store>0</show_in_store>
|
1964 |
+
</success_redirect_page>
|
1965 |
<pending_redirect_page translate="label">
|
1966 |
<label>Redirect page pending status</label>
|
1967 |
<comment>Page to redirect when transaction is in pending status</comment>
|
2508 |
<show_in_website>1</show_in_website>
|
2509 |
<show_in_store>0</show_in_store>
|
2510 |
</hipay_status_validate_order>
|
2511 |
+
<success_redirect_page translate="label">
|
2512 |
+
<label>Redirect page success</label>
|
2513 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
2514 |
+
<frontend_type>text</frontend_type>
|
2515 |
+
<sort_order>26</sort_order>
|
2516 |
+
<show_in_default>1</show_in_default>
|
2517 |
+
<show_in_website>1</show_in_website>
|
2518 |
+
<show_in_store>0</show_in_store>
|
2519 |
+
</success_redirect_page>
|
2520 |
<pending_redirect_page translate="label">
|
2521 |
<label>Redirect page pending status</label>
|
2522 |
<comment>Page to redirect when transaction is in pending status</comment>
|
2699 |
<show_in_website>1</show_in_website>
|
2700 |
<show_in_store>0</show_in_store>
|
2701 |
</hipay_status_validate_order>
|
2702 |
+
<success_redirect_page translate="label">
|
2703 |
+
<label>Redirect page success</label>
|
2704 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
2705 |
+
<frontend_type>text</frontend_type>
|
2706 |
+
<sort_order>26</sort_order>
|
2707 |
+
<show_in_default>1</show_in_default>
|
2708 |
+
<show_in_website>1</show_in_website>
|
2709 |
+
<show_in_store>0</show_in_store>
|
2710 |
+
</success_redirect_page>
|
2711 |
<pending_redirect_page translate="label">
|
2712 |
<label>Redirect page pending status</label>
|
2713 |
<comment>Page to redirect when transaction is in pending status</comment>
|
2890 |
<show_in_website>1</show_in_website>
|
2891 |
<show_in_store>0</show_in_store>
|
2892 |
</hipay_status_validate_order>
|
2893 |
+
<success_redirect_page translate="label">
|
2894 |
+
<label>Redirect page success</label>
|
2895 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
2896 |
+
<frontend_type>text</frontend_type>
|
2897 |
+
<sort_order>26</sort_order>
|
2898 |
+
<show_in_default>1</show_in_default>
|
2899 |
+
<show_in_website>1</show_in_website>
|
2900 |
+
<show_in_store>0</show_in_store>
|
2901 |
+
</success_redirect_page>
|
2902 |
<pending_redirect_page translate="label">
|
2903 |
<label>Redirect page pending status</label>
|
2904 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3081 |
<show_in_website>1</show_in_website>
|
3082 |
<show_in_store>0</show_in_store>
|
3083 |
</hipay_status_validate_order>
|
3084 |
+
<success_redirect_page translate="label">
|
3085 |
+
<label>Redirect page success</label>
|
3086 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3087 |
+
<frontend_type>text</frontend_type>
|
3088 |
+
<sort_order>26</sort_order>
|
3089 |
+
<show_in_default>1</show_in_default>
|
3090 |
+
<show_in_website>1</show_in_website>
|
3091 |
+
<show_in_store>0</show_in_store>
|
3092 |
+
</success_redirect_page>
|
3093 |
<pending_redirect_page translate="label">
|
3094 |
<label>Redirect page pending status</label>
|
3095 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3272 |
<show_in_website>1</show_in_website>
|
3273 |
<show_in_store>0</show_in_store>
|
3274 |
</hipay_status_validate_order>
|
3275 |
+
<success_redirect_page translate="label">
|
3276 |
+
<label>Redirect page success</label>
|
3277 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3278 |
+
<frontend_type>text</frontend_type>
|
3279 |
+
<sort_order>26</sort_order>
|
3280 |
+
<show_in_default>1</show_in_default>
|
3281 |
+
<show_in_website>1</show_in_website>
|
3282 |
+
<show_in_store>0</show_in_store>
|
3283 |
+
</success_redirect_page>
|
3284 |
<pending_redirect_page translate="label">
|
3285 |
<label>Redirect page pending status</label>
|
3286 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3463 |
<show_in_website>1</show_in_website>
|
3464 |
<show_in_store>0</show_in_store>
|
3465 |
</hipay_status_validate_order>
|
3466 |
+
<success_redirect_page translate="label">
|
3467 |
+
<label>Redirect page success</label>
|
3468 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3469 |
+
<frontend_type>text</frontend_type>
|
3470 |
+
<sort_order>26</sort_order>
|
3471 |
+
<show_in_default>1</show_in_default>
|
3472 |
+
<show_in_website>1</show_in_website>
|
3473 |
+
<show_in_store>0</show_in_store>
|
3474 |
+
</success_redirect_page>
|
3475 |
<pending_redirect_page translate="label">
|
3476 |
<label>Redirect page pending status</label>
|
3477 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3636 |
<show_in_website>1</show_in_website>
|
3637 |
<show_in_store>0</show_in_store>
|
3638 |
</hipay_status_validate_order>
|
3639 |
+
<success_redirect_page translate="label">
|
3640 |
+
<label>Redirect page success</label>
|
3641 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3642 |
+
<frontend_type>text</frontend_type>
|
3643 |
+
<sort_order>26</sort_order>
|
3644 |
+
<show_in_default>1</show_in_default>
|
3645 |
+
<show_in_website>1</show_in_website>
|
3646 |
+
<show_in_store>0</show_in_store>
|
3647 |
+
</success_redirect_page>
|
3648 |
+
<pending_redirect_page translate="label">
|
3649 |
<label>Redirect page pending status</label>
|
3650 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3651 |
<frontend_type>select</frontend_type>
|
3809 |
<show_in_website>1</show_in_website>
|
3810 |
<show_in_store>0</show_in_store>
|
3811 |
</hipay_status_validate_order>
|
3812 |
+
<success_redirect_page translate="label">
|
3813 |
+
<label>Redirect page success</label>
|
3814 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3815 |
+
<frontend_type>text</frontend_type>
|
3816 |
+
<sort_order>26</sort_order>
|
3817 |
+
<show_in_default>1</show_in_default>
|
3818 |
+
<show_in_website>1</show_in_website>
|
3819 |
+
<show_in_store>0</show_in_store>
|
3820 |
+
</success_redirect_page>
|
3821 |
<pending_redirect_page translate="label">
|
3822 |
<label>Redirect page pending status</label>
|
3823 |
<comment>Page to redirect when transaction is in pending status</comment>
|
3982 |
<show_in_website>1</show_in_website>
|
3983 |
<show_in_store>0</show_in_store>
|
3984 |
</hipay_status_validate_order>
|
3985 |
+
<success_redirect_page translate="label">
|
3986 |
+
<label>Redirect page success</label>
|
3987 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
3988 |
+
<frontend_type>text</frontend_type>
|
3989 |
+
<sort_order>26</sort_order>
|
3990 |
+
<show_in_default>1</show_in_default>
|
3991 |
+
<show_in_website>1</show_in_website>
|
3992 |
+
<show_in_store>0</show_in_store>
|
3993 |
+
</success_redirect_page>
|
3994 |
<pending_redirect_page translate="label">
|
3995 |
<label>Redirect page pending status</label>
|
3996 |
<comment>Page to redirect when transaction is in pending status</comment>
|
4173 |
<show_in_website>1</show_in_website>
|
4174 |
<show_in_store>0</show_in_store>
|
4175 |
</hipay_status_validate_order>
|
4176 |
+
<success_redirect_page translate="label">
|
4177 |
+
<label>Redirect page success</label>
|
4178 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
4179 |
+
<frontend_type>text</frontend_type>
|
4180 |
+
<sort_order>26</sort_order>
|
4181 |
+
<show_in_default>1</show_in_default>
|
4182 |
+
<show_in_website>1</show_in_website>
|
4183 |
+
<show_in_store>0</show_in_store>
|
4184 |
+
</success_redirect_page>
|
4185 |
<pending_redirect_page translate="label">
|
4186 |
<label>Redirect page pending status</label>
|
4187 |
<comment>Page to redirect when transaction is in pending status</comment>
|
4346 |
<show_in_website>1</show_in_website>
|
4347 |
<show_in_store>0</show_in_store>
|
4348 |
</hipay_status_validate_order>
|
4349 |
+
<success_redirect_page translate="label">
|
4350 |
+
<label>Redirect page success</label>
|
4351 |
+
<comment>Page to redirect when transaction is successful, leave empty for checkout/onepage/success</comment>
|
4352 |
+
<frontend_type>text</frontend_type>
|
4353 |
+
<sort_order>26</sort_order>
|
4354 |
+
<show_in_default>1</show_in_default>
|
4355 |
+
<show_in_website>1</show_in_website>
|
4356 |
+
<show_in_store>0</show_in_store>
|
4357 |
+
</success_redirect_page>
|
4358 |
<pending_redirect_page translate="label">
|
4359 |
<label>Redirect page pending status</label>
|
4360 |
<comment>Page to redirect when transaction is in pending status</comment>
|
app/design/frontend/base/default/layout/hipay.xml
CHANGED
@@ -43,6 +43,14 @@
|
|
43 |
<checkout_onepage_index>
|
44 |
<reference name="head">
|
45 |
<action method="addItem"><type>skin_js</type><name>js/hipay-fullservice-sdk.min.js</name></action>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
</reference>
|
47 |
<reference name="content" >
|
48 |
<block type="hipay/checkout_tokenjs" template="hipay/checkout/tokenjs.phtml" />
|
43 |
<checkout_onepage_index>
|
44 |
<reference name="head">
|
45 |
<action method="addItem"><type>skin_js</type><name>js/hipay-fullservice-sdk.min.js</name></action>
|
46 |
+
<action method="addItem"><type>skin_js</type><name>js/hipay-fingerprint.min.js</name></action>
|
47 |
+
<block type="core/text" name="iesnare">
|
48 |
+
<action method="setText" ifconfig="hipay/hipay_api/fingerprint">
|
49 |
+
<text>
|
50 |
+
<![CDATA[<script type="text/javascript" src="https://mpsnare.iesnare.com/snare.js"></script>]]>
|
51 |
+
</text>
|
52 |
+
</action>
|
53 |
+
</block>
|
54 |
</reference>
|
55 |
<reference name="content" >
|
56 |
<block type="hipay/checkout_tokenjs" template="hipay/checkout/tokenjs.phtml" />
|
app/design/frontend/base/default/template/hipay/checkout/tokenjs.phtml
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
/* @var $this Allopass_Hipay_Block_Checkout_Tokenjs */
|
3 |
|
1 |
+
<?php if (Mage::getStoreConfig('hipay/hipay_api/fingerprint',Mage::app()->getStore())) : ?>
|
2 |
+
<input type="hidden" id="ioBB" name="payment[device_fingerprint]" value="" />
|
3 |
+
<?php endif;?>
|
4 |
+
|
5 |
<?php
|
6 |
/* @var $this Allopass_Hipay_Block_Checkout_Tokenjs */
|
7 |
|
app/design/frontend/base/default/template/hipay/form/cc.phtml
CHANGED
@@ -23,7 +23,14 @@ $_cards = $this->getCards();
|
|
23 |
<?php endif; ?>
|
24 |
<?php if($_code != "hipay_sdd") : ?>
|
25 |
<ul class="form-list" id="card_payment_form_<?php echo $_code ?>" >
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
<li>
|
28 |
<?php if(count($this->getCcAvailableTypes()) == 1) :?>
|
29 |
<label for="<?php echo $_code ?>_cc_type" ><?php echo $this->__('Credit Card Type') ?>:
|
23 |
<?php endif; ?>
|
24 |
<?php if($_code != "hipay_sdd") : ?>
|
25 |
<ul class="form-list" id="card_payment_form_<?php echo $_code ?>" >
|
26 |
+
<?php if (Mage::getStoreConfig('hipay/hipay_api/fingerprint',Mage::app()->getStore())) : ?>
|
27 |
+
<script type="text/javascript">
|
28 |
+
$('ioBB_fingerprint').value = $('ioBB').value;
|
29 |
+
</script>
|
30 |
+
<li>
|
31 |
+
<input type="hidden" id="ioBB_fingerprint" name="payment[device_fingerprint]" value="" />
|
32 |
+
</li>
|
33 |
+
<?php endif;?>
|
34 |
<li>
|
35 |
<?php if(count($this->getCcAvailableTypes()) == 1) :?>
|
36 |
<label for="<?php echo $_code ?>_cc_type" ><?php echo $this->__('Credit Card Type') ?>:
|
app/locale/en_US/Allopass_Hipay.csv
CHANGED
@@ -158,4 +158,5 @@
|
|
158 |
"Your payment is declined. Please retry checkout with another payment card.","Your payment is declined. Please retry checkout with another payment card."
|
159 |
"An exception has occured. Please retry checkout.","An exception has occured. Please retry checkout."
|
160 |
"Transaction is in pending notification.","Transaction is in pending notification."
|
161 |
-
"Leave blank if no proxy","Leave blank if no proxy"
|
|
158 |
"Your payment is declined. Please retry checkout with another payment card.","Your payment is declined. Please retry checkout with another payment card."
|
159 |
"An exception has occured. Please retry checkout.","An exception has occured. Please retry checkout."
|
160 |
"Transaction is in pending notification.","Transaction is in pending notification."
|
161 |
+
"Leave blank if no proxy","Leave blank if no proxy"
|
162 |
+
"Device fingerprint","Device fingerprint"
|
app/locale/fr_FR/Allopass_Hipay.csv
CHANGED
@@ -161,3 +161,4 @@
|
|
161 |
"An exception has occured. Please retry checkout.","Une exception est survenue. Vous pouvez valider votre commande à nouveau."
|
162 |
"Transaction is in pending notification.","Transaction en attente de validation par notification."
|
163 |
"Leave blank if no proxy","Laisser vide si aucun proxy"
|
|
161 |
"An exception has occured. Please retry checkout.","Une exception est survenue. Vous pouvez valider votre commande à nouveau."
|
162 |
"Transaction is in pending notification.","Transaction en attente de validation par notification."
|
163 |
"Leave blank if no proxy","Laisser vide si aucun proxy"
|
164 |
+
"Device fingerprint","Device fingerprint"
|
app/locale/it_IT/Allopass_Hipay.csv
CHANGED
@@ -122,12 +122,13 @@
|
|
122 |
"HiPay Fullservice Hosted Page","HiPay Fullservice Credit Card Hosted Page"
|
123 |
"HiPay Fullservice Credit Card Split Payment","HiPay Fullservice Credit Card Split Payment"
|
124 |
"Credit Card Split Payment","Credit Card Split Payment"
|
125 |
-
"HiPay Fullservice Hosted Page Split Payment","HiPay Fullservice Hosted Page Split Payment"
|
126 |
"Notification ""Refunded"". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: ""%s"". Credit Memo has not been created. Please create offline Credit Memo.","Notification ""Refunded"". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: ""%s"". Credit Memo has not been created. Please create offline Credit Memo."
|
127 |
-
"Notification ""Capture"". Capture issued by merchant. Registered notification about captured amount of %s. Transaction ID: ""%s"". Invoice has not been created. Please create offline Invoice.","Notification ""Capture"". Capture issued by merchant. Registered notification about captured amount of %s. Transaction ID: ""%s"". Invoice has not been created. Please create offline Invoice."
|
128 |
"Accept and Capture Payment","Accept and Capture Payment"
|
129 |
"The Capture was requested.","The Capture was requested."
|
130 |
"You must reload the page to see new status.","You must reload the page to see new status."
|
131 |
"Your payment is declined. Please retry checkout with another payment card.","Your payment is declined. Please retry checkout with another payment card."
|
132 |
"An exception has occured. Please retry checkout.","An exception has occured. Please retry checkout."
|
133 |
-
"Transaction is in pending notification.","Transaction is in pending notification."
|
|
122 |
"HiPay Fullservice Hosted Page","HiPay Fullservice Credit Card Hosted Page"
|
123 |
"HiPay Fullservice Credit Card Split Payment","HiPay Fullservice Credit Card Split Payment"
|
124 |
"Credit Card Split Payment","Credit Card Split Payment"
|
125 |
+
"HiPay Fullservice Hosted Page Split Payment","HiPay Fullservice Hosted Page Split Payment"
|
126 |
"Notification ""Refunded"". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: ""%s"". Credit Memo has not been created. Please create offline Credit Memo.","Notification ""Refunded"". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: ""%s"". Credit Memo has not been created. Please create offline Credit Memo."
|
127 |
+
"Notification ""Capture"". Capture issued by merchant. Registered notification about captured amount of %s. Transaction ID: ""%s"". Invoice has not been created. Please create offline Invoice.","Notification ""Capture"". Capture issued by merchant. Registered notification about captured amount of %s. Transaction ID: ""%s"". Invoice has not been created. Please create offline Invoice."
|
128 |
"Accept and Capture Payment","Accept and Capture Payment"
|
129 |
"The Capture was requested.","The Capture was requested."
|
130 |
"You must reload the page to see new status.","You must reload the page to see new status."
|
131 |
"Your payment is declined. Please retry checkout with another payment card.","Your payment is declined. Please retry checkout with another payment card."
|
132 |
"An exception has occured. Please retry checkout.","An exception has occured. Please retry checkout."
|
133 |
+
"Transaction is in pending notification.","Transaction is in pending notification."
|
134 |
+
"Device fingerprint","Device fingerprint"
|
package.xml
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package><name>Allopass_Hipay</name><version>1.4.0</version><stability>stable</stability><license>General Public License (GPL)</license><channel>community</channel><extends></extends><summary>Official HiPay Fullservice payment extension.</summary><description>HiPay Fullservice is the first payment platform oriented towards merchants that responds to all matters related to online payment: transaction processing, risk management, relationship management with banks and acquirers, financial reconciliation or even international expansion.</description><notes></notes><authors><author><name>Kassim Belghait</name><user>Sirateck</user><email>kassim@sirateck.com</email></author></authors><date>2016-11-14</date><time>0:18:40</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="Allopass"><dir name="Hipay"><dir name="Model"><file name="Card.php" hash="5d5ed0ece4cb9ef50bf445eee6911f8a"/><file name="Config.php" hash="3a223b860e229d042632068f7246fbe8"/><file name="Observer.php" hash="a979f5830e67448dcb938bbea24727f5"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="0a0298357ccb4ad750a0d90a13ab0d44"/><dir name="Api"><file name="Request.php" hash="1dd3bf51cd1119b4de38322a17e9381e"/><dir name="Response"><file name="Abstract.php" hash="a430ca978e61796696ae4ead61efdb60"/><file name="Error.php" hash="57386fde5e5993c1126418025093a58a"/><file name="Gateway.php" hash="49b0e43a55e223df601884cfd9a0d2c5"/><file name="Notification.php" hash="0f7373ec3435b477424352c058f42255"/><file name="Vault.php" hash="47b962a59c150ffd653ba4054bc053d0"/></dir><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="cebf9e03d310e65f23a2a4ddc980e26f"/><file name="Stream.php" hash="5a110dd1f33ee4c8319cec396fc4fa40"/></dir></dir></dir></dir><dir name="Rule"><file name="Config.php" hash="4034bf549bc274c836930a43d0ef8646"/><dir name="Condition"><file name="Address.php" hash="4180131479d72272c7b2c67534341dbc"/><file name="Combine.php" hash="e57da0bfd13c85721ef06d9f5c1d5a45"/><file name="Customer.php" hash="b847ff261e77565af4f64761d378de59"/><file name="Product.php" hash="5186cb9be313c7a772a11613ff4d1406"/><dir name="Product"><file name="Combine.php" hash="b99adc27124c3c6f56d04f0bcb5a42be"/><file name="Found.php" hash="bc266762458faaba326b7d7245b688a8"/><file name="Subselect.php" hash="5c0d482cddd69d82350bc5fec15c40b7"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="CcTypes.php" hash="916ab83c9e5e1ee18d488f42a090c524"/></dir></dir></dir><dir name="Method"><file name="Abstract.php" hash="cbf2ea7f371cb432557052c9b2bc9dd5"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="4e4353ecc9ee30e11a6ed5605135d7b7"/><file name="CcXtimes.php" hash="8d4f2f77f2e0377600cff2f93a3f0e66"/><file name="Dexia.php" hash="a385bcf6b0826917fecec6917a8230f9"/><file name="Giropay.php" hash="85d350f66fa3b0b162fe542165bce4cc"/><file name="Hosted.php" hash="5bd41f736ddc997d5620932838b38849"/><file name="HostedXtimes.php" hash="d81e2c0746a7d1437fde693fba219e1d"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="PaypalApi.php" hash="65d6c43ad78671a49d162acb381a1079"/><file name="PostfinancecardApi.php" hash="3563685f62cfcb31ce494cab36869a85"/><file name="PostfinanceefinanceApi.php" hash="57c81f85ee51e63cdf55564492aa8ef1"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="ff20c8621b68fea2b9d96cf131d320e7"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><file name="Sdd.php" hash="be79ca9e43d642d61cd4ceddd50e193a"/><file name="Sisal.php" hash="d6f97559eb485a8d6d66e5a7abc0e077"/><file name="SisalApi.php" hash="0c63400b243855790f987e8dd2b85402"/><file name="Sofort.php" hash="fa6cb68aff431c2dc91e7b3c62a29aaa"/><file name="SofortApi.php" hash="51111ee0872f93829833a01e36b51abf"/><file name="Webmoney.php" hash="5705818f9288d1c0acc49882c42c195f"/><file name="WebmoneyApi.php" hash="d24a31e40cba1af6e4e8fd20f3ac7dd6"/><file name="Yandex.php" hash="1edad262a001d96ede94c9406e680f46"/><file name="YandexApi.php" hash="831b63ffbe3b859cff790fb34ea63663"/></dir><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="CcType.php" hash="088d0e8c51f594092a0c6cd0f9bf6545"/><file name="CcTypeHosted.php" hash="f119a5901ac3a9056df56f9cb35b5e02"/><file name="PaymentAction.php" hash="10638f85360e7693819cbbfd156bed72"/><file name="PaymentProfile.php" hash="9e8c5e4bea5c50b1a63c71cfd9416ff1"/><file name="Pendingredirect.php" hash="f0c3125415535637c159c97fc2627740"/><file name="Template.php" hash="2aa16f597398af7ec73e4c7b0f126fd4"/><dir name="Order"><file name="HipayStatusValidate.php" hash="63414f71ce035909310f27842bc1b511"/><file name="Status.php" hash="395ac5e1567ee6095769abc6ce64fec0"/><dir name="Status"><file name="Accepted.php" hash="20cfc4b9ec26a2b458f8ffc43f6195aa"/><file name="Canceled.php" hash="49a6f0b6033e698fbefe01967b81b21d"/><file name="New.php" hash="226d2f1a5d441dbd6404ea342555e893"/><file name="Refused.php" hash="dbf1ed822488bb0d03f71461c872154d"/></dir></dir></dir><dir name="Resource"><file name="Card.php" hash="5550c1486504972e6423fce49e3e8d93"/><file name="PaymentProfile.php" hash="fb397fd11c35b19986d4688d207b55cb"/><file name="Rule.php" hash="115bccaa9e4d37ed03e179147ab3788d"/><file name="SplitPayment.php" hash="133f41e753dfbb150cb61c6edf5745c9"/><dir name="PaymentProfile"><file name="Collection.php" hash="b1d5980904dbc3669cc6ee904c7620a3"/></dir><dir name="Rule"><file name="Collection.php" hash="b4dd0d851cda670c6aafad0cf588b106"/></dir><dir name="Card"><file name="Collection.php" hash="4a9ca5d5124dcaa5fe9a01c7e864bf6e"/></dir><dir name="SplitPayment"><file name="Collection.php" hash="c44859bdf1e4de9551bc31cd57e7ef88"/></dir></dir><dir name="Log"><file name="Adapter.php" hash="9d5533d5d3622c72cbc84abfd4e3116c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="dd4791caea9b470cc288d852afaf9a6b"/></dir><dir name="Controller"><file name="Payment.php" hash="90281408e821b6f9de9d515e625d87ed"/></dir><dir name="controllers"><file name="CardController.php" hash="ebbbcf9c15ee39165d866991a6b348f3"/><file name="CbcController.php" hash="11a793cfef50322482b4d1e44f7fb427"/><file name="CcController.php" hash="2e45012894cac90a24c2017a427258b5"/><file name="CcxtimesController.php" hash="0e87e2d91b4b1214d0e37e432429c832"/><file name="CheckoutController.php" hash="ba9392dc51da0a4cfb5941b60c2473bc"/><file name="DexiaController.php" hash="abafa7205262125aef603f0d51445ebd"/><file name="GiropayController.php" hash="93ebe6d63e60627ee86815a7cc23006b"/><file name="HostedController.php" hash="f0bd2d41f36b0453e42063531b88d4a3"/><file name="HostedxtimesController.php" hash="8d97dcea1d97cc2711c3150923b8ecee"/><file name="IdealController.php" hash="49bc5c1a52c98cef934b45ce27da574a"/><file name="IngController.php" hash="43b8ae9e752d5268a51a164abc98df9f"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="NotifyController.php" hash="df46f9938f5f4d87a4d654e7710a06ab"/><file name="PaypalapiController.php" hash="6163a491b9e7b43593983da5735d29e6"/><file name="PostfinancecardapiController.php" hash="6ec048a2c6d3ac0637a99a34756a9720"/><file name="PostfinanceefinanceapiController.php" hash="b7337fa81c804c62c04a059a305c3152"/><file name="Przelewy24Controller.php" hash="d6923f98e8a53d8b8becd1d5ef99e0d0"/><file name="Przelewy24apiController.php" hash="bc488ef00a5a063d05aa12c545d8e8fe"/><file name="QiwiController.php" hash="6b3e05b2910dae0b919c50cb06363c57"/><file name="SddController.php" hash="8b1d24a040c7767b7889df51a10eac75"/><file name="SisalController.php" hash="32bdb5bf400fa1c6ee5bfb2c79b889f9"/><file name="SisalapiController.php" hash="23a04c3fe9470ef98ce84fcf5c1dd9fe"/><file name="SofortController.php" hash="5479f2e8c3043ad0dd51167bd9bcf623"/><file name="SofortapiController.php" hash="74aa59c7c7795f9f61c6b4bfeae193e3"/><file name="WebmoneyController.php" hash="b52fdbc662da23f839750c9919aad809"/><file name="WebmoneyapiController.php" hash="f34dc66aca5218930be548c88e7e9004"/><file name="YandexController.php" hash="629ec07271f8a11d7c88824154b637f0"/><file name="YandexapiController.php" hash="9741c2a9427866895907629af1e9ed98"/><dir name="Adminhtml"><file name="CardController.php" hash="1e5cba078cef7987df9314c467dd640e"/><file name="PaymentController.php" hash="06e07d68cb27e669fb6105bc78db2b9c"/><file name="PaymentProfileController.php" hash="887808a799db4e95d76bb9a014f80f29"/><file name="RuleController.php" hash="55291c15c7de616237b14dfad1bc5e80"/><file name="SplitPaymentController.php" hash="642960a1002c316efc04d3af4e6d2a57"/><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="f0f046bae0aacb974afbb62f35e5e062"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="b5afb91fea21f25fd01e75a80bd661e7"/><file name="system.xml" hash="b7558627b8f6fc727b77cde9a2521946"/></dir><dir name="sql"><dir name="allopass_hipay_setup"><file name="mysql4-install-0.1.0.php" hash="820dc1e282c2c88deeb167d61918088b"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="af83b289e454c2d2ab91d2a6800d079a"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="1aa9291c5ac40a03ccbf3bcb6ce0c47e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="17ddfaae63edc655fec04dcd5f96136a"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="5dfaafe02016ff47dfd80c89effaaabb"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="abec801a24e8515ad80dfe3563fd1492"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="c4e2c53d2b62d8829731449b881dd171"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="b3080317af653951030d7d2a1b116e75"/><file name="mysql4-upgrade-1.0.9-1.1.0.php" hash="81abd6cd95c846d67abc78d2a96a0f15"/></dir></dir><dir name="Block"><file name="Card.php" hash="8e9a964e1b44c4664b78a2f9a5f7b1ae"/><dir name="Form"><file name="Abstract.php" hash="776dfa8030972f74a305d270aac0ae19"/><file name="Cc.php" hash="64b899c98ee3edd77c5262eccd0bdfd1"/><file name="Hosted.php" hash="1cbc3fe21de97bba192cd5e651dfaeae"/></dir><dir name="Checkout"><file name="Pending.php" hash="48112f7e2fdcc79ee9431cf5350e223f"/><file name="Tokenjs.php" hash="82adcf1d7ba1cd7c5fd99e63ff193c9a"/></dir><dir name="Card"><file name="Edit.php" hash="530cd326480c2d074dfdc59a578dd1db"/></dir><dir name="Adminhtml"><file name="PaymentProfile.php" hash="b02de6e3cf69724d7f901f9b4f42e333"/><file name="SplitPayment.php" hash="1f5b84881308b79f0ada533862568e28"/><dir name="PaymentProfile"><file name="Edit.php" hash="ef7b6945e91ef450a8a6a4ef0dbfef97"/><file name="Grid.php" hash="f8ac0daa082f3c6d2be6289e935dbd31"/><dir name="Edit"><file name="Form.php" hash="e17cc9773f3d4b1ef0981b513c659841"/></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="652fce24783da2b3f2d2e3ffb5345bc8"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="3dsRule.php" hash="c18bd31b872b7318e574676571c16491"/><file name="Allowsplitpayment.php" hash="0c6e4378ba1537584417870c9eb2c59c"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/></dir></dir></dir></dir><dir name="Card"><file name="Edit.php" hash="5f1896bb299030ade2090e2743ce2f95"/><dir name="Edit"><file name="Form.php" hash="addfd57cd54aff9ce5b57759105ad221"/></dir></dir><dir name="SplitPayment"><file name="Edit.php" hash="2aa5f311f6ba084420a6adc0fa518cc5"/><file name="Grid.php" hash="42031ca1b4a9a399e6e148378880ad82"/><dir name="Edit"><file name="Form.php" hash="06f8e4c7714d8e362c00ac8a4d88e292"/></dir></dir></dir><dir name="Info"><file name="Cc.php" hash="d4ed3d7c3bbc82c1b3b13e19abdd4ddc"/><file name="Hosted.php" hash="40355126a48bd854c21bb0201840229c"/></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="Allopass_Hipay.csv" hash="658b5602bbd3c53101cd7be920f08e6a"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="099f8760397b9c9ccaf24bee1bdfdadc"/><file name="hipay_fraud_payment_accept.html" hash="e577cb25ea4a4ad2cd764545de86a794"/><file name="hipay_fraud_payment_deny.html" hash="9011d7215936745d781f922015bc5b9a"/></dir></dir></dir><dir name="fr_FR"><file name="Allopass_Hipay.csv" hash="fd8aca9506342751295927f6405ed8a2"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="3e2da47265d7e68bbb3db9f55cc4498f"/><file name="hipay_fraud_payment_accept.html" hash="5f2538c69555f414f7c8e8767ac505f7"/><file name="hipay_fraud_payment_deny.html" hash="035b655eac80930d6ebe4e5bf2c3e50c"/></dir></dir></dir><dir name="it_IT"><file name="Allopass_Hipay.csv" hash="e29ba791d6de73cd27f656cdad235336"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="099f8760397b9c9ccaf24bee1bdfdadc"/><file name="hipay_fraud_payment_accept.html" hash="e577cb25ea4a4ad2cd764545de86a794"/><file name="hipay_fraud_payment_deny.html" hash="9011d7215936745d781f922015bc5b9a"/></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Allopass_Hipay.xml" hash="fd0ac2e9080c0a432a3a7b6d969171c0"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="hipay"><dir name="checkout"><file name="pending.phtml" hash="34e6bba88ea5fdd6b4ea71595de638d6"/><file name="tokenjs.phtml" hash="78c71064ec185b8600a7f6dfefc89626"/></dir><dir name="card"><file name="account.phtml" hash="8e4ec26a1ccfb13bf8c4706d74990aad"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="form"><file name="cc.phtml" hash="2890519133c7b6006a3351bec611cb2a"/><file name="hosted.phtml" hash="f590c6b76dcff32fa1cffd81d451c4e9"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir></dir></dir><dir name="layout"><file name="hipay.xml" hash="7918de9ec4fb3316dac9c1a169b13fb5"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="hipay"><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir><dir name="form"><file name="cc.phtml" hash="548c5d5ee72f1e036e734b83d24d3a02"/><file name="hosted.phtml" hash="5be27a6e29c212d8ab38a5b32ead66c8"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir></dir></dir><dir name="layout"><file name="hipay.xml" hash="478e41f2896fd595f4d264149059c737"/></dir></dir></dir></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><file name="hipay-fullservice-sdk.min.js" hash="857b18224c0b6cc62448c12c5d959aa3"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="hipay"><dir name="js"><file name="rules.js" hash="c9f87ded0b3a8505e78ab2584c2f098f"/></dir></dir></dir></dir></dir></dir></target></contents></package>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<package><name>Allopass_Hipay</name><version>1.5.0</version><stability>stable</stability><license>General Public License (GPL)</license><channel>community</channel><extends></extends><summary>Official HiPay Fullservice payment extension.</summary><description>HiPay Fullservice is the first payment platform oriented towards merchants that responds to all matters related to online payment: transaction processing, risk management, relationship management with banks and acquirers, financial reconciliation or even international expansion.</description><notes></notes><authors><author><name>Kassim Belghait</name><user>Sirateck</user><email>kassim@sirateck.com</email></author></authors><date>2016-12-12</date><time>1:39:55</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="Allopass"><dir name="Hipay"><dir name="Model"><file name="Card.php" hash="5d5ed0ece4cb9ef50bf445eee6911f8a"/><file name="Config.php" hash="3a223b860e229d042632068f7246fbe8"/><file name="Observer.php" hash="a979f5830e67448dcb938bbea24727f5"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="0a0298357ccb4ad750a0d90a13ab0d44"/><dir name="Api"><file name="Request.php" hash="1dd3bf51cd1119b4de38322a17e9381e"/><dir name="Response"><file name="Abstract.php" hash="a430ca978e61796696ae4ead61efdb60"/><file name="Error.php" hash="57386fde5e5993c1126418025093a58a"/><file name="Gateway.php" hash="49b0e43a55e223df601884cfd9a0d2c5"/><file name="Notification.php" hash="0f7373ec3435b477424352c058f42255"/><file name="Vault.php" hash="47b962a59c150ffd653ba4054bc053d0"/></dir><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="cebf9e03d310e65f23a2a4ddc980e26f"/><file name="Stream.php" hash="5a110dd1f33ee4c8319cec396fc4fa40"/></dir></dir></dir></dir><dir name="Rule"><file name="Config.php" hash="4034bf549bc274c836930a43d0ef8646"/><dir name="Condition"><file name="Address.php" hash="4180131479d72272c7b2c67534341dbc"/><file name="Combine.php" hash="e57da0bfd13c85721ef06d9f5c1d5a45"/><file name="Customer.php" hash="b847ff261e77565af4f64761d378de59"/><file name="Product.php" hash="5186cb9be313c7a772a11613ff4d1406"/><dir name="Product"><file name="Combine.php" hash="b99adc27124c3c6f56d04f0bcb5a42be"/><file name="Found.php" hash="bc266762458faaba326b7d7245b688a8"/><file name="Subselect.php" hash="5c0d482cddd69d82350bc5fec15c40b7"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="CcTypes.php" hash="916ab83c9e5e1ee18d488f42a090c524"/></dir></dir></dir><dir name="Method"><file name="Abstract.php" hash="3c8cc31c4b7db99ead34745ab9af245d"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="4e4353ecc9ee30e11a6ed5605135d7b7"/><file name="CcXtimes.php" hash="8d4f2f77f2e0377600cff2f93a3f0e66"/><file name="Dexia.php" hash="a385bcf6b0826917fecec6917a8230f9"/><file name="Giropay.php" hash="85d350f66fa3b0b162fe542165bce4cc"/><file name="Hosted.php" hash="5bd41f736ddc997d5620932838b38849"/><file name="HostedXtimes.php" hash="d81e2c0746a7d1437fde693fba219e1d"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="PaypalApi.php" hash="65d6c43ad78671a49d162acb381a1079"/><file name="PostfinancecardApi.php" hash="3563685f62cfcb31ce494cab36869a85"/><file name="PostfinanceefinanceApi.php" hash="57c81f85ee51e63cdf55564492aa8ef1"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="ff20c8621b68fea2b9d96cf131d320e7"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><file name="Sdd.php" hash="be79ca9e43d642d61cd4ceddd50e193a"/><file name="Sisal.php" hash="d6f97559eb485a8d6d66e5a7abc0e077"/><file name="SisalApi.php" hash="0c63400b243855790f987e8dd2b85402"/><file name="Sofort.php" hash="fa6cb68aff431c2dc91e7b3c62a29aaa"/><file name="SofortApi.php" hash="51111ee0872f93829833a01e36b51abf"/><file name="Webmoney.php" hash="5705818f9288d1c0acc49882c42c195f"/><file name="WebmoneyApi.php" hash="d24a31e40cba1af6e4e8fd20f3ac7dd6"/><file name="Yandex.php" hash="1edad262a001d96ede94c9406e680f46"/><file name="YandexApi.php" hash="831b63ffbe3b859cff790fb34ea63663"/></dir><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="CcType.php" hash="088d0e8c51f594092a0c6cd0f9bf6545"/><file name="CcTypeHosted.php" hash="f119a5901ac3a9056df56f9cb35b5e02"/><file name="PaymentAction.php" hash="10638f85360e7693819cbbfd156bed72"/><file name="PaymentProfile.php" hash="9e8c5e4bea5c50b1a63c71cfd9416ff1"/><file name="Pendingredirect.php" hash="f0c3125415535637c159c97fc2627740"/><file name="Template.php" hash="2aa16f597398af7ec73e4c7b0f126fd4"/><dir name="Order"><file name="HipayStatusValidate.php" hash="63414f71ce035909310f27842bc1b511"/><file name="Status.php" hash="395ac5e1567ee6095769abc6ce64fec0"/><dir name="Status"><file name="Accepted.php" hash="20cfc4b9ec26a2b458f8ffc43f6195aa"/><file name="Canceled.php" hash="49a6f0b6033e698fbefe01967b81b21d"/><file name="New.php" hash="226d2f1a5d441dbd6404ea342555e893"/><file name="Refused.php" hash="dbf1ed822488bb0d03f71461c872154d"/></dir></dir></dir><dir name="Resource"><file name="Card.php" hash="5550c1486504972e6423fce49e3e8d93"/><file name="PaymentProfile.php" hash="fb397fd11c35b19986d4688d207b55cb"/><file name="Rule.php" hash="115bccaa9e4d37ed03e179147ab3788d"/><file name="SplitPayment.php" hash="133f41e753dfbb150cb61c6edf5745c9"/><dir name="PaymentProfile"><file name="Collection.php" hash="b1d5980904dbc3669cc6ee904c7620a3"/></dir><dir name="Rule"><file name="Collection.php" hash="b4dd0d851cda670c6aafad0cf588b106"/></dir><dir name="Card"><file name="Collection.php" hash="4a9ca5d5124dcaa5fe9a01c7e864bf6e"/></dir><dir name="SplitPayment"><file name="Collection.php" hash="c44859bdf1e4de9551bc31cd57e7ef88"/></dir></dir><dir name="Log"><file name="Adapter.php" hash="9d5533d5d3622c72cbc84abfd4e3116c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="871e2a061b89da6de0cee906a27a2cd8"/></dir><dir name="Controller"><file name="Payment.php" hash="a0a494f649478000e7c8a37c1a070f3e"/></dir><dir name="controllers"><file name="CardController.php" hash="ebbbcf9c15ee39165d866991a6b348f3"/><file name="CbcController.php" hash="11a793cfef50322482b4d1e44f7fb427"/><file name="CcController.php" hash="2e45012894cac90a24c2017a427258b5"/><file name="CcxtimesController.php" hash="0e87e2d91b4b1214d0e37e432429c832"/><file name="CheckoutController.php" hash="ba9392dc51da0a4cfb5941b60c2473bc"/><file name="DexiaController.php" hash="abafa7205262125aef603f0d51445ebd"/><file name="GiropayController.php" hash="93ebe6d63e60627ee86815a7cc23006b"/><file name="HostedController.php" hash="f0bd2d41f36b0453e42063531b88d4a3"/><file name="HostedxtimesController.php" hash="8d97dcea1d97cc2711c3150923b8ecee"/><file name="IdealController.php" hash="49bc5c1a52c98cef934b45ce27da574a"/><file name="IngController.php" hash="43b8ae9e752d5268a51a164abc98df9f"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="NotifyController.php" hash="df46f9938f5f4d87a4d654e7710a06ab"/><file name="PaypalapiController.php" hash="6163a491b9e7b43593983da5735d29e6"/><file name="PostfinancecardapiController.php" hash="6ec048a2c6d3ac0637a99a34756a9720"/><file name="PostfinanceefinanceapiController.php" hash="b7337fa81c804c62c04a059a305c3152"/><file name="Przelewy24Controller.php" hash="d6923f98e8a53d8b8becd1d5ef99e0d0"/><file name="Przelewy24apiController.php" hash="bc488ef00a5a063d05aa12c545d8e8fe"/><file name="QiwiController.php" hash="6b3e05b2910dae0b919c50cb06363c57"/><file name="SddController.php" hash="8b1d24a040c7767b7889df51a10eac75"/><file name="SisalController.php" hash="32bdb5bf400fa1c6ee5bfb2c79b889f9"/><file name="SisalapiController.php" hash="23a04c3fe9470ef98ce84fcf5c1dd9fe"/><file name="SofortController.php" hash="5479f2e8c3043ad0dd51167bd9bcf623"/><file name="SofortapiController.php" hash="74aa59c7c7795f9f61c6b4bfeae193e3"/><file name="WebmoneyController.php" hash="b52fdbc662da23f839750c9919aad809"/><file name="WebmoneyapiController.php" hash="f34dc66aca5218930be548c88e7e9004"/><file name="YandexController.php" hash="629ec07271f8a11d7c88824154b637f0"/><file name="YandexapiController.php" hash="9741c2a9427866895907629af1e9ed98"/><dir name="Adminhtml"><file name="CardController.php" hash="1e5cba078cef7987df9314c467dd640e"/><file name="PaymentController.php" hash="06e07d68cb27e669fb6105bc78db2b9c"/><file name="PaymentProfileController.php" hash="887808a799db4e95d76bb9a014f80f29"/><file name="RuleController.php" hash="55291c15c7de616237b14dfad1bc5e80"/><file name="SplitPaymentController.php" hash="642960a1002c316efc04d3af4e6d2a57"/><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="f0f046bae0aacb974afbb62f35e5e062"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="de67568e917cf21cd085434a19aa4f99"/><file name="system.xml" hash="c9137f16bce0c54d3d9c60545d347424"/></dir><dir name="sql"><dir name="allopass_hipay_setup"><file name="mysql4-install-0.1.0.php" hash="820dc1e282c2c88deeb167d61918088b"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="af83b289e454c2d2ab91d2a6800d079a"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="1aa9291c5ac40a03ccbf3bcb6ce0c47e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="17ddfaae63edc655fec04dcd5f96136a"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="5dfaafe02016ff47dfd80c89effaaabb"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="abec801a24e8515ad80dfe3563fd1492"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="c4e2c53d2b62d8829731449b881dd171"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="b3080317af653951030d7d2a1b116e75"/><file name="mysql4-upgrade-1.0.9-1.1.0.php" hash="81abd6cd95c846d67abc78d2a96a0f15"/></dir></dir><dir name="Block"><file name="Card.php" hash="8e9a964e1b44c4664b78a2f9a5f7b1ae"/><dir name="Form"><file name="Abstract.php" hash="776dfa8030972f74a305d270aac0ae19"/><file name="Cc.php" hash="64b899c98ee3edd77c5262eccd0bdfd1"/><file name="Hosted.php" hash="1cbc3fe21de97bba192cd5e651dfaeae"/></dir><dir name="Checkout"><file name="Pending.php" hash="48112f7e2fdcc79ee9431cf5350e223f"/><file name="Tokenjs.php" hash="82adcf1d7ba1cd7c5fd99e63ff193c9a"/></dir><dir name="Card"><file name="Edit.php" hash="530cd326480c2d074dfdc59a578dd1db"/></dir><dir name="Adminhtml"><file name="PaymentProfile.php" hash="b02de6e3cf69724d7f901f9b4f42e333"/><file name="SplitPayment.php" hash="1f5b84881308b79f0ada533862568e28"/><dir name="PaymentProfile"><file name="Edit.php" hash="ef7b6945e91ef450a8a6a4ef0dbfef97"/><file name="Grid.php" hash="f8ac0daa082f3c6d2be6289e935dbd31"/><dir name="Edit"><file name="Form.php" hash="e17cc9773f3d4b1ef0981b513c659841"/></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="652fce24783da2b3f2d2e3ffb5345bc8"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="3dsRule.php" hash="c18bd31b872b7318e574676571c16491"/><file name="Allowsplitpayment.php" hash="0c6e4378ba1537584417870c9eb2c59c"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/></dir></dir></dir></dir><dir name="Card"><file name="Edit.php" hash="5f1896bb299030ade2090e2743ce2f95"/><dir name="Edit"><file name="Form.php" hash="addfd57cd54aff9ce5b57759105ad221"/></dir></dir><dir name="SplitPayment"><file name="Edit.php" hash="2aa5f311f6ba084420a6adc0fa518cc5"/><file name="Grid.php" hash="42031ca1b4a9a399e6e148378880ad82"/><dir name="Edit"><file name="Form.php" hash="06f8e4c7714d8e362c00ac8a4d88e292"/></dir></dir></dir><dir name="Info"><file name="Cc.php" hash="d4ed3d7c3bbc82c1b3b13e19abdd4ddc"/><file name="Hosted.php" hash="40355126a48bd854c21bb0201840229c"/></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="Allopass_Hipay.csv" hash="c8f8e25ef5fada285fe3919a841870a2"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="099f8760397b9c9ccaf24bee1bdfdadc"/><file name="hipay_fraud_payment_accept.html" hash="e577cb25ea4a4ad2cd764545de86a794"/><file name="hipay_fraud_payment_deny.html" hash="9011d7215936745d781f922015bc5b9a"/></dir></dir></dir><dir name="fr_FR"><file name="Allopass_Hipay.csv" hash="236d2c510e2e9261a8c4c572b25fbe38"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="3e2da47265d7e68bbb3db9f55cc4498f"/><file name="hipay_fraud_payment_accept.html" hash="5f2538c69555f414f7c8e8767ac505f7"/><file name="hipay_fraud_payment_deny.html" hash="035b655eac80930d6ebe4e5bf2c3e50c"/></dir></dir></dir><dir name="it_IT"><file name="Allopass_Hipay.csv" hash="67aae5d36bf9e77f4d1b315b6efcf39e"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="099f8760397b9c9ccaf24bee1bdfdadc"/><file name="hipay_fraud_payment_accept.html" hash="e577cb25ea4a4ad2cd764545de86a794"/><file name="hipay_fraud_payment_deny.html" hash="9011d7215936745d781f922015bc5b9a"/></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Allopass_Hipay.xml" hash="fd0ac2e9080c0a432a3a7b6d969171c0"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="hipay"><dir name="checkout"><file name="pending.phtml" hash="34e6bba88ea5fdd6b4ea71595de638d6"/><file name="tokenjs.phtml" hash="8465c42826cc7c5f58f3983c86d55537"/></dir><dir name="card"><file name="account.phtml" hash="8e4ec26a1ccfb13bf8c4706d74990aad"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="form"><file name="cc.phtml" hash="941496593301d716d9650a67fe5d68bf"/><file name="hosted.phtml" hash="f590c6b76dcff32fa1cffd81d451c4e9"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir></dir></dir><dir name="layout"><file name="hipay.xml" hash="c72c3f02f2568e86faacfc8591e7aef1"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="hipay"><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir><dir name="form"><file name="cc.phtml" hash="548c5d5ee72f1e036e734b83d24d3a02"/><file name="hosted.phtml" hash="5be27a6e29c212d8ab38a5b32ead66c8"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir></dir></dir><dir name="layout"><file name="hipay.xml" hash="478e41f2896fd595f4d264149059c737"/></dir></dir></dir></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><file name="hipay-fingerprint.min.js" hash="d0ec45711a36210d86360cb670a70014"/><file name="hipay-fullservice-sdk.min.js" hash="857b18224c0b6cc62448c12c5d959aa3"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="hipay"><dir name="js"><file name="rules.js" hash="c9f87ded0b3a8505e78ab2584c2f098f"/></dir></dir></dir></dir></dir></dir></target></contents></package>
|
skin/frontend/base/default/js/hipay-fingerprint.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
var io_operation="ioBegin",io_bbout_element_id="ioBB",io_install_stm=!1,io_exclude_stm=12,io_install_flash=!1,io_install_rip=!0,io_flash_needs_update_handler="",io_install_flash_error_handler="";
|
skin/frontend/base/default/js/hipay-fullservice-sdk.min.js
CHANGED
File without changes
|