Allopass_Hipay - Version 1.2.4

Version Notes

* Optimize cancel order query
* Change some title

Download this release

Release Info

Developer Kassim_Profileo
Extension Allopass_Hipay
Version 1.2.4
Comparing to
See all releases


Code changes from version 1.2.3 to 1.2.4

app/code/community/Allopass/Hipay/Block/Adminhtml/PaymentProfile/Edit.php CHANGED
@@ -26,10 +26,6 @@ class Allopass_Hipay_Block_Adminhtml_PaymentProfile_Edit extends Mage_Adminhtml_
26
  editForm.submit($('edit_form').action+'back/edit/');
27
  }
28
  ";
29
-
30
  }
31
-
32
-
33
-
34
 
35
  }
26
  editForm.submit($('edit_form').action+'back/edit/');
27
  }
28
  ";
 
29
  }
 
 
 
30
 
31
  }
app/code/community/Allopass/Hipay/Model/Card.php CHANGED
@@ -1,4 +1,23 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  class Allopass_Hipay_Model_Card extends Mage_Core_Model_Abstract
3
  {
4
 
1
  <?php
2
+ /**
3
+ *
4
+ *
5
+ * @method getCustomerId() int
6
+ * @method getName() string
7
+ * @method getCcExpMonth() int
8
+ * @method getCcExpYear() int
9
+ * @method getCcSecureVerify() int
10
+ * @method getCclast4() int
11
+ * @method getCcOwner() string
12
+ * @method getCcType() string
13
+ * @method getCcNumberEnc() string
14
+ * @method getCcStatus() int
15
+ * @method getCcToken() string
16
+ * @method getIsDefault() bool
17
+ *
18
+ * @author Kassim Belghait <kassim@sirateck.com>
19
+ *
20
+ */
21
  class Allopass_Hipay_Model_Card extends Mage_Core_Model_Abstract
22
  {
23
 
app/code/community/Allopass/Hipay/Model/Observer.php CHANGED
@@ -6,49 +6,55 @@ class Allopass_Hipay_Model_Observer
6
  */
7
  public function cancelOrdersInPending()
8
  {
9
-
10
- //$methodCodes = array('hipay_cc'=>'hipay/method_cc','hipay_hosted'=>'hipay/method_hosted');
11
- $methodCodes = Mage::helper('hipay')->getHipayMethods();
12
- foreach ($methodCodes as $methodCode=>$model)
13
  {
14
- if(!Mage::getStoreConfig('payment/'.$methodCode."/cancel_pending_order"))
15
- continue;
16
-
17
- $limitedTime = 30;
18
-
19
- $date = new Zend_Date();//Mage::app()->getLocale()->date();
20
-
21
- /* @var $collection Mage_Sales_Model_Resource_Order_Collection */
22
- $collection = Mage::getResourceModel('sales/order_collection');
23
- $collection->addFieldToSelect(array('entity_id','state'))
24
-
25
- ->addAttributeToFilter('created_at', array('to' => ($date->subMinute($limitedTime)->toString('Y-MM-dd HH:mm:ss'))))
26
- ;
27
 
 
 
 
 
28
 
29
- /* @var $order Mage_Sales_Model_Order */
30
- foreach ($collection as $order)
 
 
 
 
 
 
 
 
 
 
 
 
31
  {
32
-
33
- if($order->getPayment()->getMethod() == $methodCode)
34
- {
35
- if($order->canCancel() && $order->getState() == Mage_Sales_Model_Order::STATE_NEW)
36
- {
37
- try {
38
- $order->cancel();
39
- $order
40
- ->addStatusToHistory($order->getStatus(),
41
- // keep order status/state
42
- Mage::helper('hipay')->__("Order canceled automatically by cron because order is pending since %d minutes",$limitedTime));
43
-
44
- $order->save();
45
- } catch (Exception $e) {
46
- Mage::logException($e);
47
- }
48
- }
49
  }
50
  }
 
51
  }
 
52
  return $this;
53
  }
54
 
@@ -169,62 +175,14 @@ class Allopass_Hipay_Model_Observer
169
  $order = $observer->getOrder();
170
  if($order->getStatus() == Allopass_Hipay_Model_Method_Abstract::STATUS_CAPTURE_REQUESTED)
171
  $order->setForcedCanCreditmemo(false);
172
-
173
- if($order->getPayment()->getMethod() == 'hipay_cc' && strtolower($order->getPayment()->getCcType()) == 'bcmc')
174
  {
175
- $order->setForcedCanCreditmemo(false);
176
- }
177
-
178
- }
179
-
180
-
181
- /**
182
- * Authorize redirect to Hipay payment
183
- */
184
- public function initRedirect4Multishipping($observer) {
185
- Mage::getSingleton('checkout/session')->setCanRedirect4Multishipping(true);
186
- }
187
-
188
- /**
189
- * Return Redirect URL for payment
190
- *
191
- * @return string Place Order Redirect URL
192
- */
193
- public function multishippingRedirectUrl($observer) {
194
- if (Mage::getSingleton('checkout/session')->getCanRedirect4Multishipping()) {
195
-
196
- $orderIds = Mage::getSingleton('core/session')->getOrderIds();
197
- $orderIdsTmp = $orderIds;
198
- $key = array_pop($orderIdsTmp);
199
- $order = Mage::getModel('sales/order')->loadByIncrementId($key);
200
-
201
- if (!(strpos($order->getPayment()->getMethod(), 'hipay') === false)) {
202
- $methodController = str_replace("_","/",$order->getPayment()->getMethod());
203
- Mage::getSingleton('checkout/session')
204
- ->setLastRealOrderId($order->getIncrementId())
205
- ->setLastOrderId($order->getId())
206
- ->setRealOrderIds(implode(',', $orderIds));
207
- Mage::app()->getResponse()->setRedirect(Mage::getUrl($methodController.'/sendRequest',array('_secure' => true)));
208
  }
209
- } else {
210
- Mage::getSingleton('checkout/session')->unsRealOrderIds();
211
- }
212
-
213
- return $this;
214
- }
215
-
216
- /**
217
- * Disables sending email after the order creation
218
- *
219
- * @return updated order
220
- */
221
- public function disableEmail4Multishipping($observer) {
222
- $order = $observer->getOrder();
223
-
224
- if (!(strpos($order->getPayment()->getMethod(), 'hipay') === false)) {
225
- $order->setCanSendNewEmailFlag(false)->save();
226
  }
227
-
228
- return $this;
229
  }
230
  }
