Allopass_Hipay - Version 1.7.1

Version Notes

Download this release

Release Info

Developer Kassim Belghait
Extension Allopass_Hipay
Version 1.7.1
Comparing to
See all releases


Code changes from version 1.7.0 to 1.7.1

app/code/community/Allopass/Hipay/Block/Adminhtml/Field/MappingCategory.php CHANGED
@@ -27,7 +27,7 @@ class Allopass_Hipay_Block_Adminhtml_Field_MappingCategory extends Mage_Adminhtm
27
  $mappingSaved = $this->getElement()->getValue();
28
 
29
  // Add All Magento categories in Array Rows
30
- if (!array_key_exists($mappingSaved[key($mappingSaved)], 'magento_code')) {
31
  if (!empty($categories) && is_array($categories)) {
32
  foreach ($categories as $code => $label) {
33
  $mapping = $this->_getHipayCategoryMapping($code);
@@ -113,10 +113,15 @@ class Allopass_Hipay_Block_Adminhtml_Field_MappingCategory extends Mage_Adminhtm
113
  {
114
  $mappingSaved = $this->getElement()->getValue();
115
  $id_hipay_category = null;
116
- foreach ($mappingSaved as $mapping) {
117
- if ($mapping['magento_category'] == $codeMagentoCategory) {
118
- $id_hipay_category = $mapping['hipay_category'];
119
- break;
 
 
 
 
 
120
  }
121
  }
122
  return $id_hipay_category;
27
  $mappingSaved = $this->getElement()->getValue();
28
 
29
  // Add All Magento categories in Array Rows
30
+ if (!$mappingSaved || !array_key_exists('magento_code', $mappingSaved[key($mappingSaved)])) {
31
  if (!empty($categories) && is_array($categories)) {
32
  foreach ($categories as $code => $label) {
33
  $mapping = $this->_getHipayCategoryMapping($code);
113
  {
114
  $mappingSaved = $this->getElement()->getValue();
115
  $id_hipay_category = null;
116
+ if (is_array($mappingSaved)) {
117
+ foreach ($mappingSaved as $mapping) {
118
+ if (is_array($mapping)
119
+ && array_key_exists('magento_category', $mapping)
120
+ && $mapping['magento_category'] == $codeMagentoCategory
121
+ ) {
122
+ $id_hipay_category = $mapping['hipay_category'];
123
+ break;
124
+ }
125
  }
126
  }
127
  return $id_hipay_category;
app/code/community/Allopass/Hipay/Block/Adminhtml/Field/MappingShippingMethod.php CHANGED
@@ -27,7 +27,7 @@ class Allopass_Hipay_Block_Adminhtml_Field_MappingShippingMethod extends Mage_Ad
27
  $mappingSaved = $this->getElement()->getValue();
28
 
29
  // Add All Magento categories in Array Rows
30
- if (!array_key_exists($mappingSaved[key($mappingSaved)], 'magento_code')) {
31
  if (!empty($shippingMethod) && is_array($shippingMethod)) {
32
  foreach ($shippingMethod as $code => $label) {
33
  $mapping = $this->_getHipayDeliveryMapping($code);
@@ -131,10 +131,14 @@ class Allopass_Hipay_Block_Adminhtml_Field_MappingShippingMethod extends Mage_Ad
131
  protected function _getHipayDeliveryMapping($codeMagentoCategory)
132
  {
133
  $mappingSaved = $this->getElement()->getValue();
134
- foreach ($mappingSaved as $mapping) {
135
- if ($mapping['magento_shipping_method'] == $codeMagentoCategory) {
136
- return $mapping;
137
- break;
 
 
 
 
138
  }
139
  }
140
  return null;
27
  $mappingSaved = $this->getElement()->getValue();
28
 
29
  // Add All Magento categories in Array Rows
30
+ if (!$mappingSaved || !array_key_exists('magento_code',$mappingSaved[key($mappingSaved)])) {
31
  if (!empty($shippingMethod) && is_array($shippingMethod)) {
32
  foreach ($shippingMethod as $code => $label) {
33
  $mapping = $this->_getHipayDeliveryMapping($code);
131
  protected function _getHipayDeliveryMapping($codeMagentoCategory)
132
  {
133
  $mappingSaved = $this->getElement()->getValue();
134
+ if (is_array($mappingSaved)) {
135
+ foreach ($mappingSaved as $mapping) {
136
+ if (is_array($mapping)
137
+ && array_key_exists('magento_shipping_method',$mapping)
138
+ && $mapping['magento_shipping_method'] == $codeMagentoCategory) {
139
+ return $mapping;
140
+ break;
141
+ }
142
  }
143
  }
144
  return null;
app/code/community/Allopass/Hipay/Helper/Data.php CHANGED
@@ -129,12 +129,16 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
129
  if (!$useOrderCurrency) {
130
  $item['unit_price'] = round($order->getBaseShippingAmount(), 3);
131
  $item['total_amount'] = round($order->getBaseShippingAmount(), 3);
132
- $item['tax_rate'] = round($order->getBaseShippingTaxAmount() / $order->getBaseShippingAmount() * 100,
133
- 2);
 
 
134
  } else {
135
  $item['unit_price'] = round($order->getShippingAmount(), 3);
136
  $item['total_amount'] = round($order->getShippingAmount(), 3);
137
- $item['tax_rate'] = round($order->getShippingTaxAmount() / $order->getShippingAmount() * 100, 2);
 
 
138
  }
139
 
140
  if ($action == Allopass_Hipay_Helper_Data::STATE_CAPTURE || $action == Allopass_Hipay_Helper_Data::STATE_REFUND) {
@@ -258,8 +262,8 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
258
  $categoryIds = $product->getCategoryIds();
259
  if (is_array($categoryIds) && !empty($categoryIds)) {
260
  if (isset($categoryIds[0]) && $categoryIds[0]) {
261
- $mapping = $this->getMappingCategory($categoryIds[0],Mage::app()->getStore());
262
- if ($mapping){
263
  $item['product_category'] = (int) $mapping['hipay_category'];
264
  }
265
  }
@@ -1245,16 +1249,16 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
1245
  * Return the mapping if exists for one category
1246
  *
1247
  * @param $idCategory
1248
- * @param $store
1249
  * @return string
1250
  */
1251
- public function getMappingCategory($idCategory, $store = null)
1252
  {
1253
- $mappingCategories = unserialize($this->getConfig()->getConfigDataBasket('mapping_category',$store));
1254
  if (is_array($mappingCategories) && !empty($mappingCategories)) {
1255
  foreach ($mappingCategories as $key => $mapping) {
1256
  if ($mapping['magento_category'] == $idCategory) {
1257
- return $mapping['hipay_category'];
1258
  }
1259
  }
1260
  $category = Mage::getModel('catalog/category')->load($idCategory);
@@ -1271,12 +1275,12 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
1271
  * Return the mapping if exist for one category
1272
  *
1273
  * @param $delivery_method Code
1274
- * @param $store
1275
  * @return string
1276
  */
1277
- public function getMappingShipping($codeShippingMethod, $store = null)
1278
  {
1279
- $mappingDeliveryMethod = unserialize($this->getConfig()->getConfigDataBasket('mapping_shipping_method',$store));
1280
  if (is_array($mappingDeliveryMethod) && !empty($mappingDeliveryMethod)) {
1281
  foreach ($mappingDeliveryMethod as $key => $mapping) {
1282
  if ($mapping['magento_shipping_method'] == $codeShippingMethod) {
@@ -1327,7 +1331,7 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
1327
  */
1328
  public function processDeliveryInformation($codeShippingMethod, $store, $method, &$params)
1329
  {
1330
- $mapping = $this->getMappingShipping($codeShippingMethod,$store);
1331
  $params['delivery_method'] = $this->calculateDeliveryMethod($mapping);
1332
 
1333
  if (empty($params['delivery_method'])) {
@@ -1382,6 +1386,7 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
1382
  */
1383
  public function checkMappingShippingMethod ()
1384
  {
 
1385
  $mappings = unserialize($this->getConfig()->getConfigDataBasket('mapping_shipping_method',$store));
1386
  $magentoShippingMethod = $this->getMagentoShippingMethods();
1387
  $nbMappingMissing = count($magentoShippingMethod);
@@ -1404,6 +1409,7 @@ class Allopass_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
1404
  */
1405
  public function checkMappingCategoryMethod ()
1406
  {
 
1407
  $mappings = unserialize($this->getConfig()->getConfigDataBasket('mapping_category',$store));
1408
  $magentoCategory = $this->getMagentoCategories();
1409
  $nbMappingMissing = count($magentoCategory);
129
  if (!$useOrderCurrency) {
130
  $item['unit_price'] = round($order->getBaseShippingAmount(), 3);
131
  $item['total_amount'] = round($order->getBaseShippingAmount(), 3);
132
+ if( $order->getBaseShippingAmount() > 0 ) {
133
+ $item['tax_rate'] = round($order->getBaseShippingTaxAmount() / $order->getBaseShippingAmount() * 100,
134
+ 2);
135
+ }
136
  } else {
137
  $item['unit_price'] = round($order->getShippingAmount(), 3);
138
  $item['total_amount'] = round($order->getShippingAmount(), 3);
139
+ if( $order->getShippingAmount() > 0 ) {
140
+ $item['tax_rate'] = round($order->getShippingTaxAmount() / $order->getShippingAmount() * 100, 2);
141
+ }
142
  }
143
 
144
  if ($action == Allopass_Hipay_Helper_Data::STATE_CAPTURE || $action == Allopass_Hipay_Helper_Data::STATE_REFUND) {
262
  $categoryIds = $product->getCategoryIds();
263
  if (is_array($categoryIds) && !empty($categoryIds)) {
264
  if (isset($categoryIds[0]) && $categoryIds[0]) {
265
+ $mapping = $this->getMappingCategory($categoryIds[0],Mage::app()->getStore()->getId());
266
+ if (is_array($mapping) && array_key_exists('hipay_category',$mapping)){
267
  $item['product_category'] = (int) $mapping['hipay_category'];
268
  }
269
  }
1249
  * Return the mapping if exists for one category
1250
  *
1251
  * @param $idCategory
1252
+ * @param $storeId int
1253
  * @return string
1254
  */
1255
+ public function getMappingCategory($idCategory, $storeId = null)
1256
  {
1257
+ $mappingCategories = unserialize($this->getConfig()->getConfigDataBasket('mapping_category',$storeId));
1258
  if (is_array($mappingCategories) && !empty($mappingCategories)) {
1259
  foreach ($mappingCategories as $key => $mapping) {
1260
  if ($mapping['magento_category'] == $idCategory) {
1261
+ return $mapping;
1262
  }
1263
  }
1264
  $category = Mage::getModel('catalog/category')->load($idCategory);
1275
  * Return the mapping if exist for one category
1276
  *
1277
  * @param $delivery_method Code
1278
+ * @param $storeId int
1279
  * @return string
1280
  */
1281
+ public function getMappingShipping($codeShippingMethod, $storeId = null)
1282
  {
1283
+ $mappingDeliveryMethod = unserialize($this->getConfig()->getConfigDataBasket('mapping_shipping_method',$storeId));
1284
  if (is_array($mappingDeliveryMethod) && !empty($mappingDeliveryMethod)) {
1285
  foreach ($mappingDeliveryMethod as $key => $mapping) {
1286
  if ($mapping['magento_shipping_method'] == $codeShippingMethod) {
1331
  */
1332
  public function processDeliveryInformation($codeShippingMethod, $store, $method, &$params)
1333
  {
1334
+ $mapping = $this->getMappingShipping($codeShippingMethod,$store->getId());
1335
  $params['delivery_method'] = $this->calculateDeliveryMethod($mapping);
1336
 
1337
  if (empty($params['delivery_method'])) {
1386
  */
1387
  public function checkMappingShippingMethod ()
1388
  {
1389
+ $store = Mage::getSingleton('adminhtml/config_data')->getStore();
1390
  $mappings = unserialize($this->getConfig()->getConfigDataBasket('mapping_shipping_method',$store));
1391
  $magentoShippingMethod = $this->getMagentoShippingMethods();
1392
  $nbMappingMissing = count($magentoShippingMethod);
1409
  */
1410
  public function checkMappingCategoryMethod ()
1411
  {
1412
+ $store = Mage::getSingleton('adminhtml/config_data')->getStore();
1413
  $mappings = unserialize($this->getConfig()->getConfigDataBasket('mapping_category',$store));
1414
  $magentoCategory = $this->getMagentoCategories();
1415
  $nbMappingMissing = count($magentoCategory);
app/code/community/Allopass/Hipay/Model/Config.php CHANGED
@@ -96,7 +96,12 @@ class Allopass_Hipay_Model_Config extends Varien_Object
96
  */
97
  public function getConfigDataBasket($key, $storeId = null)
98
  {
99
- return $this->getInternalConfig('hipay_basket', $key, $storeId = null);
 
 
 
 
 
100
  }
101
 
102
  /**
@@ -104,7 +109,7 @@ class Allopass_Hipay_Model_Config extends Varien_Object
104
  *
105
  * @param string $key Var path key
106
  * @param int $storeId Store View Id
107
- * @return mixed
108
  */
109
  public function getConfigFlag($key, $storeId = null)
110
  {
96
  */
97
  public function getConfigDataBasket($key, $storeId = null)
98
  {
99
+ $basket = $this->getInternalConfig('hipay_basket', $key, $storeId);
100
+ if (!$basket && !is_null($storeId)) {
101
+ $basket = $this->getInternalConfig('hipay_basket', $key, null);
102
+ }
103
+
104
+ return $basket;
105
  }
106
 
107
  /**
109
  *
110
  * @param string $key Var path key
111
  * @param int $storeId Store View Id
112
+ * @return mixed
113
  */
114
  public function getConfigFlag($key, $storeId = null)
115
  {
app/code/community/Allopass/Hipay/Model/Method/Abstract.php CHANGED
@@ -1054,9 +1054,10 @@ abstract class Allopass_Hipay_Model_Method_Abstract extends Mage_Payment_Model_M
1054
  * @param Mage_Sales_Model_Order_Payment $payment
1055
  * @param float $amount
1056
  * @param string|null $token
 
1057
  * @return multitype:
1058
  */
1059
- public function getGatewayParams($payment,$amount,$token=null)
1060
  {
1061
  $params = array();
1062
  $params['orderid'] = $payment->getOrder()->getIncrementId();
1054
  * @param Mage_Sales_Model_Order_Payment $payment
1055
  * @param float $amount
1056
  * @param string|null $token
1057
+ * @param string $split_number
1058
  * @return multitype:
1059
  */
1060
+ public function getGatewayParams($payment,$amount,$token=null,$split_number = null)
1061
  {
1062
  $params = array();
1063
  $params['orderid'] = $payment->getOrder()->getIncrementId();
app/code/community/Allopass/Hipay/Model/Method/Hosted.php CHANGED
@@ -106,7 +106,9 @@ class Allopass_Hipay_Model_Method_Hosted extends Allopass_Hipay_Model_Method_Abs
106
  $this->_debug($gatewayResponse->debug());
107
 
108
  // MOTO Redirection
109
- if ($gatewayParams['eci'] == '1' && $this->sendMailToCustomer() && strpos($order->getPayment()->getMethod(),'hipay_hosted') !== false){
 
 
110
  $payment->setAdditionalInformation('redirectUrl', $gatewayResponse->getForwardUrl());
111
 
112
  return $gatewayParams['moto_url_redirect'];
@@ -136,9 +138,10 @@ class Allopass_Hipay_Model_Method_Hosted extends Allopass_Hipay_Model_Method_Abs
136
  * Update or not default params
137
  *
138
  * @param $gatewayParams
 
139
  * @return mixed
140
  */
141
- public function getSpecificsParams($gatewayParams)
142
  {
143
  return $gatewayParams;
144
  }
106
  $this->_debug($gatewayResponse->debug());
107
 
108
  // MOTO Redirection
109
+ if (array_key_exists('eci',$gatewayParams)
110
+ && $gatewayParams['eci'] == '1'
111
+ && $this->sendMailToCustomer() && strpos($order->getPayment()->getMethod(),'hipay_hosted') !== false){
112
  $payment->setAdditionalInformation('redirectUrl', $gatewayResponse->getForwardUrl());
113
 
114
  return $gatewayParams['moto_url_redirect'];
138
  * Update or not default params
139
  *
140
  * @param $gatewayParams
141
+ * @param $payment
142
  * @return mixed
143
  */
144
+ public function getSpecificsParams($gatewayParams, $payment)
145
  {
146
  return $gatewayParams;
147
  }
app/code/community/Allopass/Hipay/etc/config.xml CHANGED
@@ -1,7 +1,7 @@
1
  <config>
2
  <modules>
3
  <Allopass_Hipay>
4
- <version>1.7.0</version>
5
  </Allopass_Hipay>
6
  </modules>
7
  <global>
@@ -441,7 +441,7 @@
441
  </hipay_ccxtimes>
442
  <hipay_hosted>
443
  <active>0</active>
444
- <title>HiPay Enterprise Credit Card</title>
445
  <payment_action>authorize_capture</payment_action>
446
  <cctypes>american-express,visa,mastercard</cctypes>
447
  <order_status_payment_accepted>processing</order_status_payment_accepted>
1
  <config>
2
  <modules>
3
  <Allopass_Hipay>
4
+ <version>1.7.1</version>
5
  </Allopass_Hipay>
6
  </modules>
7
  <global>
441
  </hipay_ccxtimes>
442
  <hipay_hosted>
443
  <active>0</active>
444
+ <title>HiPay Enterprise Credit Card Hosted</title>
445
  <payment_action>authorize_capture</payment_action>
446
  <cctypes>american-express,visa,mastercard</cctypes>
447
  <order_status_payment_accepted>processing</order_status_payment_accepted>
package.xml CHANGED
@@ -1,2 +1,2 @@
1
  <?xml version="1.0"?>
2
- <package><name>Allopass_Hipay</name><version>1.7.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>2017-06-12</date><time>2:40:20</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="6d27c9d5bd060ffcfbac63b8cd48bed6"/><file name="Observer.php" hash="7259a809b9eee4b6352b748ffc83f4f2"/><file name="PaymentProfile.php" hash="8eb4fbb9969500ee09b3fb07363718aa"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="8eb8dbb887e8038a271eb62257700f7a"/><dir name="Field"><file name="CategoryMapping.php" hash="67da2c3be440ae53f2bb58b5b5afa78b"/><file name="MappingShippingMethod.php" hash="dac2b0b9d760160e6703e1bdb2d645a5"/></dir><dir name="Api"><file name="Request.php" hash="7d4fe8bc9cad2243c4b8c8841b86a46f"/><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="25c9966d184f61a3d61af9ea0f04aeca"/><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="f191f3a498170455e54020b8b78c6787"/><file name="AbstractOrder.php" hash="b33f6920f0f571c3e2e4017166f720d2"/><file name="Astropay.php" hash="ec2f838cb2ff6ec7c2a061ccba5b5402"/><file name="Aura.php" hash="7c1973d365b4c08f291dbdae9b302a49"/><file name="Banamex.php" hash="34256372111ed72abfc9f82df35d6f5e"/><file name="Banco.php" hash="2675d5787c6924d712ceefc3d4359ffa"/><file name="Bbva.php" hash="844e1bbeb99874a87b926c202cd0e59d"/><file name="Boleto.php" hash="c7a86e821a41aef612df8961ab634b03"/><file name="Bradesco.php" hash="dc6bc33421054e61aae00c01f20094d2"/><file name="Caixa.php" hash="ea503fbb1961f4eb9bd77201bf8189a2"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="812208167dcc5a651e34a6afe9e2663d"/><file name="CcXtimes.php" hash="8d4f2f77f2e0377600cff2f93a3f0e66"/><file name="Dexia.php" hash="1cb8041d3d6393eb8e2ad673c5dd4594"/><file name="Discover.php" hash="56e2d74c0d267b017852dda34fa2949e"/><file name="Facilipay3x.php" hash="4f76f5ab3dc26442461a1e03497cf294"/><file name="Facilipay4x.php" hash="b11a85ea36b300212bca343a33c10941"/><file name="Giropay.php" hash="85d350f66fa3b0b162fe542165bce4cc"/><file name="Hosted.php" hash="ea3f0c3cae75fea0c9fec22b5d3553ac"/><file name="HostedXtimes.php" hash="d81e2c0746a7d1437fde693fba219e1d"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Itau.php" hash="ce8cf887bd9aea7adc57a1e8dff648b1"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="Klarna.php" hash="4c65315115247d79beb47262de5272b8"/><file name="Oxxo.php" hash="d6f04b88c7c96b269d1f0db59fd9a239"/><file name="PaypalApi.php" hash="1be9f6636f2f1ab4608ab7bef6af2227"/><file name="PostfinancecardApi.php" hash="b2fe3a01d9ca0ac0a54e6282dcb3018b"/><file name="PostfinanceefinanceApi.php" hash="14e08831fa7c6405d465120ba80bca58"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="cb924c45713efee53c7d06a73007e14b"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><file name="Santander.php" hash="c76f7ed02d6bc17346dc9a17469f75f8"/><file name="Santandercash.php" hash="399ebf949a935ae4b3dabf34c966f48c"/><file name="Sdd.php" hash="be79ca9e43d642d61cd4ceddd50e193a"/><file name="Sisal.php" hash="d6f97559eb485a8d6d66e5a7abc0e077"/><file name="SisalApi.php" hash="f9b43ce77d34b819619633d975167b10"/><file name="Sofort.php" hash="fa6cb68aff431c2dc91e7b3c62a29aaa"/><file name="SofortApi.php" hash="44822c230e012d1c8f11336298d73d2d"/><file name="Webmoney.php" hash="5705818f9288d1c0acc49882c42c195f"/><file name="WebmoneyApi.php" hash="82ea811ec1a20db01bf61735a0a02938"/><file name="Yandex.php" hash="1edad262a001d96ede94c9406e680f46"/><file name="YandexApi.php" hash="44c368582da42ae45db2e54b3710963e"/></dir><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="Attributes.php" hash="f32ae1fc6e394e0871c5aa9a128fe87e"/><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="Product"><file name="Facilipay3x.php" hash="4db7e24ccb83af02fd4447e8d6ff930d"/><file name="Facilipay4x.php" hash="06c32155fef478b2e578ac5879775191"/></dir><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="Collection.php" hash="d111e91dd540a4582bb079e31cec6861"/><file name="Data.php" hash="5c6d2e9e92e4acfda4125e0d7345b849"/></dir><dir name="Controller"><file name="Payment.php" hash="debb4181d3f5e691a146cd94dfcabe8c"/></dir><dir name="controllers"><file name="AuraController.php" hash="8dc485c4d0f2b748e01089bca2f32899"/><file name="BanamexController.php" hash="c5359978336e2762911da9fd54102094"/><file name="BancoController.php" hash="87f7884a7223ff242f995822427c79d3"/><file name="BbvaController.php" hash="a20c36f7af9db70454c0e0f2c9982276"/><file name="BoletoController.php" hash="801d7b2076ceed0d48809c4c9610a6d0"/><file name="BradescoController.php" hash="6b89ab188ce7df7790d4adbefa616b46"/><file name="CaixaController.php" hash="6f2b9262eb786aaad598f97a37f48919"/><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="DiscoverController.php" hash="9e0ba7abc7e34612468c7fd65355bd06"/><file name="Facilipay3xController.php" hash="c24149654e94119eae05f9921db35b9d"/><file name="Facilipay4xController.php" hash="d644196d5af515e2550bf2f64993037c"/><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="ItauController.php" hash="e5d0cb7d8a4f1673e775d66a7b758a9d"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="KlarnaController.php" hash="b2b673947547780c2472e05744a4708a"/><file name="NotifyController.php" hash="a6c3a098c092531d2ed95da5d8b5221a"/><file name="OxxoController.php" hash="ac1c8c56555b5e3e38f633e543de94bc"/><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="SantanderCashController.php" hash="469a5f0b52b31f8c04178fb7f31c3e49"/><file name="SantanderController.php" hash="3a2f7d981f204b02f5914065ced8b8d6"/><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="b9d9878cdfae02e6cb9f9b7c9f39a900"/><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="0ec3fcc602d893ce943e548b77d9d955"/><file name="system.xml" hash="b4e17b09b3c358702fc11e1a485b56e0"/></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"/><file name="mysql4-upgrade-1.1.0-1.6.0.php" hash="dfc9fb427f0a0dace5fb318d650277c3"/></dir></dir><dir name="Block"><file name="Card.php" hash="12b531784c6928389f4b7abfab5fc397"/><dir name="Form"><file name="Abstract.php" hash="3fc939b95a81b6f1f1d2e325fe4eec48"/><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 name="Cart"><file name="Totals.php" hash="b711e1f41b857d4e8da48a5b00a32677"/></dir></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="Field"><file name="MappingCategory.php" hash="06a2081c5ac82cac6bce1e44ae2bc9ad"/><file name="MappingShippingMethod.php" hash="788a9356ade99b7c68d93e0fa798b9e7"/><dir name="Renderer"><file name="Label.php" hash="793621b093080a0b17d59f738cb977f5"/><file name="List.php" hash="5bbf255a041de4b6504dd005ee45c80d"/></dir></dir><dir name="PaymentProfile"><file name="Edit.php" hash="ef7b6945e91ef450a8a6a4ef0dbfef97"/><file name="Grid.php" hash="f8ac0daa082f3c6d2be6289e935dbd31"/><dir name="Edit"><file name="Form.php" hash="3bbb2a5be1a3b6946cf132eb355231ca"/></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="66cfbbc826154553c33d1adb9062053b"/></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="Expanded.php" hash="47b64c6a3d47d661497ac0c9f562b095"/><file name="Information.php" hash="fe264a19343f8d44180d85c39a543e04"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/><file name="Notice.php" hash="7e305ec077da51381d53c99da4884578"/></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="33568fca2aa143006862d8aca4184262"/></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="040392064bd3c344e95dbd02a57c16ea"/><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"/><file name="hipay_hipay_api_moto.html" hash="19000628bd298e3e49f3d09b9432c0c7"/></dir></dir></dir><dir name="fr_FR"><file name="Allopass_Hipay.csv" hash="8afe44d48db2c9dc8d2ca1e60703f2a9"/><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"/><file name="hipay_hipay_api_moto.html" hash="90509ea995a48683cee66bc822665c5f"/></dir></dir></dir><dir name="it_IT"><file name="Allopass_Hipay.csv" hash="266969a37744535ba5bede1d337dac26"/><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"/><file name="hipay_hipay_api_moto.html" hash="19000628bd298e3e49f3d09b9432c0c7"/></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="af0a84afb4321b997d341d7e59d7c767"/></dir><dir name="card"><file name="account.phtml" hash="129ca019bd14dad8559e90eb09fc2180"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="form"><file name="cc.phtml" hash="e998f9bab1724a3815cf33f32f4a9561"/><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="ef6a5c8503257f8a2d3a0eb594a04ab6"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="hipay"><file name="mapping.phtml" hash="64c6c9e4bdbf40bf5494c611a42d9aae"/><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="information.phtml" hash="ba735694071ed5dfe514891c57ff54eb"/><file name="notice.phtml" hash="0a888b4ffed097d50cb7f5a17ffa644f"/><file name="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir><dir name="form"><file name="cc.phtml" hash="548c5d5ee72f1e036e734b83d24d3a02"/><file name="hosted.phtml" hash="b24b9dfe810e0b61309690089823303f"/></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="467326640b5b5dce2e889e24494642be"/></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="base"><dir name="default"><dir name="hipay"><dir name="css"><file name="hipay.css" hash="4bd7055a1d35eaf6fed19c6d99e4cad2"/></dir></dir></dir></dir><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.7.1</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>2017-06-21</date><time>0:43:43</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="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 name="base"><dir name="default"><dir name="hipay"><dir name="css"><file name="hipay.css" hash="4bd7055a1d35eaf6fed19c6d99e4cad2"/></dir></dir></dir></dir></dir></dir><dir name="app"><dir name="code"><dir name="community"><dir name="Allopass"><dir name="Hipay"><dir name="Block"><file name="Card.php" hash="12b531784c6928389f4b7abfab5fc397"/><dir name="Form"><file name="Abstract.php" hash="3fc939b95a81b6f1f1d2e325fe4eec48"/><file name="Cc.php" hash="64b899c98ee3edd77c5262eccd0bdfd1"/><file name="Hosted.php" hash="1cbc3fe21de97bba192cd5e651dfaeae"/></dir><dir name="Info"><file name="Cc.php" hash="d4ed3d7c3bbc82c1b3b13e19abdd4ddc"/><file name="Hosted.php" hash="40355126a48bd854c21bb0201840229c"/></dir><dir name="Checkout"><file name="Pending.php" hash="48112f7e2fdcc79ee9431cf5350e223f"/><file name="Tokenjs.php" hash="82adcf1d7ba1cd7c5fd99e63ff193c9a"/><dir name="Cart"><file name="Totals.php" hash="b711e1f41b857d4e8da48a5b00a32677"/></dir></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="3bbb2a5be1a3b6946cf132eb355231ca"/></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="Expanded.php" hash="47b64c6a3d47d661497ac0c9f562b095"/><file name="Information.php" hash="fe264a19343f8d44180d85c39a543e04"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/><file name="Notice.php" hash="7e305ec077da51381d53c99da4884578"/></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="33568fca2aa143006862d8aca4184262"/></dir></dir><dir name="Field"><file name="MappingCategory.php" hash="6259a092625f94b4571ea75d34d00ae8"/><file name="MappingShippingMethod.php" hash="ae87d2c10a1e7238390cb279ac4ff57f"/><dir name="Renderer"><file name="Label.php" hash="793621b093080a0b17d59f738cb977f5"/><file name="List.php" hash="5bbf255a041de4b6504dd005ee45c80d"/></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="66cfbbc826154553c33d1adb9062053b"/></dir></dir></dir></dir></dir><dir name="Controller"><file name="Payment.php" hash="debb4181d3f5e691a146cd94dfcabe8c"/></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"/><file name="mysql4-upgrade-1.1.0-1.6.0.php" hash="dfc9fb427f0a0dace5fb318d650277c3"/></dir></dir><dir name="Helper"><file name="Collection.php" hash="d111e91dd540a4582bb079e31cec6861"/><file name="Data.php" hash="8129e54de63b415f6b28ef758c7e7392"/></dir><dir name="controllers"><file name="AuraController.php" hash="8dc485c4d0f2b748e01089bca2f32899"/><file name="BanamexController.php" hash="c5359978336e2762911da9fd54102094"/><file name="BancoController.php" hash="87f7884a7223ff242f995822427c79d3"/><file name="BbvaController.php" hash="a20c36f7af9db70454c0e0f2c9982276"/><file name="BoletoController.php" hash="801d7b2076ceed0d48809c4c9610a6d0"/><file name="BradescoController.php" hash="6b89ab188ce7df7790d4adbefa616b46"/><file name="CaixaController.php" hash="6f2b9262eb786aaad598f97a37f48919"/><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="DiscoverController.php" hash="9e0ba7abc7e34612468c7fd65355bd06"/><file name="Facilipay3xController.php" hash="c24149654e94119eae05f9921db35b9d"/><file name="Facilipay4xController.php" hash="d644196d5af515e2550bf2f64993037c"/><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="ItauController.php" hash="e5d0cb7d8a4f1673e775d66a7b758a9d"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="KlarnaController.php" hash="b2b673947547780c2472e05744a4708a"/><file name="NotifyController.php" hash="a6c3a098c092531d2ed95da5d8b5221a"/><file name="OxxoController.php" hash="ac1c8c56555b5e3e38f633e543de94bc"/><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="SantanderCashController.php" hash="469a5f0b52b31f8c04178fb7f31c3e49"/><file name="SantanderController.php" hash="3a2f7d981f204b02f5914065ced8b8d6"/><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="b9d9878cdfae02e6cb9f9b7c9f39a900"/><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="57bbb729bf9574e6e56836a6f47aba3d"/><file name="system.xml" hash="b4e17b09b3c358702fc11e1a485b56e0"/></dir><dir name="Model"><file name="Card.php" hash="5d5ed0ece4cb9ef50bf445eee6911f8a"/><file name="Config.php" hash="56d2a7073ca8e9a34ddf5f77febd5538"/><file name="Observer.php" hash="7259a809b9eee4b6352b748ffc83f4f2"/><file name="PaymentProfile.php" hash="8eb4fbb9969500ee09b3fb07363718aa"/><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><file name="SplitPayment.php" hash="8eb8dbb887e8038a271eb62257700f7a"/><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="Attributes.php" hash="f32ae1fc6e394e0871c5aa9a128fe87e"/><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 name="Product"><file name="Facilipay3x.php" hash="4db7e24ccb83af02fd4447e8d6ff930d"/><file name="Facilipay4x.php" hash="06c32155fef478b2e578ac5879775191"/></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="System"><dir name="Config"><dir name="Backend"><file name="CcTypes.php" hash="916ab83c9e5e1ee18d488f42a090c524"/></dir></dir></dir><dir name="Api"><file name="Request.php" hash="7d4fe8bc9cad2243c4b8c8841b86a46f"/><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="Method"><file name="Abstract.php" hash="36589bd8da30d17d408eb79b0f7692db"/><file name="AbstractOrder.php" hash="b33f6920f0f571c3e2e4017166f720d2"/><file name="Astropay.php" hash="ec2f838cb2ff6ec7c2a061ccba5b5402"/><file name="Aura.php" hash="7c1973d365b4c08f291dbdae9b302a49"/><file name="Banamex.php" hash="34256372111ed72abfc9f82df35d6f5e"/><file name="Banco.php" hash="2675d5787c6924d712ceefc3d4359ffa"/><file name="Bbva.php" hash="844e1bbeb99874a87b926c202cd0e59d"/><file name="Boleto.php" hash="c7a86e821a41aef612df8961ab634b03"/><file name="Bradesco.php" hash="dc6bc33421054e61aae00c01f20094d2"/><file name="Caixa.php" hash="ea503fbb1961f4eb9bd77201bf8189a2"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="812208167dcc5a651e34a6afe9e2663d"/><file name="CcXtimes.php" hash="8d4f2f77f2e0377600cff2f93a3f0e66"/><file name="Dexia.php" hash="1cb8041d3d6393eb8e2ad673c5dd4594"/><file name="Discover.php" hash="56e2d74c0d267b017852dda34fa2949e"/><file name="Facilipay3x.php" hash="4f76f5ab3dc26442461a1e03497cf294"/><file name="Facilipay4x.php" hash="b11a85ea36b300212bca343a33c10941"/><file name="Giropay.php" hash="85d350f66fa3b0b162fe542165bce4cc"/><file name="Hosted.php" hash="b44d777e51c2f34aa6e97f8dafc5170e"/><file name="HostedXtimes.php" hash="d81e2c0746a7d1437fde693fba219e1d"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Itau.php" hash="ce8cf887bd9aea7adc57a1e8dff648b1"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="Klarna.php" hash="4c65315115247d79beb47262de5272b8"/><file name="Oxxo.php" hash="d6f04b88c7c96b269d1f0db59fd9a239"/><file name="PaypalApi.php" hash="1be9f6636f2f1ab4608ab7bef6af2227"/><file name="PostfinancecardApi.php" hash="b2fe3a01d9ca0ac0a54e6282dcb3018b"/><file name="PostfinanceefinanceApi.php" hash="14e08831fa7c6405d465120ba80bca58"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="cb924c45713efee53c7d06a73007e14b"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><file name="Santander.php" hash="c76f7ed02d6bc17346dc9a17469f75f8"/><file name="Santandercash.php" hash="399ebf949a935ae4b3dabf34c966f48c"/><file name="Sdd.php" hash="be79ca9e43d642d61cd4ceddd50e193a"/><file name="Sisal.php" hash="d6f97559eb485a8d6d66e5a7abc0e077"/><file name="SisalApi.php" hash="f9b43ce77d34b819619633d975167b10"/><file name="Sofort.php" hash="fa6cb68aff431c2dc91e7b3c62a29aaa"/><file name="SofortApi.php" hash="44822c230e012d1c8f11336298d73d2d"/><file name="Webmoney.php" hash="5705818f9288d1c0acc49882c42c195f"/><file name="WebmoneyApi.php" hash="82ea811ec1a20db01bf61735a0a02938"/><file name="Yandex.php" hash="1edad262a001d96ede94c9406e680f46"/><file name="YandexApi.php" hash="44c368582da42ae45db2e54b3710963e"/></dir><dir name="Rule"><file name="Config.php" hash="4034bf549bc274c836930a43d0ef8646"/><dir name="Condition"><file name="Address.php" hash="25c9966d184f61a3d61af9ea0f04aeca"/><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="Log"><file name="Adapter.php" hash="9d5533d5d3622c72cbc84abfd4e3116c"/></dir><dir name="Field"><file name="CategoryMapping.php" hash="67da2c3be440ae53f2bb58b5b5afa78b"/><file name="MappingShippingMethod.php" hash="dac2b0b9d760160e6703e1bdb2d645a5"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="ef6a5c8503257f8a2d3a0eb594a04ab6"/></dir><dir name="template"><dir name="hipay"><dir name="card"><file name="account.phtml" hash="129ca019bd14dad8559e90eb09fc2180"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="form"><file name="cc.phtml" hash="e998f9bab1724a3815cf33f32f4a9561"/><file name="hosted.phtml" hash="f590c6b76dcff32fa1cffd81d451c4e9"/></dir><dir name="checkout"><file name="pending.phtml" hash="34e6bba88ea5fdd6b4ea71595de638d6"/><file name="tokenjs.phtml" hash="af0a84afb4321b997d341d7e59d7c767"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="467326640b5b5dce2e889e24494642be"/></dir><dir name="template"><dir name="hipay"><file name="mapping.phtml" hash="64c6c9e4bdbf40bf5494c611a42d9aae"/><dir name="form"><file name="cc.phtml" hash="548c5d5ee72f1e036e734b83d24d3a02"/><file name="hosted.phtml" hash="b24b9dfe810e0b61309690089823303f"/></dir><dir name="info"><file name="cc.phtml" hash="96e92e2b6564392e7294b8f96469940f"/><file name="hosted.phtml" hash="96e92e2b6564392e7294b8f96469940f"/></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="information.phtml" hash="ba735694071ed5dfe514891c57ff54eb"/><file name="notice.phtml" hash="0a888b4ffed097d50cb7f5a17ffa644f"/><file name="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="Allopass_Hipay.csv" hash="040392064bd3c344e95dbd02a57c16ea"/><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"/><file name="hipay_hipay_api_moto.html" hash="19000628bd298e3e49f3d09b9432c0c7"/></dir></dir></dir><dir name="fr_FR"><file name="Allopass_Hipay.csv" hash="8afe44d48db2c9dc8d2ca1e60703f2a9"/><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"/><file name="hipay_hipay_api_moto.html" hash="90509ea995a48683cee66bc822665c5f"/></dir></dir></dir><dir name="it_IT"><file name="Allopass_Hipay.csv" hash="266969a37744535ba5bede1d337dac26"/><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"/><file name="hipay_hipay_api_moto.html" hash="19000628bd298e3e49f3d09b9432c0c7"/></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Allopass_Hipay.xml" hash="fd0ac2e9080c0a432a3a7b6d969171c0"/></dir></dir></dir></target></contents></package>