Version Notes
Download this release
Release Info
Developer | Kassim Belghait |
Extension | Allopass_Hipay |
Version | 1.3.8 |
Comparing to | |
See all releases |
Code changes from version 1.3.6 to 1.3.8
- app/code/community/Allopass/Hipay/Model/Api/Request.php +25 -3
- app/code/community/Allopass/Hipay/Model/Method/CcXtimes.php +23 -0
- app/code/community/Allopass/Hipay/Model/Method/Giropay.php +76 -0
- app/code/community/Allopass/Hipay/Model/Method/HostedXtimes.php +23 -0
- app/code/community/Allopass/Hipay/Model/Method/PostfinancecardApi.php +88 -0
- app/code/community/Allopass/Hipay/Model/Method/PostfinanceefinanceApi.php +88 -0
- app/code/community/Allopass/Hipay/Model/Observer.php +3 -3
- app/code/community/Allopass/Hipay/controllers/PostfinancecardapiController.php +8 -0
- app/code/community/Allopass/Hipay/controllers/PostfinanceefinanceapiController.php +8 -0
- app/code/community/Allopass/Hipay/etc/config.xml +55 -1
- app/code/community/Allopass/Hipay/etc/system.xml +365 -0
- app/locale/en_US/Allopass_Hipay.csv +2 -1
- app/locale/fr_FR/Allopass_Hipay.csv +1 -0
- package.xml +1 -1
app/code/community/Allopass/Hipay/Model/Api/Request.php
CHANGED
@@ -98,9 +98,29 @@ class Allopass_Hipay_Model_Api_Request
|
|
98 |
CURLOPT_HEADER=>false,
|
99 |
CURLOPT_RETURNTRANSFER=>true),
|
100 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
try {
|
102 |
-
|
103 |
-
//innitialize http client and adapter curl
|
104 |
$adapter = Mage::getSingleton('hipay/api_http_client_adapter_curl');
|
105 |
|
106 |
$this->_client = new Zend_Http_Client();
|
@@ -217,7 +237,9 @@ class Allopass_Hipay_Model_Api_Request
|
|
217 |
$uri = $this->getGatewayApiEndpoint($storeId) . $action;
|
218 |
|
219 |
/* @var $response Allopass_Hipay_Model_Api_Response_Gateway */
|
220 |
-
$response = Mage::
|
|
|
|
|
221 |
return $response;
|
222 |
}
|
223 |
|
98 |
CURLOPT_HEADER=>false,
|
99 |
CURLOPT_RETURNTRANSFER=>true),
|
100 |
);
|
101 |
+
|
102 |
+
// ----------------------------------------------------------------------
|
103 |
+
// init proxy if not empty
|
104 |
+
// ----------------------------------------------------------------------
|
105 |
+
$proxy_host = Mage::getStoreConfig('hipay/hipay_api/proxy_host',Mage::app()->getStore());
|
106 |
+
// if host not empty, we use the proxy parameters
|
107 |
+
if(!empty($proxy_host)){
|
108 |
+
$proxy_user = Mage::getStoreConfig('hipay/hipay_api/proxy_user',Mage::app()->getStore());
|
109 |
+
$proxy_pass = Mage::getStoreConfig('hipay/hipay_api/proxy_pass',Mage::app()->getStore());
|
110 |
+
$proxy_port = Mage::getStoreConfig('hipay/hipay_api/proxy_port',Mage::app()->getStore());
|
111 |
+
// init config for cURL
|
112 |
+
$config['curloptions'][CURLOPT_PROXYUSERPWD] = true;
|
113 |
+
$config['curloptions'][CURLOPT_PROXY] = $proxy_host.':'.$proxy_port;
|
114 |
+
// if user and password not empty, we use the credentials
|
115 |
+
if(!empty($proxy_user) && !empty($proxy_pass)){
|
116 |
+
$config['curloptions'][CURLOPT_PROXYUSERPWD] = $proxy_user.':'.$proxy_pass;
|
117 |
+
}
|
118 |
+
}
|
119 |
+
Mage::log($config, null, 'curl.log');
|
120 |
+
// ----------------------------------------------------------------------
|
121 |
+
|
122 |
try {
|
123 |
+
//innitialize http client and adapter curl
|
|
|
124 |
$adapter = Mage::getSingleton('hipay/api_http_client_adapter_curl');
|
125 |
|
126 |
$this->_client = new Zend_Http_Client();
|
237 |
$uri = $this->getGatewayApiEndpoint($storeId) . $action;
|
238 |
|
239 |
/* @var $response Allopass_Hipay_Model_Api_Response_Gateway */
|
240 |
+
$response = Mage::getModel('hipay/api_response_gateway',$this->_request($uri,$params,$this->getMethodHttp($action),$storeId));
|
241 |
+
//Mage::log($response, null, 'log-hipay-gatewayRequest.log', true);
|
242 |
+
|
243 |
return $response;
|
244 |
}
|
245 |
|
app/code/community/Allopass/Hipay/Model/Method/CcXtimes.php
CHANGED
@@ -4,5 +4,28 @@ class Allopass_Hipay_Model_Method_CcXtimes extends Allopass_Hipay_Model_Method_C
|
|
4 |
protected $_canUseInternal = false;
|
5 |
|
6 |
protected $_code = 'hipay_ccxtimes';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
}
|
4 |
protected $_canUseInternal = false;
|
5 |
|
6 |
protected $_code = 'hipay_ccxtimes';
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Check whether payment method can be used
|
10 |
+
*
|
11 |
+
* TODO: payment method instance is not supposed to know about quote
|
12 |
+
*
|
13 |
+
* @param Mage_Sales_Model_Quote|null $quote
|
14 |
+
*
|
15 |
+
* @return bool
|
16 |
+
*/
|
17 |
+
public function isAvailable($quote = null)
|
18 |
+
{
|
19 |
+
if(!is_null($quote)){
|
20 |
+
|
21 |
+
$checkoutMethod = $quote->getCheckoutMethod();
|
22 |
+
|
23 |
+
if($checkoutMethod == Mage_Checkout_Model_Type_Onepage::METHOD_GUEST){
|
24 |
+
return false;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
return parent::isAvailable($quote);
|
29 |
+
}
|
30 |
|
31 |
}
|
app/code/community/Allopass/Hipay/Model/Method/Giropay.php
CHANGED
@@ -5,4 +5,80 @@ class Allopass_Hipay_Model_Method_Giropay extends Allopass_Hipay_Model_Method_Ho
|
|
5 |
|
6 |
protected $_canRefund = false;
|
7 |
protected $_canRefundInvoicePartial = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
}
|
5 |
|
6 |
protected $_canRefund = false;
|
7 |
protected $_canRefundInvoicePartial = false;
|
8 |
+
|
9 |
+
public function place($payment, $amount)
|
10 |
+
{
|
11 |
+
$order = $payment->getOrder();
|
12 |
+
$customer = Mage::getModel('customer/customer')->load($order->getCustomerId());
|
13 |
+
|
14 |
+
$request = Mage::getModel('hipay/api_request',array($this));
|
15 |
+
|
16 |
+
$payment->setAmount($amount);
|
17 |
+
|
18 |
+
$token = null;
|
19 |
+
if($payment->getAdditionalInformation('use_oneclick'))
|
20 |
+
{
|
21 |
+
$cardId = $payment->getAdditionalInformation('selected_oneclick_card');
|
22 |
+
$card = Mage::getModel('hipay/card')->load($cardId);
|
23 |
+
|
24 |
+
if($card->getId() && $card->getCustomerId() == $customer->getId())
|
25 |
+
$token = $card->getCcToken();
|
26 |
+
else
|
27 |
+
Mage::throwException(Mage::helper('hipay')->__("Error with your card!"));
|
28 |
+
|
29 |
+
}
|
30 |
+
|
31 |
+
$gatewayParams = $this->getGatewayParams($payment, $amount,$token);
|
32 |
+
|
33 |
+
if(is_null($token))
|
34 |
+
{
|
35 |
+
|
36 |
+
$gatewayParams['payment_product'] = 'cb' ;
|
37 |
+
$gatewayParams['operation'] = $this->getOperation();
|
38 |
+
$gatewayParams['css'] = $this->getConfigData('css_url');
|
39 |
+
$gatewayParams['template'] = $this->getConfigData('display_iframe') ? 'iframe' : $this->getConfigData('template');
|
40 |
+
if ($this->getConfigData('template') == 'basic-js' && $gatewayParams['template'] == 'iframe') $gatewayParams['template'] .= '-js';
|
41 |
+
$gatewayParams['display_selector'] = $this->getConfigData('display_selector');
|
42 |
+
//$gatewayParams['payment_product_list'] = $this->getConfigData('cctypes');
|
43 |
+
|
44 |
+
if ($gatewayParams['country'] == 'BE')
|
45 |
+
$gatewayParams['payment_product_list'] = $this->getConfigData('cctypes');
|
46 |
+
else
|
47 |
+
$gatewayParams['payment_product_list'] = str_replace('bcmc', '', $this->getConfigData('cctypes'));
|
48 |
+
|
49 |
+
|
50 |
+
$gatewayParams['payment_product_category_list'] = "credit-card";
|
51 |
+
|
52 |
+
if(Mage::getStoreConfig('general/store_information/name') != "")
|
53 |
+
$gatewayParams['merchant_display_name'] = Mage::getStoreConfig('general/store_information/name');
|
54 |
+
|
55 |
+
$gatewayParams['description'] = substr($gatewayParams['description'], 0, 30);
|
56 |
+
|
57 |
+
$this->_debug($gatewayParams);
|
58 |
+
|
59 |
+
$gatewayResponse = $request->gatewayRequest(Allopass_Hipay_Model_Api_Request::GATEWAY_ACTION_HOSTED,$gatewayParams,$payment->getOrder()->getStoreId());
|
60 |
+
|
61 |
+
$this->_debug($gatewayResponse->debug());
|
62 |
+
|
63 |
+
return $gatewayResponse->getForwardUrl();
|
64 |
+
}
|
65 |
+
else
|
66 |
+
{
|
67 |
+
$gatewayParams['operation'] = $this->getOperation();
|
68 |
+
$gatewayParams['payment_product'] = Mage::getSingleton('customer/session')->getCustomer()->getHipayCcType();
|
69 |
+
|
70 |
+
$gatewayParams['description'] = substr($gatewayParams['description'], 0, 30);
|
71 |
+
|
72 |
+
$this->_debug($gatewayParams);
|
73 |
+
|
74 |
+
$gatewayResponse = $request->gatewayRequest(Allopass_Hipay_Model_Api_Request::GATEWAY_ACTION_ORDER,$gatewayParams,$payment->getOrder()->getStoreId());
|
75 |
+
|
76 |
+
$this->_debug($gatewayResponse->debug());
|
77 |
+
|
78 |
+
$redirectUrl = $this->processResponseToRedirect($gatewayResponse, $payment, $amount);
|
79 |
+
|
80 |
+
return $redirectUrl;
|
81 |
+
}
|
82 |
+
|
83 |
+
}
|
84 |
}
|
app/code/community/Allopass/Hipay/Model/Method/HostedXtimes.php
CHANGED
@@ -4,5 +4,28 @@ class Allopass_Hipay_Model_Method_HostedXtimes extends Allopass_Hipay_Model_Meth
|
|
4 |
protected $_canUseInternal = false;
|
5 |
|
6 |
protected $_code = 'hipay_hostedxtimes';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
}
|
4 |
protected $_canUseInternal = false;
|
5 |
|
6 |
protected $_code = 'hipay_hostedxtimes';
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Check whether payment method can be used
|
10 |
+
*
|
11 |
+
* TODO: payment method instance is not supposed to know about quote
|
12 |
+
*
|
13 |
+
* @param Mage_Sales_Model_Quote|null $quote
|
14 |
+
*
|
15 |
+
* @return bool
|
16 |
+
*/
|
17 |
+
public function isAvailable($quote = null)
|
18 |
+
{
|
19 |
+
if(!is_null($quote)){
|
20 |
+
|
21 |
+
$checkoutMethod = $quote->getCheckoutMethod();
|
22 |
+
|
23 |
+
if($checkoutMethod == Mage_Checkout_Model_Type_Onepage::METHOD_GUEST){
|
24 |
+
return false;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
return parent::isAvailable($quote);
|
29 |
+
}
|
30 |
|
31 |
}
|
app/code/community/Allopass/Hipay/Model/Method/PostfinancecardApi.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Allopass_Hipay_Model_Method_PostfinancecardApi extends Allopass_Hipay_Model_Method_Cc
|
3 |
+
{
|
4 |
+
protected $_code = 'hipay_postfinancecardapi';
|
5 |
+
|
6 |
+
protected $_formBlockType = 'hipay/form_hosted';
|
7 |
+
protected $_infoBlockType = 'hipay/info_hosted';
|
8 |
+
|
9 |
+
|
10 |
+
public function getOrderPlaceRedirectUrl()
|
11 |
+
{
|
12 |
+
return Mage::getUrl(str_replace("_", "/", $this->getCode()).'/sendRequest',array('_secure' => true));
|
13 |
+
}
|
14 |
+
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Assign data to info model instance
|
18 |
+
*
|
19 |
+
* @param mixed $data
|
20 |
+
* @return Mage_Payment_Model_Info
|
21 |
+
*/
|
22 |
+
public function assignData($data)
|
23 |
+
{
|
24 |
+
if (!($data instanceof Varien_Object)) {
|
25 |
+
$data = new Varien_Object($data);
|
26 |
+
}
|
27 |
+
$info = $this->getInfoInstance();
|
28 |
+
$info->setCcType($this->getConfigData('cctypes'));
|
29 |
+
|
30 |
+
$this->assignInfoData($info, $data);
|
31 |
+
|
32 |
+
return $this;
|
33 |
+
}
|
34 |
+
|
35 |
+
public function initialize($paymentAction, $stateObject)
|
36 |
+
{
|
37 |
+
/* @var $payment Mage_Sales_Model_Order_Payment */
|
38 |
+
$payment = $this->getInfoInstance();
|
39 |
+
$order = $payment->getOrder();
|
40 |
+
$customer = Mage::getModel('customer/customer')->load($order->getCustomerId());
|
41 |
+
|
42 |
+
|
43 |
+
if($payment->getAdditionalInformation('use_oneclick') && $customer->getId())
|
44 |
+
{
|
45 |
+
$cardId = $payment->getAdditionalInformation('selected_oneclick_card');
|
46 |
+
$card = Mage::getModel('hipay/card')->load($cardId);
|
47 |
+
if($card->getId() && $card->getCustomerId() == $customer->getId())
|
48 |
+
$token = $card->getCcToken();
|
49 |
+
else
|
50 |
+
Mage::throwException(Mage::helper('hipay')->__("Error with your card!"));
|
51 |
+
$payment->setAdditionalInformation('token',$token);
|
52 |
+
}
|
53 |
+
|
54 |
+
return $this;
|
55 |
+
|
56 |
+
}
|
57 |
+
|
58 |
+
|
59 |
+
protected function getCcTypeHipay($ccTypeMagento)
|
60 |
+
{
|
61 |
+
return $ccTypeMagento;
|
62 |
+
}
|
63 |
+
|
64 |
+
|
65 |
+
/**
|
66 |
+
* Validate payment method information object
|
67 |
+
*
|
68 |
+
* @param Mage_Payment_Model_Info $info
|
69 |
+
* @return Mage_Payment_Model_Abstract
|
70 |
+
*/
|
71 |
+
public function validate()
|
72 |
+
{
|
73 |
+
/**
|
74 |
+
* to validate payment method is allowed for billing country or not
|
75 |
+
*/
|
76 |
+
$paymentInfo = $this->getInfoInstance();
|
77 |
+
if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
|
78 |
+
$billingCountry = $paymentInfo->getOrder()->getBillingAddress()->getCountryId();
|
79 |
+
} else {
|
80 |
+
$billingCountry = $paymentInfo->getQuote()->getBillingAddress()->getCountryId();
|
81 |
+
}
|
82 |
+
if (!$this->canUseForCountry($billingCountry)) {
|
83 |
+
Mage::throwException(Mage::helper('payment')->__('Selected payment type is not allowed for billing country.'));
|
84 |
+
}
|
85 |
+
return $this;
|
86 |
+
}
|
87 |
+
|
88 |
+
}
|
app/code/community/Allopass/Hipay/Model/Method/PostfinanceefinanceApi.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Allopass_Hipay_Model_Method_PostfinanceefinanceApi extends Allopass_Hipay_Model_Method_Cc
|
3 |
+
{
|
4 |
+
protected $_code = 'hipay_postfinanceefinanceapi';
|
5 |
+
|
6 |
+
protected $_formBlockType = 'hipay/form_hosted';
|
7 |
+
protected $_infoBlockType = 'hipay/info_hosted';
|
8 |
+
|
9 |
+
|
10 |
+
public function getOrderPlaceRedirectUrl()
|
11 |
+
{
|
12 |
+
return Mage::getUrl(str_replace("_", "/", $this->getCode()).'/sendRequest',array('_secure' => true));
|
13 |
+
}
|
14 |
+
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Assign data to info model instance
|
18 |
+
*
|
19 |
+
* @param mixed $data
|
20 |
+
* @return Mage_Payment_Model_Info
|
21 |
+
*/
|
22 |
+
public function assignData($data)
|
23 |
+
{
|
24 |
+
if (!($data instanceof Varien_Object)) {
|
25 |
+
$data = new Varien_Object($data);
|
26 |
+
}
|
27 |
+
$info = $this->getInfoInstance();
|
28 |
+
$info->setCcType($this->getConfigData('cctypes'));
|
29 |
+
|
30 |
+
$this->assignInfoData($info, $data);
|
31 |
+
|
32 |
+
return $this;
|
33 |
+
}
|
34 |
+
|
35 |
+
public function initialize($paymentAction, $stateObject)
|
36 |
+
{
|
37 |
+
/* @var $payment Mage_Sales_Model_Order_Payment */
|
38 |
+
$payment = $this->getInfoInstance();
|
39 |
+
$order = $payment->getOrder();
|
40 |
+
$customer = Mage::getModel('customer/customer')->load($order->getCustomerId());
|
41 |
+
|
42 |
+
|
43 |
+
if($payment->getAdditionalInformation('use_oneclick') && $customer->getId())
|
44 |
+
{
|
45 |
+
$cardId = $payment->getAdditionalInformation('selected_oneclick_card');
|
46 |
+
$card = Mage::getModel('hipay/card')->load($cardId);
|
47 |
+
if($card->getId() && $card->getCustomerId() == $customer->getId())
|
48 |
+
$token = $card->getCcToken();
|
49 |
+
else
|
50 |
+
Mage::throwException(Mage::helper('hipay')->__("Error with your card!"));
|
51 |
+
$payment->setAdditionalInformation('token',$token);
|
52 |
+
}
|
53 |
+
|
54 |
+
return $this;
|
55 |
+
|
56 |
+
}
|
57 |
+
|
58 |
+
|
59 |
+
protected function getCcTypeHipay($ccTypeMagento)
|
60 |
+
{
|
61 |
+
return $ccTypeMagento;
|
62 |
+
}
|
63 |
+
|
64 |
+
|
65 |
+
/**
|
66 |
+
* Validate payment method information object
|
67 |
+
*
|
68 |
+
* @param Mage_Payment_Model_Info $info
|
69 |
+
* @return Mage_Payment_Model_Abstract
|
70 |
+
*/
|
71 |
+
public function validate()
|
72 |
+
{
|
73 |
+
/**
|
74 |
+
* to validate payment method is allowed for billing country or not
|
75 |
+
*/
|
76 |
+
$paymentInfo = $this->getInfoInstance();
|
77 |
+
if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
|
78 |
+
$billingCountry = $paymentInfo->getOrder()->getBillingAddress()->getCountryId();
|
79 |
+
} else {
|
80 |
+
$billingCountry = $paymentInfo->getQuote()->getBillingAddress()->getCountryId();
|
81 |
+
}
|
82 |
+
if (!$this->canUseForCountry($billingCountry)) {
|
83 |
+
Mage::throwException(Mage::helper('payment')->__('Selected payment type is not allowed for billing country.'));
|
84 |
+
}
|
85 |
+
return $this;
|
86 |
+
}
|
87 |
+
|
88 |
+
}
|
app/code/community/Allopass/Hipay/Model/Observer.php
CHANGED
@@ -174,7 +174,7 @@ class Allopass_Hipay_Model_Observer
|
|
174 |
$order = $observer->getOrder();
|
175 |
if($order->getStatus() == Allopass_Hipay_Model_Method_Abstract::STATUS_CAPTURE_REQUESTED){
|
176 |
|
177 |
-
|
178 |
}
|
179 |
|
180 |
if($order->getPayment() && strpos($order->getPayment()->getMethod(), 'hipay') !== false)
|
@@ -196,13 +196,13 @@ class Allopass_Hipay_Model_Observer
|
|
196 |
|
197 |
if($histories->count() < 1){
|
198 |
|
199 |
-
|
200 |
}
|
201 |
}
|
202 |
|
203 |
if($order->getPayment()->getMethod() == 'hipay_cc' && strtolower($order->getPayment()->getCcType()) == 'bcmc')
|
204 |
{
|
205 |
-
|
206 |
}
|
207 |
}
|
208 |
|
174 |
$order = $observer->getOrder();
|
175 |
if($order->getStatus() == Allopass_Hipay_Model_Method_Abstract::STATUS_CAPTURE_REQUESTED){
|
176 |
|
177 |
+
//$order->setForcedCanCreditmemo(false);
|
178 |
}
|
179 |
|
180 |
if($order->getPayment() && strpos($order->getPayment()->getMethod(), 'hipay') !== false)
|
196 |
|
197 |
if($histories->count() < 1){
|
198 |
|
199 |
+
//$order->setForcedCanCreditmemo(false);
|
200 |
}
|
201 |
}
|
202 |
|
203 |
if($order->getPayment()->getMethod() == 'hipay_cc' && strtolower($order->getPayment()->getCcType()) == 'bcmc')
|
204 |
{
|
205 |
+
//$order->setForcedCanCreditmemo(false);
|
206 |
}
|
207 |
}
|
208 |
|
app/code/community/Allopass/Hipay/controllers/PostfinancecardapiController.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Allopass_Hipay_PostfinancecardapiController extends Allopass_Hipay_Controller_Payment
|
3 |
+
{
|
4 |
+
protected function _getMethodInstance()
|
5 |
+
{
|
6 |
+
return Mage::getSingleton('hipay/method_postfinancecardApi');
|
7 |
+
}
|
8 |
+
}
|
app/code/community/Allopass/Hipay/controllers/PostfinanceefinanceapiController.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Allopass_Hipay_PostfinanceefinanceapiController extends Allopass_Hipay_Controller_Payment
|
3 |
+
{
|
4 |
+
protected function _getMethodInstance()
|
5 |
+
{
|
6 |
+
return Mage::getSingleton('hipay/method_postfinanceefinanceApi');
|
7 |
+
}
|
8 |
+
}
|
app/code/community/Allopass/Hipay/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Allopass_Hipay>
|
5 |
-
<version>1.3.
|
6 |
</Allopass_Hipay>
|
7 |
</modules>
|
8 |
<global>
|
@@ -867,6 +867,60 @@
|
|
867 |
<electronic_signature>1</electronic_signature>
|
868 |
<send_fraud_payment_email>0</send_fraud_payment_email>
|
869 |
</hipay_sdd>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
</payment>
|
871 |
</default>
|
872 |
<crontab>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Allopass_Hipay>
|
5 |
+
<version>1.3.8</version>
|
6 |
</Allopass_Hipay>
|
7 |
</modules>
|
8 |
<global>
|
867 |
<electronic_signature>1</electronic_signature>
|
868 |
<send_fraud_payment_email>0</send_fraud_payment_email>
|
869 |
</hipay_sdd>
|
870 |
+
<hipay_postfinancecardapi>
|
871 |
+
<active>0</active> <!-- Activé ou non -->
|
872 |
+
<title>HiPay PostFinance Card</title> <!-- Titre par défaut modifiable en admin -->
|
873 |
+
<payment_action>authorize_capture</payment_action> <!-- Type d'action de paiement (authorize_capture ou authorize) -->
|
874 |
+
<cctypes>postfinance-card</cctypes> <!-- Types de carte disponibles (valeur Hipay pour le mode hosted, valeur Magento pour le mode API) -->
|
875 |
+
<!-- <useccv>1</useccv> --> <!-- permet de rendre obligatoire la saisie du CCV (uniquement en mode API) -->
|
876 |
+
<order_status_payment_accepted>processing</order_status_payment_accepted><!-- valeur par défaut du statut quand le paiement est accepté -->
|
877 |
+
<order_status_payment_refused>canceled</order_status_payment_refused><!-- valeur par défaut du statut quand le paiement est refusé -->
|
878 |
+
<order_status_payment_canceled>canceled</order_status_payment_canceled><!-- valeur par défaut du statut quand le paiement est annulé -->
|
879 |
+
<hipay_status_validate_order>118</hipay_status_validate_order><!-- valeur par défaut du statut hipay qui valide la commande (118 ou 117)-->
|
880 |
+
<pending_redirect_page>hipay/checkout/pending</pending_redirect_page><!-- valeur par défaut pour la page de redirection en cas de state "pending"-->
|
881 |
+
<allow_use_oneclick>0</allow_use_oneclick><!-- valeur par défaut de l'utilisation du oneclick -->
|
882 |
+
<invoice_create>1</invoice_create><!-- valeur par défaut de la création de la facture -->
|
883 |
+
<re_add_to_cart>0</re_add_to_cart><!-- valeur par défaut du re-remplissage du panier -->
|
884 |
+
<cancel_pending_order>1</cancel_pending_order><!-- valeur par défaut des annulation de commande "en attente" depuis 30 minutes -->
|
885 |
+
<display_iframe>0</display_iframe><!-- valeur par défaut mode Iframe (uniquement en mode Hosted)-->
|
886 |
+
<is_test_mode>0</is_test_mode><!-- valeur par défaut du mode test -->
|
887 |
+
<debug>0</debug><!-- valeur par défaut du mode debug -->
|
888 |
+
<model>hipay/method_postfinancecardApi</model><!-- Classe model de la méthode -->
|
889 |
+
<accept_url>hipay/postfinancecardapi/accept</accept_url><!-- Url accept de la méthode -->
|
890 |
+
<pending_url>hipay/postfinancecardapi/pending</pending_url><!-- Url pending de la méthode -->
|
891 |
+
<decline_url>hipay/postfinancecardapi/decline</decline_url><!-- Url decline de la méthode -->
|
892 |
+
<exception_url>hipay/postfinancecardapi/exception</exception_url><!-- Url execption de la méthode -->
|
893 |
+
<cancel_url>hipay/postfinancecardapi/cancel</cancel_url><!-- Url cancel de la méthode -->
|
894 |
+
<use_3d_secure>0</use_3d_secure><!-- valeur par défaut pour activer le 3ds -->
|
895 |
+
<send_fraud_payment_email>0</send_fraud_payment_email> <!-- Envoi le mail de fraud au client final -->
|
896 |
+
</hipay_postfinancecardapi>
|
897 |
+
<hipay_postfinanceefinanceapi>
|
898 |
+
<active>0</active> <!-- Activé ou non -->
|
899 |
+
<title>HiPay PostFinance E-Finance</title> <!-- Titre par défaut modifiable en admin -->
|
900 |
+
<payment_action>authorize_capture</payment_action> <!-- Type d'action de paiement (authorize_capture ou authorize) -->
|
901 |
+
<cctypes>postfinance-efinance</cctypes> <!-- Types de carte disponibles (valeur Hipay pour le mode hosted, valeur Magento pour le mode API) -->
|
902 |
+
<!-- <useccv>1</useccv> --> <!-- permet de rendre obligatoire la saisie du CCV (uniquement en mode API) -->
|
903 |
+
<order_status_payment_accepted>processing</order_status_payment_accepted><!-- valeur par défaut du statut quand le paiement est accepté -->
|
904 |
+
<order_status_payment_refused>canceled</order_status_payment_refused><!-- valeur par défaut du statut quand le paiement est refusé -->
|
905 |
+
<order_status_payment_canceled>canceled</order_status_payment_canceled><!-- valeur par défaut du statut quand le paiement est annulé -->
|
906 |
+
<hipay_status_validate_order>118</hipay_status_validate_order><!-- valeur par défaut du statut hipay qui valide la commande (118 ou 117)-->
|
907 |
+
<pending_redirect_page>hipay/checkout/pending</pending_redirect_page><!-- valeur par défaut pour la page de redirection en cas de state "pending"-->
|
908 |
+
<allow_use_oneclick>0</allow_use_oneclick><!-- valeur par défaut de l'utilisation du oneclick -->
|
909 |
+
<invoice_create>1</invoice_create><!-- valeur par défaut de la création de la facture -->
|
910 |
+
<re_add_to_cart>0</re_add_to_cart><!-- valeur par défaut du re-remplissage du panier -->
|
911 |
+
<cancel_pending_order>1</cancel_pending_order><!-- valeur par défaut des annulation de commande "en attente" depuis 30 minutes -->
|
912 |
+
<display_iframe>0</display_iframe><!-- valeur par défaut mode Iframe (uniquement en mode Hosted)-->
|
913 |
+
<is_test_mode>0</is_test_mode><!-- valeur par défaut du mode test -->
|
914 |
+
<debug>0</debug><!-- valeur par défaut du mode debug -->
|
915 |
+
<model>hipay/method_postfinanceefinanceApi</model><!-- Classe model de la méthode -->
|
916 |
+
<accept_url>hipay/postfinanceefinanceapi/accept</accept_url><!-- Url accept de la méthode -->
|
917 |
+
<pending_url>hipay/postfinanceefinanceapi/pending</pending_url><!-- Url pending de la méthode -->
|
918 |
+
<decline_url>hipay/postfinanceefinanceapi/decline</decline_url><!-- Url decline de la méthode -->
|
919 |
+
<exception_url>hipay/postfinanceefinanceapi/exception</exception_url><!-- Url execption de la méthode -->
|
920 |
+
<cancel_url>hipay/postfinanceefinanceapi/cancel</cancel_url><!-- Url cancel de la méthode -->
|
921 |
+
<use_3d_secure>0</use_3d_secure><!-- valeur par défaut pour activer le 3ds -->
|
922 |
+
<send_fraud_payment_email>0</send_fraud_payment_email> <!-- Envoi le mail de fraud au client final -->
|
923 |
+
</hipay_postfinanceefinanceapi>
|
924 |
</payment>
|
925 |
</default>
|
926 |
<crontab>
|
app/code/community/Allopass/Hipay/etc/system.xml
CHANGED
@@ -73,6 +73,43 @@
|
|
73 |
<show_in_website>1</show_in_website>
|
74 |
<show_in_store>1</show_in_store>
|
75 |
</secret_passphrase_test>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
</fields>
|
77 |
</hipay_api>
|
78 |
<fraud_payment translate="label">
|
@@ -3890,6 +3927,334 @@
|
|
3890 |
</is_test_mode>
|
3891 |
</fields>
|
3892 |
</hipay_sdd>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3893 |
</groups>
|
3894 |
</payment>
|
3895 |
</sections>
|
73 |
<show_in_website>1</show_in_website>
|
74 |
<show_in_store>1</show_in_store>
|
75 |
</secret_passphrase_test>
|
76 |
+
<proxy_host translate="label comment">
|
77 |
+
<label>Host proxy</label>
|
78 |
+
<comment>Leave blank if no proxy</comment>
|
79 |
+
<frontend_type>text</frontend_type>
|
80 |
+
<sort_order>60</sort_order>
|
81 |
+
<show_in_default>1</show_in_default>
|
82 |
+
<show_in_website>1</show_in_website>
|
83 |
+
<show_in_store>1</show_in_store>
|
84 |
+
</proxy_host>
|
85 |
+
<proxy_port translate="label comment">
|
86 |
+
<label>Port proxy</label>
|
87 |
+
<comment>Leave blank if no proxy</comment>
|
88 |
+
<frontend_type>text</frontend_type>
|
89 |
+
<sort_order>70</sort_order>
|
90 |
+
<show_in_default>1</show_in_default>
|
91 |
+
<show_in_website>1</show_in_website>
|
92 |
+
<show_in_store>1</show_in_store>
|
93 |
+
</proxy_port>
|
94 |
+
<proxy_user translate="label comment">
|
95 |
+
<label>User proxy</label>
|
96 |
+
<comment>Leave blank if no proxy</comment>
|
97 |
+
<frontend_type>text</frontend_type>
|
98 |
+
<sort_order>80</sort_order>
|
99 |
+
<show_in_default>1</show_in_default>
|
100 |
+
<show_in_website>1</show_in_website>
|
101 |
+
<show_in_store>1</show_in_store>
|
102 |
+
</proxy_user>
|
103 |
+
<proxy_pass translate="label comment">
|
104 |
+
<label>Password proxy</label>
|
105 |
+
<comment>Leave blank if no proxy</comment>
|
106 |
+
<frontend_type>obscure</frontend_type>
|
107 |
+
<backend_model>adminhtml/system_config_backend_encrypted</backend_model>
|
108 |
+
<sort_order>90</sort_order>
|
109 |
+
<show_in_default>1</show_in_default>
|
110 |
+
<show_in_website>1</show_in_website>
|
111 |
+
<show_in_store>1</show_in_store>
|
112 |
+
</proxy_pass>
|
113 |
</fields>
|
114 |
</hipay_api>
|
115 |
<fraud_payment translate="label">
|
3927 |
</is_test_mode>
|
3928 |
</fields>
|
3929 |
</hipay_sdd>
|
3930 |
+
<hipay_postfinancecardapi translate="label" module="hipay">
|
3931 |
+
<label>HiPay Fullservice PostFinance Card</label>
|
3932 |
+
<frontend_type>text</frontend_type>
|
3933 |
+
<sort_order>225</sort_order>
|
3934 |
+
<show_in_default>1</show_in_default>
|
3935 |
+
<show_in_website>1</show_in_website>
|
3936 |
+
<show_in_store>1</show_in_store>
|
3937 |
+
<fields>
|
3938 |
+
<active translate="label">
|
3939 |
+
<label>Enabled</label>
|
3940 |
+
<frontend_type>select</frontend_type>
|
3941 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
3942 |
+
<sort_order>10</sort_order>
|
3943 |
+
<show_in_default>1</show_in_default>
|
3944 |
+
<show_in_website>1</show_in_website>
|
3945 |
+
<show_in_store>1</show_in_store>
|
3946 |
+
</active>
|
3947 |
+
<title translate="label">
|
3948 |
+
<label>Title</label>
|
3949 |
+
<frontend_type>text</frontend_type>
|
3950 |
+
<sort_order>20</sort_order>
|
3951 |
+
<show_in_default>1</show_in_default>
|
3952 |
+
<show_in_website>1</show_in_website>
|
3953 |
+
<show_in_store>1</show_in_store>
|
3954 |
+
</title>
|
3955 |
+
<order_status_payment_accepted translate="label">
|
3956 |
+
<label>Order status when payment accepted</label>
|
3957 |
+
<frontend_type>select</frontend_type>
|
3958 |
+
<source_model>hipay/source_order_status_accepted</source_model>
|
3959 |
+
<sort_order>23</sort_order>
|
3960 |
+
<show_in_default>1</show_in_default>
|
3961 |
+
<show_in_website>1</show_in_website>
|
3962 |
+
<show_in_store>0</show_in_store>
|
3963 |
+
</order_status_payment_accepted>
|
3964 |
+
<order_status_payment_refused translate="label">
|
3965 |
+
<label>Order status when payment refused</label>
|
3966 |
+
<frontend_type>select</frontend_type>
|
3967 |
+
<source_model>hipay/source_order_status_refused</source_model>
|
3968 |
+
<sort_order>24</sort_order>
|
3969 |
+
<show_in_default>1</show_in_default>
|
3970 |
+
<show_in_website>1</show_in_website>
|
3971 |
+
<show_in_store>0</show_in_store>
|
3972 |
+
</order_status_payment_refused>
|
3973 |
+
<order_status_payment_canceled translate="label">
|
3974 |
+
<label>Order status when payment canceled by customer</label>
|
3975 |
+
<frontend_type>select</frontend_type>
|
3976 |
+
<source_model>hipay/source_order_status_canceled</source_model>
|
3977 |
+
<sort_order>25</sort_order>
|
3978 |
+
<show_in_default>1</show_in_default>
|
3979 |
+
<show_in_website>1</show_in_website>
|
3980 |
+
<show_in_store>0</show_in_store>
|
3981 |
+
</order_status_payment_canceled>
|
3982 |
+
<hipay_status_validate_order translate="label">
|
3983 |
+
<label>Hipay status to validate order</label>
|
3984 |
+
<frontend_type>select</frontend_type>
|
3985 |
+
<source_model>hipay/source_order_hipayStatusValidate</source_model>
|
3986 |
+
<sort_order>26</sort_order>
|
3987 |
+
<show_in_default>1</show_in_default>
|
3988 |
+
<show_in_website>1</show_in_website>
|
3989 |
+
<show_in_store>0</show_in_store>
|
3990 |
+
</hipay_status_validate_order>
|
3991 |
+
<pending_redirect_page translate="label">
|
3992 |
+
<label>Redirect page pending status</label>
|
3993 |
+
<comment>Page to redirect when transaction is in pending status</comment>
|
3994 |
+
<frontend_type>select</frontend_type>
|
3995 |
+
<source_model>hipay/source_pendingredirect</source_model>
|
3996 |
+
<sort_order>27</sort_order>
|
3997 |
+
<show_in_default>1</show_in_default>
|
3998 |
+
<show_in_website>1</show_in_website>
|
3999 |
+
<show_in_store>0</show_in_store>
|
4000 |
+
</pending_redirect_page>
|
4001 |
+
<re_add_to_cart translate="label comment">
|
4002 |
+
<label>Add product to cart</label>
|
4003 |
+
<comment>Fill cart when payment canceled or refused</comment>
|
4004 |
+
<frontend_type>select</frontend_type>
|
4005 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4006 |
+
<sort_order>95</sort_order>
|
4007 |
+
<show_in_default>1</show_in_default>
|
4008 |
+
<show_in_website>1</show_in_website>
|
4009 |
+
<show_in_store>0</show_in_store>
|
4010 |
+
</re_add_to_cart>
|
4011 |
+
<cancel_pending_order translate="label comment">
|
4012 |
+
<label>Cancel pending order</label>
|
4013 |
+
<comment>Cancel orders stayed in pending because customer not validated payment</comment>
|
4014 |
+
<frontend_type>select</frontend_type>
|
4015 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4016 |
+
<sort_order>97</sort_order>
|
4017 |
+
<show_in_default>1</show_in_default>
|
4018 |
+
<show_in_website>1</show_in_website>
|
4019 |
+
<show_in_store>0</show_in_store>
|
4020 |
+
</cancel_pending_order>
|
4021 |
+
<send_fraud_payment_email translate="label">
|
4022 |
+
<label>Send fraud payment email</label>
|
4023 |
+
<frontend_type>select</frontend_type>
|
4024 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4025 |
+
<sort_order>99</sort_order>
|
4026 |
+
<show_in_default>1</show_in_default>
|
4027 |
+
<show_in_website>1</show_in_website>
|
4028 |
+
<show_in_store>1</show_in_store>
|
4029 |
+
</send_fraud_payment_email>
|
4030 |
+
<allowspecific translate="label">
|
4031 |
+
<label>Payment from applicable countries</label>
|
4032 |
+
<frontend_type>allowspecific</frontend_type>
|
4033 |
+
<sort_order>100</sort_order>
|
4034 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
4035 |
+
<show_in_default>1</show_in_default>
|
4036 |
+
<show_in_website>1</show_in_website>
|
4037 |
+
<show_in_store>1</show_in_store>
|
4038 |
+
</allowspecific>
|
4039 |
+
<specificcountry translate="label">
|
4040 |
+
<label>Payment from Specific countries</label>
|
4041 |
+
<frontend_type>multiselect</frontend_type>
|
4042 |
+
<sort_order>110</sort_order>
|
4043 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
4044 |
+
<show_in_default>1</show_in_default>
|
4045 |
+
<show_in_website>1</show_in_website>
|
4046 |
+
<show_in_store>1</show_in_store>
|
4047 |
+
</specificcountry>
|
4048 |
+
<min_order_total translate="label">
|
4049 |
+
<label>Minimum Order Total</label>
|
4050 |
+
<frontend_type>text</frontend_type>
|
4051 |
+
<sort_order>120</sort_order>
|
4052 |
+
<show_in_default>1</show_in_default>
|
4053 |
+
<show_in_website>1</show_in_website>
|
4054 |
+
<show_in_store>1</show_in_store>
|
4055 |
+
</min_order_total>
|
4056 |
+
<max_order_total translate="label">
|
4057 |
+
<label>Maximum Order Total</label>
|
4058 |
+
<frontend_type>text</frontend_type>
|
4059 |
+
<sort_order>121</sort_order>
|
4060 |
+
<show_in_default>1</show_in_default>
|
4061 |
+
<show_in_website>1</show_in_website>
|
4062 |
+
<show_in_store>1</show_in_store>
|
4063 |
+
</max_order_total>
|
4064 |
+
<sort_order translate="label">
|
4065 |
+
<label>Sort Order</label>
|
4066 |
+
<frontend_type>text</frontend_type>
|
4067 |
+
<sort_order>130</sort_order>
|
4068 |
+
<show_in_default>1</show_in_default>
|
4069 |
+
<show_in_website>1</show_in_website>
|
4070 |
+
<show_in_store>1</show_in_store>
|
4071 |
+
</sort_order>
|
4072 |
+
<debug translate="label">
|
4073 |
+
<label>Enable debug log</label>
|
4074 |
+
<comment></comment>
|
4075 |
+
<frontend_type>select</frontend_type>
|
4076 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4077 |
+
<sort_order>150</sort_order>
|
4078 |
+
<show_in_default>1</show_in_default>
|
4079 |
+
<show_in_website>1</show_in_website>
|
4080 |
+
<show_in_store>0</show_in_store>
|
4081 |
+
</debug>
|
4082 |
+
<is_test_mode translate="label comment">
|
4083 |
+
<label>Enable test mode</label>
|
4084 |
+
<comment></comment>
|
4085 |
+
<frontend_type>select</frontend_type>
|
4086 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4087 |
+
<sort_order>200</sort_order>
|
4088 |
+
<show_in_default>1</show_in_default>
|
4089 |
+
<show_in_website>1</show_in_website>
|
4090 |
+
<show_in_store>1</show_in_store>
|
4091 |
+
</is_test_mode>
|
4092 |
+
</fields>
|
4093 |
+
</hipay_postfinancecardapi>
|
4094 |
+
<hipay_postfinanceefinanceapi translate="label" module="hipay">
|
4095 |
+
<label>HiPay Fullservice PostFinance E-Finance</label>
|
4096 |
+
<frontend_type>text</frontend_type>
|
4097 |
+
<sort_order>225</sort_order>
|
4098 |
+
<show_in_default>1</show_in_default>
|
4099 |
+
<show_in_website>1</show_in_website>
|
4100 |
+
<show_in_store>1</show_in_store>
|
4101 |
+
<fields>
|
4102 |
+
<active translate="label">
|
4103 |
+
<label>Enabled</label>
|
4104 |
+
<frontend_type>select</frontend_type>
|
4105 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4106 |
+
<sort_order>10</sort_order>
|
4107 |
+
<show_in_default>1</show_in_default>
|
4108 |
+
<show_in_website>1</show_in_website>
|
4109 |
+
<show_in_store>1</show_in_store>
|
4110 |
+
</active>
|
4111 |
+
<title translate="label">
|
4112 |
+
<label>Title</label>
|
4113 |
+
<frontend_type>text</frontend_type>
|
4114 |
+
<sort_order>20</sort_order>
|
4115 |
+
<show_in_default>1</show_in_default>
|
4116 |
+
<show_in_website>1</show_in_website>
|
4117 |
+
<show_in_store>1</show_in_store>
|
4118 |
+
</title>
|
4119 |
+
<order_status_payment_accepted translate="label">
|
4120 |
+
<label>Order status when payment accepted</label>
|
4121 |
+
<frontend_type>select</frontend_type>
|
4122 |
+
<source_model>hipay/source_order_status_accepted</source_model>
|
4123 |
+
<sort_order>23</sort_order>
|
4124 |
+
<show_in_default>1</show_in_default>
|
4125 |
+
<show_in_website>1</show_in_website>
|
4126 |
+
<show_in_store>0</show_in_store>
|
4127 |
+
</order_status_payment_accepted>
|
4128 |
+
<order_status_payment_refused translate="label">
|
4129 |
+
<label>Order status when payment refused</label>
|
4130 |
+
<frontend_type>select</frontend_type>
|
4131 |
+
<source_model>hipay/source_order_status_refused</source_model>
|
4132 |
+
<sort_order>24</sort_order>
|
4133 |
+
<show_in_default>1</show_in_default>
|
4134 |
+
<show_in_website>1</show_in_website>
|
4135 |
+
<show_in_store>0</show_in_store>
|
4136 |
+
</order_status_payment_refused>
|
4137 |
+
<order_status_payment_canceled translate="label">
|
4138 |
+
<label>Order status when payment canceled by customer</label>
|
4139 |
+
<frontend_type>select</frontend_type>
|
4140 |
+
<source_model>hipay/source_order_status_canceled</source_model>
|
4141 |
+
<sort_order>25</sort_order>
|
4142 |
+
<show_in_default>1</show_in_default>
|
4143 |
+
<show_in_website>1</show_in_website>
|
4144 |
+
<show_in_store>0</show_in_store>
|
4145 |
+
</order_status_payment_canceled>
|
4146 |
+
<hipay_status_validate_order translate="label">
|
4147 |
+
<label>Hipay status to validate order</label>
|
4148 |
+
<frontend_type>select</frontend_type>
|
4149 |
+
<source_model>hipay/source_order_hipayStatusValidate</source_model>
|
4150 |
+
<sort_order>26</sort_order>
|
4151 |
+
<show_in_default>1</show_in_default>
|
4152 |
+
<show_in_website>1</show_in_website>
|
4153 |
+
<show_in_store>0</show_in_store>
|
4154 |
+
</hipay_status_validate_order>
|
4155 |
+
<pending_redirect_page translate="label">
|
4156 |
+
<label>Redirect page pending status</label>
|
4157 |
+
<comment>Page to redirect when transaction is in pending status</comment>
|
4158 |
+
<frontend_type>select</frontend_type>
|
4159 |
+
<source_model>hipay/source_pendingredirect</source_model>
|
4160 |
+
<sort_order>27</sort_order>
|
4161 |
+
<show_in_default>1</show_in_default>
|
4162 |
+
<show_in_website>1</show_in_website>
|
4163 |
+
<show_in_store>0</show_in_store>
|
4164 |
+
</pending_redirect_page>
|
4165 |
+
<re_add_to_cart translate="label comment">
|
4166 |
+
<label>Add product to cart</label>
|
4167 |
+
<comment>Fill cart when payment canceled or refused</comment>
|
4168 |
+
<frontend_type>select</frontend_type>
|
4169 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4170 |
+
<sort_order>95</sort_order>
|
4171 |
+
<show_in_default>1</show_in_default>
|
4172 |
+
<show_in_website>1</show_in_website>
|
4173 |
+
<show_in_store>0</show_in_store>
|
4174 |
+
</re_add_to_cart>
|
4175 |
+
<cancel_pending_order translate="label comment">
|
4176 |
+
<label>Cancel pending order</label>
|
4177 |
+
<comment>Cancel orders stayed in pending because customer not validated payment</comment>
|
4178 |
+
<frontend_type>select</frontend_type>
|
4179 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4180 |
+
<sort_order>97</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 |
+
</cancel_pending_order>
|
4185 |
+
<send_fraud_payment_email translate="label">
|
4186 |
+
<label>Send fraud payment email</label>
|
4187 |
+
<frontend_type>select</frontend_type>
|
4188 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4189 |
+
<sort_order>99</sort_order>
|
4190 |
+
<show_in_default>1</show_in_default>
|
4191 |
+
<show_in_website>1</show_in_website>
|
4192 |
+
<show_in_store>1</show_in_store>
|
4193 |
+
</send_fraud_payment_email>
|
4194 |
+
<allowspecific translate="label">
|
4195 |
+
<label>Payment from applicable countries</label>
|
4196 |
+
<frontend_type>allowspecific</frontend_type>
|
4197 |
+
<sort_order>100</sort_order>
|
4198 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
4199 |
+
<show_in_default>1</show_in_default>
|
4200 |
+
<show_in_website>1</show_in_website>
|
4201 |
+
<show_in_store>1</show_in_store>
|
4202 |
+
</allowspecific>
|
4203 |
+
<specificcountry translate="label">
|
4204 |
+
<label>Payment from Specific countries</label>
|
4205 |
+
<frontend_type>multiselect</frontend_type>
|
4206 |
+
<sort_order>110</sort_order>
|
4207 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
4208 |
+
<show_in_default>1</show_in_default>
|
4209 |
+
<show_in_website>1</show_in_website>
|
4210 |
+
<show_in_store>1</show_in_store>
|
4211 |
+
</specificcountry>
|
4212 |
+
<min_order_total translate="label">
|
4213 |
+
<label>Minimum Order Total</label>
|
4214 |
+
<frontend_type>text</frontend_type>
|
4215 |
+
<sort_order>120</sort_order>
|
4216 |
+
<show_in_default>1</show_in_default>
|
4217 |
+
<show_in_website>1</show_in_website>
|
4218 |
+
<show_in_store>1</show_in_store>
|
4219 |
+
</min_order_total>
|
4220 |
+
<max_order_total translate="label">
|
4221 |
+
<label>Maximum Order Total</label>
|
4222 |
+
<frontend_type>text</frontend_type>
|
4223 |
+
<sort_order>121</sort_order>
|
4224 |
+
<show_in_default>1</show_in_default>
|
4225 |
+
<show_in_website>1</show_in_website>
|
4226 |
+
<show_in_store>1</show_in_store>
|
4227 |
+
</max_order_total>
|
4228 |
+
<sort_order translate="label">
|
4229 |
+
<label>Sort Order</label>
|
4230 |
+
<frontend_type>text</frontend_type>
|
4231 |
+
<sort_order>130</sort_order>
|
4232 |
+
<show_in_default>1</show_in_default>
|
4233 |
+
<show_in_website>1</show_in_website>
|
4234 |
+
<show_in_store>1</show_in_store>
|
4235 |
+
</sort_order>
|
4236 |
+
<debug translate="label">
|
4237 |
+
<label>Enable debug log</label>
|
4238 |
+
<comment></comment>
|
4239 |
+
<frontend_type>select</frontend_type>
|
4240 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4241 |
+
<sort_order>150</sort_order>
|
4242 |
+
<show_in_default>1</show_in_default>
|
4243 |
+
<show_in_website>1</show_in_website>
|
4244 |
+
<show_in_store>0</show_in_store>
|
4245 |
+
</debug>
|
4246 |
+
<is_test_mode translate="label comment">
|
4247 |
+
<label>Enable test mode</label>
|
4248 |
+
<comment></comment>
|
4249 |
+
<frontend_type>select</frontend_type>
|
4250 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
4251 |
+
<sort_order>200</sort_order>
|
4252 |
+
<show_in_default>1</show_in_default>
|
4253 |
+
<show_in_website>1</show_in_website>
|
4254 |
+
<show_in_store>1</show_in_store>
|
4255 |
+
</is_test_mode>
|
4256 |
+
</fields>
|
4257 |
+
</hipay_postfinanceefinanceapi>
|
4258 |
</groups>
|
4259 |
</payment>
|
4260 |
</sections>
|
app/locale/en_US/Allopass_Hipay.csv
CHANGED
@@ -157,4 +157,5 @@
|
|
157 |
"You must reload the page to see new status.","You must reload the page to see new status."
|
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."
|
|
157 |
"You must reload the page to see new status.","You must reload the page to see new status."
|
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"
|
app/locale/fr_FR/Allopass_Hipay.csv
CHANGED
@@ -160,3 +160,4 @@
|
|
160 |
"Your payment is declined. Please retry checkout with another payment card.","Votre paiement a été refusé. Veuillez réessayer avec une autre carte bancaire."
|
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."
|
|
160 |
"Your payment is declined. Please retry checkout with another payment card.","Votre paiement a été refusé. Veuillez réessayer avec une autre carte bancaire."
|
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"
|
package.xml
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package><name>Allopass_Hipay</name><version>1.3.6</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-06-15</date><time>10:11:14</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="58b729e16f5ac9ec28535013274d465a"/><file name="Observer.php" hash="8eed4dad9d97de7a62d91585bee0c2d2"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="245fda18c3c08b32a92a9667e939a62d"/><dir name="Api"><file name="Request.php" hash="cd99b338ce6487765b2c100f2009f37f"/><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="04112d5488dc33fa9d19a95ebf35cef7"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="9df7c359e859ee6092954055c5f1ad62"/><file name="CcXtimes.php" hash="1c46d4ce4c6f878ea6050196cfb04852"/><file name="Dexia.php" hash="a385bcf6b0826917fecec6917a8230f9"/><file name="Giropay.php" hash="8f924fea486cd68e22dd55039c7cda77"/><file name="Hosted.php" hash="5bd41f736ddc997d5620932838b38849"/><file name="HostedXtimes.php" hash="b6566db76a4027dc39bbd60756a63fbc"/><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="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="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="eb4b56ede83fc383a38ab68d85b56dad"/><file name="system.xml" hash="b4bdc0d83fd1e0a7db384ad8abeaab21"/></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"/></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="55df7f67d33ee1158de98ea7e380a41c"/><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="c367cfb030f23fbb32b588f47812176d"/><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"/></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="98bb593584bb910278240f308f570a61"/><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="457415436810b9a57b0c5228ac4ae4b0"/></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="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.3.8</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-09-16</date><time>9:28:59</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="58b729e16f5ac9ec28535013274d465a"/><file name="Observer.php" hash="9598049deaea0724b2170dc602bd69a7"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="245fda18c3c08b32a92a9667e939a62d"/><dir name="Api"><file name="Request.php" hash="1f5e5cfe58f56d57fb31d946cd355230"/><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="04112d5488dc33fa9d19a95ebf35cef7"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="9df7c359e859ee6092954055c5f1ad62"/><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="2dd4da3fec4735b42bcd11ac27145148"/><file name="system.xml" hash="027fee72071503776610c6aa64030e94"/></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"/></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"/></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="98bb593584bb910278240f308f570a61"/><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="457415436810b9a57b0c5228ac4ae4b0"/></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="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>
|