Pay_NL - Version 3.6.2

Version Notes

Added Backend payment method Paylink

Download this release

Release Info

Developer Andy Pieters
Extension Pay_NL
Version 3.6.2
Comparing to
See all releases


Code changes from version 3.6.1 to 3.6.2

app/code/community/Pay/Payment/Block/Form/Paylink.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Pay_Payment_Block_Form_Paylink extends Pay_Payment_Block_Form_Abstract {
4
+
5
+ protected $paymentMethodId = Pay_Payment_Model_Paymentmethod_Paylink::OPTION_ID;
6
+ protected $paymentMethodName = 'Paylink';
7
+
8
+ protected $methodCode = 'pay_payment_paylink';
9
+
10
+ protected $template = 'pay/payment/form/paylink.phtml';
11
+
12
+ protected function _construct()
13
+ {
14
+ parent::_construct();
15
+ $this->setTemplate($this->template);
16
+ }
17
+ }
app/code/community/Pay/Payment/Helper/Api/Start.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
 
3
- class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
 
4
 
5
  protected $_version = 'v3';
6
  protected $_controller = 'transaction';
@@ -17,9 +18,19 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
17
  private $_enduser;
18
  private $_extra2;
19
  private $_extra3;
 
20
  private $_products = array();
21
 
22
- public function addProduct($id, $description, $price, $quantity, $vatPercentage) {
 
 
 
 
 
 
 
 
 
23
  if (!is_numeric($price)) {
24
  throw Mage::exception('Pay_Payment_Helper_Api', 'Price moet numeriek zijn', 1);
25
  }
@@ -41,11 +52,13 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
41
  $this->_products[] = $arrProduct;
42
  }
43
 
44
- public function setEnduser($enduser) {
 
45
  $this->_enduser = $enduser;
46
  }
47
 
48
- public function setAmount($amount) {
 
49
  if (is_numeric($amount)) {
50
  $this->_amount = $amount;
51
  } else {
@@ -53,11 +66,13 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
53
  }
54
  }
55
 
56
- public function setCurrency($currency) {
 
57
  $this->_currency = strtoupper($currency);
58
  }
59
 
60
- public function setPaymentOptionId($paymentOptionId) {
 
61
  if (is_numeric($paymentOptionId)) {
62
  $this->_paymentOptionId = $paymentOptionId;
63
  } else {
@@ -65,7 +80,8 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
65
  }
66
  }
67
 
68
- public function setPaymentOptionSubId($paymentOptionSubId) {
 
69
  if (is_numeric($paymentOptionSubId)) {
70
  $this->_paymentOptionSubId = $paymentOptionSubId;
71
  } else {
@@ -73,11 +89,13 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
73
  }
74
  }
75
 
76
- public function setFinishUrl($finishUrl) {
 
77
  $this->_finishUrl = $finishUrl;
78
  }
79
 
80
- public function setCostsForCustomer($costs_for_customer) {
 
81
  if ($costs_for_customer == 1) {
82
  $this->_costs_for_customer = 1;
83
  } else {
@@ -85,27 +103,33 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
85
  }
86
  }
87
 
88
- public function setExchangeUrl($exchangeUrl) {
 
89
  $this->_exchangeUrl = $exchangeUrl;
90
  }
91
 
92
- public function setExtra2($extra2) {
 
93
  $this->_extra2 = $extra2;
94
  }
95
 
96
- public function setExtra3($extra3) {
 
97
  $this->_extra3 = $extra3;
98
  }
99
 
100
- public function setOrderId($orderId) {
 
101
  $this->_orderId = $orderId;
102
  }
103
 
104
- public function setDescription($description) {
 
105
  $this->_description = $description;
106
  }
107
 