6
  */
7
  public function cancelOrdersInPending()
8
  {
9
+ $methodCodes = array();
10
+ //Select only method with cancel orders enabled
11
+ foreach (Mage::helper('hipay')->getHipayMethods() as $code=>$model)
 
12
  {
13
+ if(Mage::getStoreConfig('payment/'.$code."/cancel_pending_order"))
14
+ {
15
+ $methodCodes[] = $code;
16
+ }
17
+ }
18
+
19
+ if(count($methodCodes) < 1)
20
+ return $this;
 
 
 
 
 
21
 
22
+ //Limited time in minutes
23
+ $limitedTime = 30;
24
+
25
+ $date = new Zend_Date();
26
 
27
+ /* @var $collection Mage_Sales_Model_Resource_Order_Collection */
28
+ $collection = Mage::getResourceModel('sales/order_collection');
29
+ $collection->addFieldToSelect(array('entity_id'))
30
+ ->addFieldToFilter('state',Mage_Sales_Model_Order::STATE_NEW)
31
+ ->addFieldToFilter('op.method',array('in'=>array_values($methodCodes)))
32
+ ->addAttributeToFilter('created_at', array('to' => ($date->subMinute($limitedTime)->toString('Y-MM-dd HH:mm:ss'))))
33
+ ->join(array('op' => 'sales/order_payment'), 'main_table.entity_id=op.parent_id', array('method'));
34
+
35
+
36
+ /* @var $order Mage_Sales_Model_Order */
37
+ foreach ($collection as $order)
38
+ {
39
+
40
+ if($order->canCancel())
41
  {
42
+ try {
43
+
44
+ $order->cancel();
45
+ $order
46
+ ->addStatusToHistory($order->getStatus(),// keep order status/state
47
+ Mage::helper('hipay')->__("Order canceled automatically by cron because order is pending since %d minutes",$limitedTime));
48
+
49
+ $order->save();
50
+
51
+ } catch (Exception $e) {
52
+ Mage::logException($e);
 
 
 
 
 
 
53
  }
54
  }
55
+
56
  }
57
+
58
  return $this;
59
  }
60
 
175
  $order = $observer->getOrder();
176
  if($order->getStatus() == Allopass_Hipay_Model_Method_Abstract::STATUS_CAPTURE_REQUESTED)
177
  $order->setForcedCanCreditmemo(false);
178
+ if($order->getPayment())
 
179
  {
180
+ if($order->getPayment()->getMethod() == 'hipay_cc' && strtolower($order->getPayment()->getCcType()) == 'bcmc')
181
+ {
182
+ $order->setForcedCanCreditmemo(false);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  }
185
+
186
+
187
  }
188
  }
app/code/community/Allopass/Hipay/controllers/Sales/Order/CreateController.php CHANGED
@@ -16,11 +16,11 @@ class Allopass_Hipay_Sales_Order_CreateController extends Mage_Adminhtml_Sales_O
16
  $this->_processActionData('save');
17
  $paymentData = $this->getRequest()->getPost('payment');
18
  if ($paymentData) {
19
- $paymentData['checks'] = Mage_Payment_Model_Method_Abstract::CHECK_USE_INTERNAL
20
- | Mage_Payment_Model_Method_Abstract::CHECK_USE_FOR_COUNTRY
21
- | Mage_Payment_Model_Method_Abstract::CHECK_USE_FOR_CURRENCY
22
- | Mage_Payment_Model_Method_Abstract::CHECK_ORDER_TOTAL_MIN_MAX
23
- | Mage_Payment_Model_Method_Abstract::CHECK_ZERO_TOTAL;
24
  $this->_getOrderCreateModel()->setPaymentData($paymentData);
25
  $this->_getOrderCreateModel()->getQuote()->getPayment()->addData($paymentData);
26
  }
16
  $this->_processActionData('save');
17
  $paymentData = $this->getRequest()->getPost('payment');
18
  if ($paymentData) {
19
+ $paymentData['checks'] = Allopass_Hipay_Model_Method_Abstract::CHECK_USE_INTERNAL
20
+ | Allopass_Hipay_Model_Method_Abstract::CHECK_USE_FOR_COUNTRY
21
+ | Allopass_Hipay_Model_Method_Abstract::CHECK_USE_FOR_CURRENCY
22
+ | Allopass_Hipay_Model_Method_Abstract::CHECK_ORDER_TOTAL_MIN_MAX
23
+ | Allopass_Hipay_Model_Method_Abstract::CHECK_ZERO_TOTAL;
24
  $this->_getOrderCreateModel()->setPaymentData($paymentData);
25
  $this->_getOrderCreateModel()->getQuote()->getPayment()->addData($paymentData);
26
  }
app/code/community/Allopass/Hipay/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Allopass_Hipay>
5
- <version>1.2.3</version>
6
  </Allopass_Hipay>
7
  </modules>
8
  <global>
@@ -68,10 +68,6 @@
68
  </template>
69
  <template_hipay>
70
  <hosted>
71
- <basic>
72
- <label>Basic</label>
73
- <value>basic</value>
74
- </basic>
75
  <basicjs>
76
  <label>Basic-js</label>
77
  <value>basic-js</value>
@@ -85,7 +81,7 @@
85
  <code>AE</code>
86
  <code_hipay>american-express</code_hipay>
87
  <name>American Express</name>
88
- <order>0</order>
89
  </AE>
90
  <VI>
91
  <code>VI</code>
@@ -111,6 +107,12 @@
111
  <name>Bancontact / Mister Cash</name>
112
  <order>60</order>
113
  </BCMC>
 
 
 
 
 
 
114
  </types>
115
  </cc>
116
  <hosted>
@@ -119,7 +121,7 @@
119
  <code>AE</code>
120
  <code_hipay>american-express</code_hipay>
121
  <name>American Express</name>
122
- <order>0</order>
123
  </AE>
124
  <VI>
125
  <code>VI</code>
@@ -145,6 +147,12 @@
145
  <name>Bancontact / Mister Cash</name>
146
  <order>60</order>
147
  </BCMC>
 
 
 
 
 
 
148
  </types>
149
  </hosted>
150
  </payment_hipay>
@@ -340,7 +348,7 @@
340
  <payment>
341
  <hipay_cc>
342
  <active>0</active>
343
- <title>HiPay Credit Card</title>
344
  <payment_action>authorize_capture</payment_action>
345
  <cctypes>VI,MC,AE</cctypes>
346
  <display_card_owner>0</display_card_owner>
@@ -368,7 +376,7 @@
368
  </hipay_cc>
369
  <hipay_hosted>
370
  <active>0</active>
371
- <title>HiPay Hosted</title>
372
  <payment_action>authorize_capture</payment_action>
373
  <cctypes>american-express,visa,mastercard</cctypes>
374
  <order_status_payment_accepted>processing</order_status_payment_accepted>
2
  <config>
3
  <modules>
4
  <Allopass_Hipay>
5
+ <version>1.2.4</version>
6
  </Allopass_Hipay>
7
  </modules>
8
  <global>
68
  </template>
69
  <template_hipay>
70
  <hosted>
 
 
 
 
71
  <basicjs>
72
  <label>Basic-js</label>
73
  <value>basic-js</value>
81
  <code>AE</code>
82
  <code_hipay>american-express</code_hipay>
83
  <name>American Express</name>
84
+ <order>50</order>
85
  </AE>
86
  <VI>
87
  <code>VI</code>
107
  <name>Bancontact / Mister Cash</name>
108
  <order>60</order>
109
  </BCMC>
110
+ <CB>
111
+ <code>CB</code>
112
+ <code_hipay>cb</code_hipay>
113
+ <name>Carte Bancaire</name>
114
+ <order>0</order>
115
+ </CB>
116
  </types>
117
  </cc>
118
  <hosted>
121
  <code>AE</code>
122
  <code_hipay>american-express</code_hipay>
123
  <name>American Express</name>
124
+ <order>50</order>
125
  </AE>
126
  <VI>
127
  <code>VI</code>
147
  <name>Bancontact / Mister Cash</name>
148
  <order>60</order>
149
  </BCMC>
150
+ <CB>
151
+ <code>CB</code>
152
+ <code_hipay>cb</code_hipay>
153
+ <name>Carte Bancaire</name>
154
+ <order>0</order>
155
+ </CB>
156
  </types>
157
  </hosted>
158
  </payment_hipay>
348
  <payment>
349
  <hipay_cc>
350
  <active>0</active>
351
+ <title>Credit Card</title>
352
  <payment_action>authorize_capture</payment_action>
353
  <cctypes>VI,MC,AE</cctypes>
354
  <display_card_owner>0</display_card_owner>
376
  </hipay_cc>
377
  <hipay_hosted>
378
  <active>0</active>
379
+ <title>Credit Card</title>
380
  <payment_action>authorize_capture</payment_action>
381
  <cctypes>american-express,visa,mastercard</cctypes>
382
  <order_status_payment_accepted>processing</order_status_payment_accepted>
app/locale/en_US/Allopass_Hipay.csv CHANGED
@@ -3,7 +3,6 @@
3
  "Api password","Api password"