108
- protected function _getPostData() {
 
109
  $data = parent::_getPostData();
110
 
111
  /*
@@ -140,6 +164,10 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
140
  } else {
141
  $data['amount'] = $this->_amount;
142
  }
 
 
 
 
143
  if (!empty($this->_currency)) {
144
  $data['transaction']['currency'] = $this->_currency;
145
  }
@@ -179,7 +207,7 @@ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api {
179
  if ($this->_costs_for_customer == 1) {
180
  $data['transaction']['costs'] = 1;
181
  }
182
- // $data['transaction']['currency'] = 'EUR';
183
  if (!empty($this->_paymentOptionSubId)) {
184
  $data['paymentOptionSubId'] = $this->_paymentOptionSubId;
185
  }
1
  <?php
2
 
3
+ class Pay_Payment_Helper_Api_Start extends Pay_Payment_Helper_Api
4
+ {
5
 
6
  protected $_version = 'v3';
7
  protected $_controller = 'transaction';
18
  private $_enduser;
19
  private $_extra2;
20
  private $_extra3;
21
+ private $_expireDate;
22
  private $_products = array();
23
 
24
+ /**
25
+ * @param string $expireDate
26
+ */
27
+ public function setExpireDate($expireDate)
28
+ {
29
+ $this->_expireDate = $expireDate;
30
+ }
31
+
32
+ public function addProduct($id, $description, $price, $quantity, $vatPercentage)
33
+ {
34
  if (!is_numeric($price)) {
35
  throw Mage::exception('Pay_Payment_Helper_Api', 'Price moet numeriek zijn', 1);
36
  }
52
  $this->_products[] = $arrProduct;
53
  }
54
 
55
+ public function setEnduser($enduser)
56
+ {
57
  $this->_enduser = $enduser;
58
  }
59
 
60
+ public function setAmount($amount)
61
+ {
62
  if (is_numeric($amount)) {
63
  $this->_amount = $amount;
64
  } else {
66
  }
67
  }
68
 
69
+ public function setCurrency($currency)
70
+ {
71
  $this->_currency = strtoupper($currency);
72
  }
73
 
74
+ public function setPaymentOptionId($paymentOptionId)
75
+ {
76
  if (is_numeric($paymentOptionId)) {
77
  $this->_paymentOptionId = $paymentOptionId;
78
  } else {
80
  }
81
  }
82
 
83
+ public function setPaymentOptionSubId($paymentOptionSubId)
84
+ {
85
  if (is_numeric($paymentOptionSubId)) {
86
  $this->_paymentOptionSubId = $paymentOptionSubId;
87
  } else {
89
  }
90
  }
91
 
92
+ public function setFinishUrl($finishUrl)
93
+ {
94
  $this->_finishUrl = $finishUrl;
95
  }
96
 
97
+ public function setCostsForCustomer($costs_for_customer)
98
+ {
99
  if ($costs_for_customer == 1) {
100
  $this->_costs_for_customer = 1;
101
  } else {
103
  }
104
  }
105
 
106
+ public function setExchangeUrl($exchangeUrl)
107
+ {
108
  $this->_exchangeUrl = $exchangeUrl;
109
  }
110
 
111
+ public function setExtra2($extra2)
112
+ {
113
  $this->_extra2 = $extra2;
114
  }
115
 
116
+ public function setExtra3($extra3)
117
+ {
118
  $this->_extra3 = $extra3;
119
  }
120
 
121
+ public function setOrderId($orderId)
122
+ {
123
  $this->_orderId = $orderId;
124
  }
125
 
126
+ public function setDescription($description)
127
+ {
128
  $this->_description = $description;
129
  }
130
 
131
+ protected function _getPostData()
132
+ {
133
  $data = parent::_getPostData();
134
 
135
  /*
164
  } else {
165
  $data['amount'] = $this->_amount;
166
  }
167
+ if (!empty($this->_expireDate)) {
168
+ $data['transaction']['expireDate'] = $this->_expireDate;
169
+ }
170
+
171
  if (!empty($this->_currency)) {
172
  $data['transaction']['currency'] = $this->_currency;
173
  }
207
  if ($this->_costs_for_customer == 1) {
208
  $data['transaction']['costs'] = 1;
209
  }
210
+
211
  if (!empty($this->_paymentOptionSubId)) {
212
  $data['paymentOptionSubId'] = $this->_paymentOptionSubId;
213
  }
app/code/community/Pay/Payment/Model/Paymentmethod.php CHANGED
@@ -133,6 +133,11 @@ class Pay_Payment_Model_Paymentmethod extends Mage_Payment_Model_Method_Abstract
133
 
134
  $api = Mage::helper('pay_payment/api_start');
135
  /* @var $api Pay_Payment_Helper_Api_Start */
 
 
 
 
 
136
  $api->setExtra2($order->getCustomerEmail());
137
 
138
  if ($sendOrderData == 1) {
133
 
134
  $api = Mage::helper('pay_payment/api_start');
135
  /* @var $api Pay_Payment_Helper_Api_Start */
136
+
137
+ if(isset($additionalData['valid_days'])){
138
+ $api->setExpireDate(date('d-m-Y H:i:s', strtotime('+'.$additionalData['valid_days'].' days')));
139
+ }
140
+
141
  $api->setExtra2($order->getCustomerEmail());
142
 
143
  if ($sendOrderData == 1) {
app/code/community/Pay/Payment/Model/Paymentmethod/Klarna.php CHANGED
@@ -34,7 +34,7 @@ class Pay_Payment_Model_Paymentmethod_Klarna extends Pay_Payment_Model_Paymentme
34
  * @return boolean
35
  */
36
 
37
- public function capture(Mage_Sales_Model_Order_Payment $payment, $amount)
38
  {
39
  $transaction = $payment->getAuthorizationTransaction();
40
 
34
  * @return boolean
35
  */
36
 
37
+ public function capture(Varien_Object $payment, $amount)
38
  {
39
  $transaction = $payment->getAuthorizationTransaction();
40
 
app/code/community/Pay/Payment/Model/Paymentmethod/Paylink.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Pay_Payment_Model_Paymentmethod_Paylink extends Pay_Payment_Model_Paymentmethod
4
+ {
5
+
6
+ const OPTION_ID = 961;
7
+ protected $_paymentOptionId = 961;
8
+ protected $_code = 'pay_payment_paylink';
9
+ protected $_formBlockType = 'pay_payment/form_paylink';
10
+ // Can only be used in backend orders
11
+ protected $_canUseInternal = true;
12
+ protected $_canUseCheckout = false;
13
+
14
+
15
+ // public function authorize(Mage_Sales_Model_Order_Payment $payment, $amount)
16
+ // {
17
+ // $order = $payment->getOrder();
18
+ // $method = $payment->getMethodInstance();
19
+ //
20
+ // $data = $method->startPayment($order);
21
+ //
22
+ // $payment->setTransactionId($data['transactionId'])
23
+ // ->setIsTransactionClosed(0);
24
+ //
25
+ // $transaction = $payment->addTransaction(Mage_Sales_Model_Order_Payment_Transaction::TYPE_AUTH);
26
+ //
27
+ // $transaction->setId($data['transactionId']);
28
+ // $transaction->save();
29
+ // $payment->save();
30
+ //
31
+ // return parent::authorize($payment, $amount); // TODO: Change the autogenerated stub
32
+ // }
33
+
34
+ public function initialize($paymentAction, $stateObject)
35
+ {
36
+ switch ($paymentAction) {
37
+ case self::ACTION_AUTHORIZE:
38
+ case self::ACTION_AUTHORIZE_CAPTURE:
39
+ $payment = $this->getInfoInstance();
40
+ $order = $payment->getOrder();
41
+ $method = $payment->getMethodInstance();
42
+
43
+ $data = $method->startPayment($order);
44
+
45
+ $order->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, 'pending_payment', '', false);
46
+
47
+ $stateObject->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
48
+ $stateObject->setStatus('pending_payment');
49
+ $stateObject->setIsNotified(false);
50
+ break;
51
+ default:
52
+ break;
53
+ }
54
+ return parent::initialize();
55
+ }
56
+ }
57
+
app/code/community/Pay/Payment/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Pay_Payment>
5
- <version>3.6.1</version>
6
  </Pay_Payment>
7
  </modules>
8
 
@@ -502,6 +502,16 @@
502
  <send_mail>success</send_mail>
503
  <limit_shipping>0</limit_shipping>
504
  </pay_payment_vvvgiftcard>
 
 
 
 
 
 
 
 
 
 
505
  </payment>
506
  </default>
507
  </config>
2
  <config>
3
  <modules>
4
  <Pay_Payment>
5
+ <version>3.6.2</version>
6
  </Pay_Payment>
7
  </modules>
8
 
502
  <send_mail>success</send_mail>
503
  <limit_shipping>0</limit_shipping>
504
  </pay_payment_vvvgiftcard>
505
+ <pay_payment_paylink>
506
+ <active>1</active>
507
+ <model>pay_payment/Paymentmethod_Paylink</model>
508
+ <title>Pay.nl Betaallink</title>
509
+ <payment_action>authorize</payment_action>
510
+ <order_status>pending_payment</order_status>
511
+ <order_status_success>processing</order_status_success>
512
+ <send_mail>success</send_mail>
513
+ <limit_shipping>0</limit_shipping>
514
+ </pay_payment_paylink>
515
  </payment>
516
  </default>
517
  </config>
app/code/community/Pay/Payment/etc/system.xml CHANGED
@@ -233,6 +233,128 @@
233
  </test123>
234
  </fields>
235
  </loaded_payment_methods>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  <pay_payment_afterpay type="group" translate="label" module="pay_payment">
237
  <label>Afterpay</label>
238
  <model>pay_payment/Model_Paymentmethod_Afterpay</model>
233
  </test123>
234
  </fields>
235
  </loaded_payment_methods>
236
+ <pay_payment_paylink type="group" translate="label" module="pay_payment">
237
+ <label>Betaallink (alleen admin orders)</label>
238
+ <model>pay_payment/Model_Paymentmethod_Paylink</model>
239
+ <sort_order>500</sort_order>
240
+ <show_in_default>1</show_in_default>
241
+ <show_in_website>1</show_in_website>
242
+ <show_in_store>1</show_in_store>
243
+ <fields>
244
+ <active translate="label">
245
+ <label>Actief</label>
246
+ <comment>Wilt u deze betaalmethode gebruiken</comment>
247
+ <sort_order>1</sort_order>
248
+ <show_in_default>1</show_in_default>
249
+ <show_in_website>1</show_in_website>
250
+ <show_in_store>1</show_in_store>
251
+ <frontend_type>select</frontend_type>
252
+ <source_model>adminhtml/system_config_source_yesno</source_model>
253
+ <config_path>payment/pay_payment_paylink/active</config_path>
254
+ </active>
255
+ <title translate="label">
256
+ <depends>
257
+ <active>1</active>
258
+ </depends>
259
+ <label>Titel van de betaalmethode</label>
260
+ <frontend_type>text</frontend_type>
261
+ <sort_order>2</sort_order>
262
+ <show_in_default>1</show_in_default>
263
+ <show_in_website>1</show_in_website>
264
+ <show_in_store>1</show_in_store>
265
+ <config_path>payment/pay_payment_paylink/title</config_path>
266
+ </title>
267
+ <order_status translate="label">
268
+ <depends>
269
+ <active>1</active>
270
+ </depends>
271
+ <label>Nieuwe order status</label>
272
+ <comment>De status die een order moet krijgen bij het toevoegen</comment>
273
+ <frontend_type>select</frontend_type>
274
+ <source_model>pay_payment/source_status_pendingPayment</source_model>
275
+ <sort_order>11</sort_order>
276
+ <show_in_default>1</show_in_default>
277
+ <show_in_website>1</show_in_website>
278
+ <show_in_store>1</show_in_store>
279
+ <config_path>payment/pay_payment_paylink/order_status</config_path>
280
+ </order_status>
281
+ <order_status_success translate="label">
282
+ <depends>
283
+ <active>1</active>
284
+ </depends>
285
+ <label>Gelukt order status</label>
286
+ <comment>De status die een order moet krijgen na succesvolle betaling</comment>
287
+ <frontend_type>select</frontend_type>
288
+ <source_model>pay_payment/source_status_processing</source_model>
289
+ <sort_order>12</sort_order>
290
+ <show_in_default>1</show_in_default>
291
+ <show_in_website>1</show_in_website>
292
+ <show_in_store>1</show_in_store>
293
+ <config_path>payment/pay_payment_paylink/order_status_success</config_path>
294
+ </order_status_success>
295
+ <charge_type translate="label">
296
+ <depends>
297
+ <active>1</active>
298
+ </depends>
299
+ <label>Extra kosten rekenen</label>
300
+ <comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage
301
+ van
302
+ het
303
+ totaalbedrag of een vast bedrag
304
+ </comment>
305
+ <frontend_type>select</frontend_type>
306
+ <source_model>pay_payment/system_config_source_chargetype</source_model>
307
+ <sort_order>200</sort_order>
308
+ <show_in_default>1</show_in_default>
309
+ <show_in_website>1</show_in_website>
310
+ <show_in_store>1</show_in_store>
311
+ <config_path>payment/pay_payment_paylink/charge_type</config_path>
312
+ </charge_type>
313
+ <charge_value translate="label">
314
+ <depends>
315
+ <active>1</active>
316
+ </depends>
317
+ <label>Extra kosten</label>
318
+ <comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor
319
+ decimalen,
320
+ als u geen extra kosten wilt rekenen vult u niets in
321
+ </comment>
322
+ <frontend_type>text</frontend_type>
323
+ <sort_order>201</sort_order>
324
+ <show_in_default>1</show_in_default>
325
+ <show_in_website>1</show_in_website>
326
+ <show_in_store>1</show_in_store>
327
+ <config_path>payment/pay_payment_paylink/charge_value</config_path>
328
+ </charge_value>
329
+ <charge_tax_class translate="label">
330
+ <depends>
331
+ <active>1</active>
332
+ </depends>
333
+ <label>Btw voor extra kosten</label>
334
+ <frontend_type>select</frontend_type>
335
+ <source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
336
+ <sort_order>202</sort_order>
337
+ <show_in_default>1</show_in_default>
338
+ <show_in_website>1</show_in_website>
339
+ <show_in_store>1</show_in_store>
340
+ <config_path>payment/pay_payment_paylink/charge_tax_class</config_path>
341
+ </charge_tax_class>
342
+ <send_mail translate="label">
343
+ <depends>
344
+ <active>1</active>
345
+ </depends>
346
+ <label>Bevestigingsmail sturen</label>
347
+ <comment>Wanneer wilt u dat de bevestigingsmail wordt verstuurd</comment>
348
+ <sort_order>300</sort_order>
349
+ <show_in_default>1</show_in_default>
350
+ <show_in_website>1</show_in_website>
351
+ <show_in_store>1</show_in_store>
352
+ <frontend_type>select</frontend_type>
353
+ <source_model>pay_payment/source_sendmail</source_model>
354
+ <config_path>payment/pay_payment_paylink/send_mail</config_path>
355
+ </send_mail>
356
+ </fields>
357
+ </pay_payment_paylink>
358
  <pay_payment_afterpay type="group" translate="label" module="pay_payment">
359
  <label>Afterpay</label>
360
  <model>pay_payment/Model_Paymentmethod_Afterpay</model>
app/design/adminhtml/base/default/template/pay/payment/form/default.phtml ADDED
File without changes
app/design/adminhtml/base/default/template/pay/payment/form/paylink.phtml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $_code = $this->getMethodCode();
3
+ ?>
4
+ <ul id="payment_form_<?php echo $_code ?>" style="display:none;">
5
+ <li>
6
+ <div class="input-box">
7
+
8
+
9
+ <label for="valid_days">Geldigheid in dagen</label><br>
10
+ <select id="valid_days" name='payment[valid_days]'>
11
+ <?php for ($i = 1; $i < 31; $i++) {
12
+ $selected = '';
13
+ if ($i == 7) $selected = "selected=''";
14
+ echo "<option value='$i' $selected >$i</option>";
15
+ } ?>
16
+ </select>
17
+ </div>
18
+ </li>
19
+
20
+
21
+ </ul>
22
+ <div>
23
+ <?php echo $this->getMethod()->getConfigData('message'); ?>
24
+ </div>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Pay_NL</name>
4
- <version>3.6.1</version>
5
  <stability>stable</stability>
6
  <license>Pay</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Betaalmethoden van pay.nl</summary>
10
  <description>Magento plugin voor betaalmethoden van pay.nl</description>
11
- <notes>removed newlines in config.xml</notes>
12
  <authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
13
- <date>2016-12-23</date>
14
- <time>10:13:00</time>
15
- <contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="efa170c6d6373db23cbbc431dfd16dd1"/></dir><dir name="Invoice"><file name="Totals.php" hash="660af963b2284d67f2a7d2fed81547f5"/></dir><file name="Totals.php" hash="6e1b2e3ff405dd6b71b3fcad4b7aa6dd"/></dir><file name="Totals.php" hash="21d34a974051ffebad9649476907c470"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="3a924642ba346f3f7a3d546a0177549d"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="57983ea76d42f0d20f1dda98964c05e2"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Klarna.php" hash="d23264284abfc0ec083a1042b28b8c14"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><dir name="Api"><file name="Capture.php" hash="cf258c8163f5d82b2c19587e58924c6e"/><file name="Exception.php" hash="4b4bc19e5aa40cafa38807e9a59661b3"/><file name="Getservice.php" hash="19172bd4aa57980d7cb7a38f3c6e9c39"/><file name="Info.php" hash="fe2f4855d9085e38e4b4a59ee521462e"/><file name="Ispayserverip.php" hash="17500fbea806c329192d8f01c58b682e"/><file name="Refund.php" hash="b7200111390ce8b5cd22074af1191300"/><file name="Start.php" hash="0bf828a6f70bdc43ae286799b806dfe8"/></dir><file name="Api.php" hash="f5791a80907f09cd1d0bd7ed3a874db1"/><file name="Data.php" hash="d536a2f3220fd3d5cdbf186bbb85d82c"/><file name="Order.php" hash="7fa57a1b4c19b87139921acaa408afbd"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="ad86753b77f5ba38f9f487a21b5dd740"/><file name="Afterpayem.php" hash="0e46d05dbd0e50568ce501f015a4bef9"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="16c12d733d8a1e22e92a4e8ee7dcffd1"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="60f67926b2921a8b88b5b00766ae4694"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Focum.php" hash="8f7e4b3dfde76bf83a5a72d38cd276c3"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="05ed867fc3608b9d68eeec798d3a1c9d"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Klarna.php" hash="c6bf97f830d0d400382965131cb907d9"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="b2778e85cd0e7f989ad0ad42a7b713d9"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="db1725df84a85e5e6885c497a0d364ee"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="aded24e6ad69b2d312ca7cb9cf08594e"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="eb824f206b938f6f68c67885e0fc848a"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="6849f3776bb57f743b11a0a67827f5fa"/><file name="OrderController.php" hash="28cdb511a0eb3687fc8833aa7b9ea61c"/></dir><dir name="etc"><file name="config.xml" hash="5484cb6f0c0a6064581109aa5cf84102"/><file name="system.xml" hash="2dd2af8d769794b1d62f95c074e26282"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.1.2.8.php" hash="7191d2eae22bede77c14292f81241707"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="6bcb9d73a61bea4081c02b3f21a7c84e"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="klarna.phtml" hash="1a496f7ebb8bd1361332519a3331faaa"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Pay_NL</name>
4
+ <version>3.6.2</version>
5
  <stability>stable</stability>
6
  <license>Pay</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Betaalmethoden van pay.nl</summary>
10
  <description>Magento plugin voor betaalmethoden van pay.nl</description>
11
+ <notes>Added Backend payment method Paylink</notes>
12
  <authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
13
+ <date>2017-01-06</date>
14
+ <time>15:18:26</time>
15
+ <contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="035161a836b38119a3deee9a53aa0493"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="388fd5b8c91b469989956a44d3747981"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="efa170c6d6373db23cbbc431dfd16dd1"/></dir><dir name="Invoice"><file name="Totals.php" hash="660af963b2284d67f2a7d2fed81547f5"/></dir><file name="Totals.php" hash="6e1b2e3ff405dd6b71b3fcad4b7aa6dd"/></dir><file name="Totals.php" hash="21d34a974051ffebad9649476907c470"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="3a924642ba346f3f7a3d546a0177549d"/><file name="Afterpay.php" hash="60e7120d92a35479229dc8686965170f"/><file name="Afterpayem.php" hash="81d7859343d26234ae897cf236acb3c9"/><file name="Amex.php" hash="9c4945bb3577d56002dc7cd24ce00fd3"/><file name="Billink.php" hash="57983ea76d42f0d20f1dda98964c05e2"/><file name="Bitcoin.php" hash="f3a40f1d2691aed2f9e7f3477b5deb1c"/><file name="Capayable.php" hash="1fb8d87532881f98ba65c46215910cdd"/><file name="CapayableGespreid.php" hash="082ca172c67f29185b21e935e32c9c1e"/><file name="Cartebleue.php" hash="db7da62ea79ae9e8a15998b91618c7cb"/><file name="Fashioncheque.php" hash="7c1a9727da5d3fccd0a07abb7424f296"/><file name="Focum.php" hash="174b8123191d98dd2328de887c9450df"/><file name="Gezondheidsbon.php" hash="33fcf9147f239a604bd4fba78ea2cba4"/><file name="Giropay.php" hash="b2f52e1b1e3340950238bde715f8f963"/><file name="Givacard.php" hash="d2dc92a3b66236a302a54049a08840e0"/><file name="Ideal.php" hash="fef986eaba046584083e36f3609a0013"/><file name="Incasso.php" hash="aebe891d50b69970bd46f59d23814edb"/><file name="Klarna.php" hash="d23264284abfc0ec083a1042b28b8c14"/><file name="Maestro.php" hash="82b16a17cd78e1ad6f46fe751da7c8e4"/><file name="Mistercash.php" hash="ed955716ad3c8ad4bc00f374cd0cfd8c"/><file name="Mybank.php" hash="057c8079eebde684e9227ab2d7e14405"/><file name="Overboeking.php" hash="f4be14559a4a8c3e2daec114f45bcdd2"/><file name="Paylink.php" hash="88aa76f66dd6de2c1edbaa8fa2f82848"/><file name="Paypal.php" hash="f9579c1c34eb4436e53f761c2dee258a"/><file name="Paysafecard.php" hash="6df3b810346618d9161a8e9cac559deb"/><file name="Podiumkadokaart.php" hash="eeac3bafc861cffb016b9a2b2e3826a9"/><file name="Postepay.php" hash="7aa30da423bf38cfdf4a4deb6b628d1d"/><file name="Sofortbanking.php" hash="6900b858d9081ba94c1eb2d543672891"/><file name="Telefoon.php" hash="54c8520b21e1c999b52c54e93b542df8"/><file name="Visamastercard.php" hash="ce3a7868f9b8860acaaf176fc153896f"/><file name="Vvvgiftcard.php" hash="4830f8b4d221316ecdcb28b419799d23"/><file name="Webshopgiftcard.php" hash="3061340972cc57c3baf5a372a1fd7b61"/><file name="Wijncadeau.php" hash="72b1003d47bf7d03c8c14f3a04919e17"/><file name="Yourgift.php" hash="4a2fafa29ca7d860e99529dd7f2cbff4"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="ed22b3a323eafbea1e211ce7b8babf5d"/></dir><dir name="Invoice"><file name="Totals.php" hash="f609b1022bf81824e8863548bb97ca70"/></dir><file name="Totals.php" hash="cdb66b39cea22a6ed2aef9454c90c4b7"/></dir></dir></dir><file name="Exception.php" hash="a200bf2c08b9b9ee4d126feb40abbd19"/><dir name="Helper"><dir name="Api"><file name="Capture.php" hash="cf258c8163f5d82b2c19587e58924c6e"/><file name="Exception.php" hash="4b4bc19e5aa40cafa38807e9a59661b3"/><file name="Getservice.php" hash="19172bd4aa57980d7cb7a38f3c6e9c39"/><file name="Info.php" hash="fe2f4855d9085e38e4b4a59ee521462e"/><file name="Ispayserverip.php" hash="17500fbea806c329192d8f01c58b682e"/><file name="Refund.php" hash="b7200111390ce8b5cd22074af1191300"/><file name="Start.php" hash="533a59445794bd3ca1d89e435b50b977"/></dir><file name="Api.php" hash="f5791a80907f09cd1d0bd7ed3a874db1"/><file name="Data.php" hash="d536a2f3220fd3d5cdbf186bbb85d82c"/><file name="Order.php" hash="7fa57a1b4c19b87139921acaa408afbd"/><file name="Total.php" hash="0a7d2b69cd75323c38d69de9073db4c0"/><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="a232e48f459a6556c393f4da7a0d4139"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="54034bcf55cc7586e3d9cea66a267ed0"/></dir><file name="Option.php" hash="70563149e562bb27cee0f8041e170fce"/><dir name="Optionsub"><file name="Collection.php" hash="90f32544532471e2fb2dcd5a54b66be8"/></dir><file name="Optionsub.php" hash="20838820f4dc50ca04c8faf79597aea0"/><dir name="Transaction"><file name="Collection.php" hash="289e4368ab9d03e36bec938f9b3c9666"/></dir><file name="Transaction.php" hash="cb2787ab540acf82e94daef0ba07235e"/></dir><file name="Option.php" hash="2a42d9bb5040b1f2964c146149cb1afd"/><file name="Optionsub.php" hash="acc178145aec8aa3f813055188cec3b5"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="ad86753b77f5ba38f9f487a21b5dd740"/><file name="Afterpayem.php" hash="0e46d05dbd0e50568ce501f015a4bef9"/><file name="Amex.php" hash="7b4157754d63950c3896a516db92e8f2"/><file name="Billink.php" hash="16c12d733d8a1e22e92a4e8ee7dcffd1"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Capayable.php" hash="60f67926b2921a8b88b5b00766ae4694"/><file name="CapayableGespreid.php" hash="cf13bf9b313b1e73afc66ca9953291cf"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Focum.php" hash="8f7e4b3dfde76bf83a5a72d38cd276c3"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="05ed867fc3608b9d68eeec798d3a1c9d"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Klarna.php" hash="e5f70e917beb5242d5054cd4745bfbe5"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Mistercash.php" hash="f731220c7c1b1bef18632d2463d9a1a7"/><file name="Mybank.php" hash="15343fcf04a43da6209a2d68e530ed8d"/><file name="Overboeking.php" hash="9d2829863036d3990a1e1e650fa651b3"/><file name="Paylink.php" hash="ec687bb450cc96b1e1620e0d83c1fa48"/><file name="Paypal.php" hash="cab6b68d26e84407fa33089df7ac54c8"/><file name="Paysafecard.php" hash="932534b552ea0668aa7923c931dd546a"/><file name="Podiumkadokaart.php" hash="98e0fda57978ac23f8ccac603a62c55d"/><file name="Postepay.php" hash="b98826f7a81a1631227de202ed769e1d"/><file name="Sofortbanking.php" hash="989478f44af7f829d5566734bfae96c3"/><file name="Telefoon.php" hash="8744b545ef8c5f55cc6c3d209c27e8af"/><file name="Visamastercard.php" hash="db8cf0d660bd13a52ed79822350bbcc5"/><file name="Vvvgiftcard.php" hash="a726dbdf43590afec40b898797c6e90c"/><file name="Webshopgiftcard.php" hash="746e512f5421e465010afe85a3db88fc"/><file name="Wijncadeau.php" hash="f5de786cd19fc9dc9ce82e15a2c78c2d"/><file name="Yourgift.php" hash="dd5f2c77dd2a2c473d9153fb243cf454"/></dir><file name="Paymentmethod.php" hash="a786538827f41a6bdb48aacbd668d093"/><dir name="Paypal"><file name="Cart.php" hash="4e2c74c4f744ddc613023ebeea924a25"/></dir><dir name="Resource"><file name="Setup.php" hash="4bf6f4eb88b06047e021f55077898312"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="db1725df84a85e5e6885c497a0d364ee"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="aded24e6ad69b2d312ca7cb9cf08594e"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="eb824f206b938f6f68c67885e0fc848a"/></dir></dir></dir></dir><dir name="Source"><file name="Gateway.php" hash="78d710bc4415e9872f270cd15b30551d"/><file name="Iconsize.php" hash="6e3d674afb63ddcc8f30a968b8a9dd71"/><file name="Language.php" hash="53db4f77dcf223a1afd260c565150bfe"/><dir name="Paymentmethod"><file name="Active.php" hash="ee0210654744b696b79a95f1c4747be1"/><dir name="Afterpay"><file name="Active.php" hash="631b79947d92cf932c80eca13f53afe9"/></dir><dir name="Afterpayem"><file name="Active.php" hash="1d049374372537c86e2c593e452889d1"/></dir><dir name="Amex"><file name="Active.php" hash="bc1e611d56d0372959a4b66f172cd1e0"/></dir><dir name="Billink"><file name="Active.php" hash="18d119c4720809e1cd82a51e95dd8a77"/></dir><dir name="Bitcoin"><file name="Active.php" hash="fc89631b3cda4a656d9b7f3973849eae"/></dir><dir name="Capayable"><file name="Active.php" hash="65d3e8a72527f75942e6054192965aa7"/></dir><dir name="CapayableGespreid"><file name="Active.php" hash="a471a6a2c7a3a59780c89a67ed8a6924"/></dir><dir name="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Focum"><file name="Active.php" hash="418942b5cf3a48d515cf3589b00637e6"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="f24be4a3c557a717634e9d874c442d02"/></dir><dir name="Giropay"><file name="Active.php" hash="1552d5fc9fbb84a2d2f3871a55ac4ec6"/></dir><dir name="Givacard"><file name="Active.php" hash="c69157dff1c3dc4572d693c63140969b"/></dir><dir name="Ideal"><file name="Active.php" hash="85d0fcdfa9d3258d6ff5bceae5b0042f"/><file name="Selecttype.php" hash="37e19c073cf39469efe1ce9d7548a4b7"/></dir><dir name="Incasso"><file name="Active.php" hash="d99d1c2538d021f126243b738564fc4a"/></dir><dir name="Klarna"><file name="Active.php" hash="c16af8dbed563f8eb0c0794428955283"/></dir><dir name="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Mistercash"><file name="Active.php" hash="24633712262b195c058abb08b7468ee6"/></dir><dir name="Mybank"><file name="Active.php" hash="d29339a25c6a1bd4c02e0609ad3668cf"/></dir><dir name="Overboeking"><file name="Active.php" hash="10c1163ece5af584568e7cc8a2aa6975"/></dir><dir name="Paypal"><file name="Active.php" hash="626755f8781e02fdc5693b4f21a43be3"/></dir><dir name="Paysafecard"><file name="Active.php" hash="498f7ca442b0b640a40917b9e891664c"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="2836dfcb49fb6e267c169ea0f1a8e011"/></dir><dir name="Postepay"><file name="Active.php" hash="40101c5b929e5c652b7c73d38bd55b00"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="6090cc3aa35ba5655e1c3766c22d73a8"/></dir><dir name="Telefoon"><file name="Active.php" hash="e48b97faa7bf1744787e3ac60c0f178c"/></dir><dir name="Visamastercard"><file name="Active.php" hash="89130148898e2cf60e97630820ab8958"/></dir><dir name="Vvvgiftcard"><file name="Active.php" hash="ed0258c05c2e16ea189dfbd221a45b51"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="4340b8530118937df32caa2a53294b5b"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="b0b9a73e470a188731c6121b642c3710"/></dir><dir name="Yourgift"><file name="Active.php" hash="2e277ce8b3407f037468c17b818f4144"/></dir></dir><file name="Sendmail.php" hash="626c01900a480ecd790bf56324e4590c"/><file name="Showfee.php" hash="1203dc1beb95867f232e0945a1728146"/><dir name="Status"><file name="PendingPayment.php" hash="9358466304af44f3a22f77fec7630be1"/><file name="Processing.php" hash="aea6f58cfb750a93f03ae4b435c59766"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="82c781472b46ae466f2ec6d6b0251df3"/></dir></dir></dir><file name="Transaction.php" hash="8bb6b623b503640d605cde5b27af50e8"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="6849f3776bb57f743b11a0a67827f5fa"/><file name="OrderController.php" hash="28cdb511a0eb3687fc8833aa7b9ea61c"/></dir><dir name="etc"><file name="config.xml" hash="1a9c5585b33d9c51692d0a52213daf33"/><file name="system.xml" hash="3bb3f5c545aa922f9146b70530564e7f"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.1.2.8.php" hash="7191d2eae22bede77c14292f81241707"/><file name="upgrade-3.0.0-3.1.0.php" hash="4b76b4f06ca7d3ffcec5e55a72773340"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="aa75d3330b6d6db8d41a33404c6ca923"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="22882b3a6a6977d1cb2b29cecb5a792f"/><file name="upgrade-3.2.1-3.2.2.php" hash="6bcb9d73a61bea4081c02b3f21a7c84e"/><file name="upgrade-3.2.13-3.2.14.php" hash="4fa59649ffc6a7cc6af3050e5f2a9700"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="billink.phtml" hash="7fa7d3e113b911744ba130a9084a6b87"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="d5e55377466c3fcc5b45a4104fbc020d"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/><file name="klarna.phtml" hash="1a496f7ebb8bd1361332519a3331faaa"/></dir><file name="mark.phtml" hash="ab61d728f0d237a34f78300554d8ba0f"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="pay"><dir name="payment"><dir name="form"><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="paylink.phtml" hash="76084a190aa5fec205d2648f4dbc9f78"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="pay_payment"><file name="logo.png" hash="b45a2ccf5e85a713b786d85c1059afee"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>7.2.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
18
  </package>