4
  "Api username test","Api username test"
5
  "Api password test","Api password test"
6
- "Hipay Credit Card","Hipay Credit Card"
7
  "Enabled","Enabled"
8
  "Title","Title"
9
  "Payment Action","Payment Action"
@@ -37,7 +36,6 @@
37
  "Record new card data","Record new credit card data"
38
  "Not use record card data","Not use record card data"
39
  "You will be redirect to payment page after submit order.","You will be redirect to payment page after submit order."
40
- "Hipay Credit Card","Hipay Credit Card"
41
  "Enabled","Enabled"
42
  "Title","Title"
43
  "Order status when payment accepted","Order status when payment accepted"
@@ -137,3 +135,10 @@
137
  "iFrame Width","iFrame Width"
138
  "iFrame Height","iFrame Height"
139
  "iFrame Style","iFrame Style"
 
 
 
 
 
 
 
3
  "Api password","Api password"
4
  "Api username test","Api username test"
5
  "Api password test","Api password test"
 
6
  "Enabled","Enabled"
7
  "Title","Title"
8
  "Payment Action","Payment Action"
36
  "Record new card data","Record new credit card data"
37
  "Not use record card data","Not use record card data"
38
  "You will be redirect to payment page after submit order.","You will be redirect to payment page after submit order."
 
39
  "Enabled","Enabled"
40
  "Title","Title"
41
  "Order status when payment accepted","Order status when payment accepted"
135
  "iFrame Width","iFrame Width"
136
  "iFrame Height","iFrame Height"
137
  "iFrame Style","iFrame Style"
138
+ "HiPay Fullservice credentials configuration","HiPay Fullservice credentials configuration"
139
+ "HiPay Fullservice Credit Card","HiPay Fullservice Credit Card API"
140
+ "HiPay Fullservice Hosted Page","HiPay Fullservice Credit Card Hosted Page"
141
+ "Hipay Hosted","HiPay Fullservice Credit Card Hosted Page"
142
+ "Hipay Credit Card","HiPay Fullservice Credit Card API"
143
+
144
+
app/locale/fr_FR/Allopass_Hipay.csv CHANGED
@@ -3,7 +3,7 @@
3
  "Api password","Mot de passe de l'API"
4
  "Api username test","Identifiant TEST de l'API"
5
  "Api password test","Mot de passe TEST de l'API"
6
- "Hipay Credit Card","Carte de crédit Hipay"
7
  "Enabled","Activé"
8
  "Title","Titre"
9
  "Payment Action","Type de paiement"
@@ -67,7 +67,7 @@
67
  "Page payment template","Template de la page de paiement."
68
  "Display card selector","Afficher le sélecteur de carte"
69
  "What is this?","Aide ?"
70
- "Hipay Hosted","Hipay page hébergée"
71
  "You will be debit of amount %s only after submit order.","Vous serez débité d'un montant de %s uniquement après validation de la commande à la prochaine étape."
72
  "Pending Capture","En attente de capture"
73
  "Capture Requested","Capture demandée"
@@ -138,6 +138,8 @@
138
  "iFrame Width","Largeur de l'iframe"
139
  "iFrame Height","Hauteur de l'iframe"
140
  "iFrame Style","Style de l'iframe"
141
-
 
 
142
 
143
 
3
  "Api password","Mot de passe de l'API"
4
  "Api username test","Identifiant TEST de l'API"
5
  "Api password test","Mot de passe TEST de l'API"
6
+ "Hipay Credit Card","HiPay Fullservice Carte Bancaire"
7
  "Enabled","Activé"
8
  "Title","Titre"
9
  "Payment Action","Type de paiement"
67
  "Page payment template","Template de la page de paiement."
68
  "Display card selector","Afficher le sélecteur de carte"
69
  "What is this?","Aide ?"
70
+ "Hipay Hosted","HiPay Fullservice Page Hébergée"
71
  "You will be debit of amount %s only after submit order.","Vous serez débité d'un montant de %s uniquement après validation de la commande à la prochaine étape."
72
  "Pending Capture","En attente de capture"
73
  "Capture Requested","Capture demandée"
138
  "iFrame Width","Largeur de l'iframe"
139
  "iFrame Height","Hauteur de l'iframe"
140
  "iFrame Style","Style de l'iframe"
141
+ "HiPay Fullservice credentials configuration","HiPay Fullservice credentials configuration"
142
+ "HiPay Fullservice Credit Card","HiPay Fullservice Credit Card API"
143
+ "HiPay Fullservice Hosted Page","HiPay Fullservice Credit Card Hosted Page"
144
 
145
 
app/locale/it_IT/Allopass_Hipay.csv CHANGED
@@ -117,3 +117,6 @@
117
  "iFrame Width","iFrame Width"
118
  "iFrame Height","iFrame Height"
119
  "iFrame Style","iFrame Style"
 
 
 
117
  "iFrame Width","iFrame Width"
118
  "iFrame Height","iFrame Height"
119
  "iFrame Style","iFrame Style"
120
+ "HiPay Fullservice credentials configuration","HiPay Fullservice credentials configuration"
121
+ "HiPay Fullservice Credit Card","HiPay Fullservice Credit Card API"
122
+ "HiPay Fullservice Hosted Page","HiPay Fullservice Credit Card Hosted Page"
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Allopass_Hipay</name>
4
- <version>1.2.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Payment method HIPAY</summary>
10
  <description>Payment method with hosted page and API</description>
11
- <notes>Let IPN treat Authorized status if order has been in fraud state and not if it's already processing.</notes>
 
12
  <authors><author><name>Kassim_Profileo</name><user>Kassim_Profileo</user><email>kassim@profileo.com</email></author></authors>
13
- <date>2015-11-18</date>
14
- <time>15:15:16</time>
15
- <contents><target name="magecommunity"><dir name="Allopass"><dir name="Hipay"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Card"><dir name="Edit"><file name="Form.php" hash="addfd57cd54aff9ce5b57759105ad221"/></dir><file name="Edit.php" hash="5f1896bb299030ade2090e2743ce2f95"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="3b88e16a00bcc97ad984613a8716448d"/></dir></dir></dir><dir name="PaymentProfile"><dir name="Edit"><file name="Form.php" hash="e17cc9773f3d4b1ef0981b513c659841"/></dir><file name="Edit.php" hash="7e51c6f1ea8d6012b6850329f7d574e8"/><file name="Grid.php" hash="f8ac0daa082f3c6d2be6289e935dbd31"/></dir><file name="PaymentProfile.php" hash="b02de6e3cf69724d7f901f9b4f42e333"/><dir name="SplitPayment"><dir name="Edit"><file name="Form.php" hash="06f8e4c7714d8e362c00ac8a4d88e292"/></dir><file name="Edit.php" hash="2aa5f311f6ba084420a6adc0fa518cc5"/><file name="Grid.php" hash="42031ca1b4a9a399e6e148378880ad82"/></dir><file name="SplitPayment.php" hash="1f5b84881308b79f0ada533862568e28"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="3dsRule.php" hash="e3808525b924001037cb93d497f86518"/><file name="Allowsplitpayment.php" hash="0c6e4378ba1537584417870c9eb2c59c"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/></dir></dir></dir></dir></dir><dir name="Card"><file name="Edit.php" hash="530cd326480c2d074dfdc59a578dd1db"/></dir><file name="Card.php" hash="8e9a964e1b44c4664b78a2f9a5f7b1ae"/><dir name="Checkout"><file name="Pending.php" hash="48112f7e2fdcc79ee9431cf5350e223f"/></dir><dir name="Form"><file name="Abstract.php" hash="1f1d3cc5cfbdea1833f74ad22638139d"/><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><dir name="Controller"><file name="Payment.php" hash="442236e180888eac3036a88784515841"/></dir><dir name="Helper"><file name="Data.php" hash="724d4cb5a12657237d03ef2731c4f89c"/></dir><dir name="Model"><dir name="Api"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="cebf9e03d310e65f23a2a4ddc980e26f"/><file name="Stream.php" hash="5a110dd1f33ee4c8319cec396fc4fa40"/></dir></dir></dir><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><file name="Card.php" hash="d649838a367dfc2f69649268f6b7998a"/><file name="Config.php" hash="58b729e16f5ac9ec28535013274d465a"/><dir name="Log"><file name="Adapter.php" hash="9d5533d5d3622c72cbc84abfd4e3116c"/></dir><dir name="Method"><file name="Abstract.php" hash="039da5ef8210ee602739dc37da10c534"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="ed8e077db41c1d2c2bacdb6eb416b524"/><file name="Dexia.php" hash="a385bcf6b0826917fecec6917a8230f9"/><file name="Giropay.php" hash="8f924fea486cd68e22dd55039c7cda77"/><file name="Hosted.php" hash="5bd41f736ddc997d5620932838b38849"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="PaypalApi.php" hash="7b107d521c52c39380bb5daf4716da52"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="ff20c8621b68fea2b9d96cf131d320e7"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><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><file name="Observer.php" hash="b2ebcb8df2049539befb893370d8c615"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><dir name="Resource"><dir name="Card"><file name="Collection.php" hash="4a9ca5d5124dcaa5fe9a01c7e864bf6e"/></dir><file name="Card.php" hash="5550c1486504972e6423fce49e3e8d93"/><dir name="PaymentProfile"><file name="Collection.php" hash="b1d5980904dbc3669cc6ee904c7620a3"/></dir><file name="PaymentProfile.php" hash="fb397fd11c35b19986d4688d207b55cb"/><dir name="Rule"><file name="Collection.php" hash="b4dd0d851cda670c6aafad0cf588b106"/></dir><file name="Rule.php" hash="115bccaa9e4d37ed03e179147ab3788d"/><dir name="SplitPayment"><file name="Collection.php" hash="c44859bdf1e4de9551bc31cd57e7ef88"/></dir><file name="SplitPayment.php" hash="133f41e753dfbb150cb61c6edf5745c9"/></dir><dir name="Rule"><dir name="Condition"><file name="Address.php" hash="4180131479d72272c7b2c67534341dbc"/><file name="Combine.php" hash="e57da0bfd13c85721ef06d9f5c1d5a45"/><file name="Customer.php" hash="b847ff261e77565af4f64761d378de59"/><dir name="Product"><file name="Combine.php" hash="b99adc27124c3c6f56d04f0bcb5a42be"/><file name="Found.php" hash="bc266762458faaba326b7d7245b688a8"/><file name="Subselect.php" hash="5c0d482cddd69d82350bc5fec15c40b7"/></dir><file name="Product.php" hash="5186cb9be313c7a772a11613ff4d1406"/></dir><file name="Config.php" hash="4034bf549bc274c836930a43d0ef8646"/></dir><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="CcType.php" hash="088d0e8c51f594092a0c6cd0f9bf6545"/><file name="CcTypeHosted.php" hash="f119a5901ac3a9056df56f9cb35b5e02"/><dir name="Order"><file name="HipayStatusValidate.php" hash="63414f71ce035909310f27842bc1b511"/><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><file name="Status.php" hash="395ac5e1567ee6095769abc6ce64fec0"/></dir><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><file name="SplitPayment.php" hash="38ccc9e82079d15a25e8d90710aa2b20"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="CcTypes.php" hash="916ab83c9e5e1ee18d488f42a090c524"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CardController.php" hash="1e5cba078cef7987df9314c467dd640e"/><file name="PaymentController.php" hash="d212b4ede76d1632a0554ee53285ec23"/><file name="PaymentProfileController.php" hash="887808a799db4e95d76bb9a014f80f29"/><file name="RuleController.php" hash="55291c15c7de616237b14dfad1bc5e80"/><file name="SplitPaymentController.php" hash="642960a1002c316efc04d3af4e6d2a57"/></dir><file name="CardController.php" hash="bb0bf974d25bf4d4c40e99904ba1dd35"/><file name="CbcController.php" hash="11a793cfef50322482b4d1e44f7fb427"/><file name="CcController.php" hash="2e45012894cac90a24c2017a427258b5"/><file name="CheckoutController.php" hash="8d565df4627074dd62c59e6d5b301ce0"/><file name="DexiaController.php" hash="abafa7205262125aef603f0d51445ebd"/><file name="GiropayController.php" hash="93ebe6d63e60627ee86815a7cc23006b"/><file name="HostedController.php" hash="f0bd2d41f36b0453e42063531b88d4a3"/><file name="IdealController.php" hash="49bc5c1a52c98cef934b45ce27da574a"/><file name="IngController.php" hash="43b8ae9e752d5268a51a164abc98df9f"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="NotifyController.php" hash="a05ff382d55531e2ff2c2db4f7011c75"/><file name="PaypalapiController.php" hash="6163a491b9e7b43593983da5735d29e6"/><file name="Przelewy24Controller.php" hash="d6923f98e8a53d8b8becd1d5ef99e0d0"/><file name="Przelewy24apiController.php" hash="bc488ef00a5a063d05aa12c545d8e8fe"/><file name="QiwiController.php" hash="6b3e05b2910dae0b919c50cb06363c57"/><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="40f3410aab48dfeb17b62a9f13577420"/></dir></dir><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><dir name="etc"><file name="config.xml" hash="2b219befbf3ee86c5e39162228b513ad"/><file name="system.xml" hash="d7e57b4927882fb81b281c0027bbf60b"/></dir><dir name="sql"><dir name="allopass_hipay_setup"><file name="mysql4-install-0.1.0.php" hash="f26c1b504004395dff2ec07d57bc5439"/><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></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="457415436810b9a57b0c5228ac4ae4b0"/></dir><dir name="template"><dir name="hipay"><dir name="card"><file name="account.phtml" hash="8e4ec26a1ccfb13bf8c4706d74990aad"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="checkout"><file name="pending.phtml" hash="34e6bba88ea5fdd6b4ea71595de638d6"/></dir><dir name="form"><file name="cc.phtml" hash="14cf953e5a2ff9f445694be21b59a9db"/><file name="hosted.phtml" hash="9272af0be34cff74a3c0a3642171b413"/></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="478e41f2896fd595f4d264149059c737"/></dir><dir name="template"><dir name="hipay"><dir name="form"><file name="cc.phtml" hash="558753da13affeb289d9d4725eb92871"/><file name="hosted.phtml" hash="1dc8481e0b754e12eaeb065da8a6e41f"/></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="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Allopass_Hipay.xml" hash="fd0ac2e9080c0a432a3a7b6d969171c0"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Allopass_Hipay.csv" hash="210189d6078821aa0928950143020264"/><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="f677586dd351c5dd41feee01929bc145"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="9ec2e3fc5610a60ce86dd24d0f83ff5d"/><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="92ab8e910907eb6ed33283e4f8567b9b"/><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></target><target name="mageskin"><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></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>5.5.99</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Allopass_Hipay</name>
4
+ <version>1.2.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Payment method HIPAY</summary>
10
  <description>Payment method with hosted page and API</description>
11
+ <notes>* Optimize cancel order query&#xD;
12
+ * Change some title</notes>
13
  <authors><author><name>Kassim_Profileo</name><user>Kassim_Profileo</user><email>kassim@profileo.com</email></author></authors>
14
+ <date>2015-11-24</date>
15
+ <time>11:23:17</time>
16
+ <contents><target name="magecommunity"><dir name="Allopass"><dir name="Hipay"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Card"><dir name="Edit"><file name="Form.php" hash="addfd57cd54aff9ce5b57759105ad221"/></dir><file name="Edit.php" hash="5f1896bb299030ade2090e2743ce2f95"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Card.php" hash="3b88e16a00bcc97ad984613a8716448d"/></dir></dir></dir><dir name="PaymentProfile"><dir name="Edit"><file name="Form.php" hash="e17cc9773f3d4b1ef0981b513c659841"/></dir><file name="Edit.php" hash="ef7b6945e91ef450a8a6a4ef0dbfef97"/><file name="Grid.php" hash="f8ac0daa082f3c6d2be6289e935dbd31"/></dir><file name="PaymentProfile.php" hash="b02de6e3cf69724d7f901f9b4f42e333"/><dir name="SplitPayment"><dir name="Edit"><file name="Form.php" hash="06f8e4c7714d8e362c00ac8a4d88e292"/></dir><file name="Edit.php" hash="2aa5f311f6ba084420a6adc0fa518cc5"/><file name="Grid.php" hash="42031ca1b4a9a399e6e148378880ad82"/></dir><file name="SplitPayment.php" hash="1f5b84881308b79f0ada533862568e28"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="3dsRule.php" hash="e3808525b924001037cb93d497f86518"/><file name="Allowsplitpayment.php" hash="0c6e4378ba1537584417870c9eb2c59c"/><file name="MultiselectSortable.php" hash="afba089fed75aefece6155de1210a856"/></dir></dir></dir></dir></dir><dir name="Card"><file name="Edit.php" hash="530cd326480c2d074dfdc59a578dd1db"/></dir><file name="Card.php" hash="8e9a964e1b44c4664b78a2f9a5f7b1ae"/><dir name="Checkout"><file name="Pending.php" hash="48112f7e2fdcc79ee9431cf5350e223f"/></dir><dir name="Form"><file name="Abstract.php" hash="1f1d3cc5cfbdea1833f74ad22638139d"/><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><dir name="Controller"><file name="Payment.php" hash="442236e180888eac3036a88784515841"/></dir><dir name="Helper"><file name="Data.php" hash="724d4cb5a12657237d03ef2731c4f89c"/></dir><dir name="Model"><dir name="Api"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="cebf9e03d310e65f23a2a4ddc980e26f"/><file name="Stream.php" hash="5a110dd1f33ee4c8319cec396fc4fa40"/></dir></dir></dir><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><file name="Card.php" hash="5d5ed0ece4cb9ef50bf445eee6911f8a"/><file name="Config.php" hash="58b729e16f5ac9ec28535013274d465a"/><dir name="Log"><file name="Adapter.php" hash="9d5533d5d3622c72cbc84abfd4e3116c"/></dir><dir name="Method"><file name="Abstract.php" hash="039da5ef8210ee602739dc37da10c534"/><file name="Cbc.php" hash="49d1b0e2ad320c1a78043bb7231de930"/><file name="Cc.php" hash="ed8e077db41c1d2c2bacdb6eb416b524"/><file name="Dexia.php" hash="a385bcf6b0826917fecec6917a8230f9"/><file name="Giropay.php" hash="8f924fea486cd68e22dd55039c7cda77"/><file name="Hosted.php" hash="5bd41f736ddc997d5620932838b38849"/><file name="Ideal.php" hash="0cf882d667b36c0e89bc1800ea9fa7a1"/><file name="Ing.php" hash="774c41e17868dcfe8031d047703a8b1c"/><file name="Kbc.php" hash="77981ab4ebd64d3555bd9fddccadf283"/><file name="PaypalApi.php" hash="7b107d521c52c39380bb5daf4716da52"/><file name="Przelewy24.php" hash="00b695e7b34b69f36d593587a9b5dcdd"/><file name="Przelewy24Api.php" hash="ff20c8621b68fea2b9d96cf131d320e7"/><file name="Qiwi.php" hash="acea5092f8fd1720d506d5be3714864f"/><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><file name="Observer.php" hash="ba479a7af20e364788967c3436b992be"/><file name="PaymentProfile.php" hash="002417022b9afb132e771bbb2eb09d1c"/><dir name="Resource"><dir name="Card"><file name="Collection.php" hash="4a9ca5d5124dcaa5fe9a01c7e864bf6e"/></dir><file name="Card.php" hash="5550c1486504972e6423fce49e3e8d93"/><dir name="PaymentProfile"><file name="Collection.php" hash="b1d5980904dbc3669cc6ee904c7620a3"/></dir><file name="PaymentProfile.php" hash="fb397fd11c35b19986d4688d207b55cb"/><dir name="Rule"><file name="Collection.php" hash="b4dd0d851cda670c6aafad0cf588b106"/></dir><file name="Rule.php" hash="115bccaa9e4d37ed03e179147ab3788d"/><dir name="SplitPayment"><file name="Collection.php" hash="c44859bdf1e4de9551bc31cd57e7ef88"/></dir><file name="SplitPayment.php" hash="133f41e753dfbb150cb61c6edf5745c9"/></dir><dir name="Rule"><dir name="Condition"><file name="Address.php" hash="4180131479d72272c7b2c67534341dbc"/><file name="Combine.php" hash="e57da0bfd13c85721ef06d9f5c1d5a45"/><file name="Customer.php" hash="b847ff261e77565af4f64761d378de59"/><dir name="Product"><file name="Combine.php" hash="b99adc27124c3c6f56d04f0bcb5a42be"/><file name="Found.php" hash="bc266762458faaba326b7d7245b688a8"/><file name="Subselect.php" hash="5c0d482cddd69d82350bc5fec15c40b7"/></dir><file name="Product.php" hash="5186cb9be313c7a772a11613ff4d1406"/></dir><file name="Config.php" hash="4034bf549bc274c836930a43d0ef8646"/></dir><file name="Rule.php" hash="4cddad3f6cb38af59dc2726d80148f51"/><dir name="Source"><file name="3ds.php" hash="e7b97e8a1c886b11951051a212c965ba"/><file name="CcType.php" hash="088d0e8c51f594092a0c6cd0f9bf6545"/><file name="CcTypeHosted.php" hash="f119a5901ac3a9056df56f9cb35b5e02"/><dir name="Order"><file name="HipayStatusValidate.php" hash="63414f71ce035909310f27842bc1b511"/><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><file name="Status.php" hash="395ac5e1567ee6095769abc6ce64fec0"/></dir><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><file name="SplitPayment.php" hash="38ccc9e82079d15a25e8d90710aa2b20"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="CcTypes.php" hash="916ab83c9e5e1ee18d488f42a090c524"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CardController.php" hash="1e5cba078cef7987df9314c467dd640e"/><file name="PaymentController.php" hash="d212b4ede76d1632a0554ee53285ec23"/><file name="PaymentProfileController.php" hash="887808a799db4e95d76bb9a014f80f29"/><file name="RuleController.php" hash="55291c15c7de616237b14dfad1bc5e80"/><file name="SplitPaymentController.php" hash="642960a1002c316efc04d3af4e6d2a57"/></dir><file name="CardController.php" hash="bb0bf974d25bf4d4c40e99904ba1dd35"/><file name="CbcController.php" hash="11a793cfef50322482b4d1e44f7fb427"/><file name="CcController.php" hash="2e45012894cac90a24c2017a427258b5"/><file name="CheckoutController.php" hash="8d565df4627074dd62c59e6d5b301ce0"/><file name="DexiaController.php" hash="abafa7205262125aef603f0d51445ebd"/><file name="GiropayController.php" hash="93ebe6d63e60627ee86815a7cc23006b"/><file name="HostedController.php" hash="f0bd2d41f36b0453e42063531b88d4a3"/><file name="IdealController.php" hash="49bc5c1a52c98cef934b45ce27da574a"/><file name="IngController.php" hash="43b8ae9e752d5268a51a164abc98df9f"/><file name="KbcController.php" hash="fad29361513cc354dcf200fde25265da"/><file name="NotifyController.php" hash="a05ff382d55531e2ff2c2db4f7011c75"/><file name="PaypalapiController.php" hash="6163a491b9e7b43593983da5735d29e6"/><file name="Przelewy24Controller.php" hash="d6923f98e8a53d8b8becd1d5ef99e0d0"/><file name="Przelewy24apiController.php" hash="bc488ef00a5a063d05aa12c545d8e8fe"/><file name="QiwiController.php" hash="6b3e05b2910dae0b919c50cb06363c57"/><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="68bf9e177386c3068bffa5249ce52329"/></dir></dir><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><dir name="etc"><file name="config.xml" hash="ce13f1a78730428df2e20d67ae1180a7"/><file name="system.xml" hash="d7e57b4927882fb81b281c0027bbf60b"/></dir><dir name="sql"><dir name="allopass_hipay_setup"><file name="mysql4-install-0.1.0.php" hash="f26c1b504004395dff2ec07d57bc5439"/><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></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="457415436810b9a57b0c5228ac4ae4b0"/></dir><dir name="template"><dir name="hipay"><dir name="card"><file name="account.phtml" hash="8e4ec26a1ccfb13bf8c4706d74990aad"/><dir name="form"><file name="edit.phtml" hash="befde62b0368c1afb8daa70d46796865"/></dir></dir><dir name="checkout"><file name="pending.phtml" hash="34e6bba88ea5fdd6b4ea71595de638d6"/></dir><dir name="form"><file name="cc.phtml" hash="14cf953e5a2ff9f445694be21b59a9db"/><file name="hosted.phtml" hash="9272af0be34cff74a3c0a3642171b413"/></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="478e41f2896fd595f4d264149059c737"/></dir><dir name="template"><dir name="hipay"><dir name="form"><file name="cc.phtml" hash="558753da13affeb289d9d4725eb92871"/><file name="hosted.phtml" hash="1dc8481e0b754e12eaeb065da8a6e41f"/></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="rules.phtml" hash="b25ca0397baffa2306ab70776b2febac"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Allopass_Hipay.xml" hash="fd0ac2e9080c0a432a3a7b6d969171c0"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Allopass_Hipay.csv" hash="b8f92ffaf6db845b758aa3e0651d7437"/><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="645ba86bef9697600a399edee449a5d4"/><dir name="template"><dir name="email"><file name="hipay_fraud_payment.html" hash="9ec2e3fc5610a60ce86dd24d0f83ff5d"/><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="1c67af480532f6b3001a995016b65bd3"/><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></target><target name="mageskin"><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></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>5.5.99</max></php></required></dependencies>
19
  </package>