Version Notes
Fixed a bug when shipping is 0
Download this release
Release Info
Developer | Andy Pieters |
Extension | Pay_NL |
Version | 3.4.2 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.4.2
app/code/community/Pay/Payment/Helper/Order.php
CHANGED
@@ -299,8 +299,9 @@ class Pay_Payment_Helper_Order extends Mage_Core_Helper_Abstract
|
|
299 |
/**
|
300 |
* Processes the order by transactionId, the data is collected by calling the pay api
|
301 |
*
|
302 |
-
* @param
|
303 |
-
* @param
|
|
|
304 |
*/
|
305 |
public function processByTransactionId($transactionId, $store = null)
|
306 |
{
|
299 |
/**
|
300 |
* Processes the order by transactionId, the data is collected by calling the pay api
|
301 |
*
|
302 |
+
* @param string $transactionId
|
303 |
+
* @param Mage_Core_Model_Store $store
|
304 |
+
* @return string|null the new status
|
305 |
*/
|
306 |
public function processByTransactionId($transactionId, $store = null)
|
307 |
{
|
app/code/community/Pay/Payment/controllers/CheckoutController.php
CHANGED
@@ -1,39 +1,38 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action
|
|
|
4 |
|
5 |
-
public function redirectAction()
|
6 |
-
|
|
|
7 |
$helper = Mage::helper('pay_payment');
|
8 |
$session = Mage::getSingleton('checkout/session');
|
9 |
/* @var $session Mage_Checkout_Model_Session */
|
10 |
if ($session->getLastRealOrderId()) {
|
11 |
-
Mage::log('Order found in session, orderId: '
|
12 |
-
$orderId = $session->getLastRealOrderId();
|
13 |
$order = Mage::getModel('sales/order')->loadByIncrementId($session->getLastRealOrderId());
|
14 |
/* @var $order Mage_Sales_Model_Order */
|
15 |
$payment = $order->getPayment();
|
16 |
|
17 |
-
$store = Mage::app()->getStore();
|
18 |
-
|
19 |
if ($order->getId()) {
|
20 |
-
Mage::log('Order loaded from session, orderId: '
|
21 |
$optionId = $session->getOptionId();
|
22 |
$optionSubId = $session->getOptionSubId();
|
23 |
|
24 |
//TODO: deze gegevens ook posten
|
25 |
-
$kvknummer = $session->getKvknummer();
|
26 |
-
$companyname = $order->getBillingAddress()->getCompany();
|
27 |
|
28 |
-
$birthdayDay= $session->getBirthdayDay();
|
29 |
$birthdayMonth = $session->getBirthdayMonth();
|
30 |
$birthdayYear = $session->getBirthdayYear();
|
31 |
$birthdate = '';
|
32 |
|
33 |
-
if(!empty($birthdayDay) && !empty($birthdayMonth) && !empty($birthdayYear)){
|
34 |
-
$birthdate = $birthdayDay.'-'
|
35 |
}
|
36 |
-
|
37 |
|
38 |
$serviceId = Mage::getStoreConfig('pay_payment/general/serviceid', Mage::app()->getStore());
|
39 |
|
@@ -41,8 +40,6 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
41 |
|
42 |
$amount = $order->getGrandTotal();
|
43 |
|
44 |
-
$description = $order->getIncrementId();
|
45 |
-
|
46 |
$sendOrderData = Mage::getStoreConfig('pay_payment/general/send_order_data', Mage::app()->getStore());
|
47 |
|
48 |
$api = Mage::helper('pay_payment/api_start');
|
@@ -50,22 +47,19 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
50 |
$api->setExtra2($order->getCustomerEmail());
|
51 |
|
52 |
if ($sendOrderData == 1) {
|
53 |
-
$itemsTotal = 0;
|
54 |
-
|
55 |
$items = $order->getItemsCollection();
|
56 |
foreach ($items as $item) {
|
57 |
/* @var $item Mage_Sales_Model_Order_Item */
|
58 |
$productId = $item->getId();
|
59 |
$description = $item->getName();
|
60 |
-
$price = $item->getPriceInclTax();
|
61 |
$taxAmount = $item->getTaxAmount();
|
62 |
$quantity = $item->getQtyOrdered();
|
63 |
|
64 |
-
$taxClass= $helper->calculateTaxClass($price
|
65 |
|
66 |
$price = round($price * 100);
|
67 |
|
68 |
-
$itemsTotal += $price * $quantity;
|
69 |
|
70 |
if ($price != 0) {
|
71 |
$api->addProduct($productId, $description, $price, $quantity, $taxClass);
|
@@ -75,18 +69,20 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
75 |
$discountAmount = $order->getDiscountAmount();
|
76 |
|
77 |
if ($discountAmount < 0) {
|
78 |
-
$itemsTotal += round($discountAmount * 100);
|
79 |
$api->addProduct(0, 'Korting (' . $order->getDiscountDescription() . ')', round($discountAmount * 100), 1, 'N');
|
80 |
}
|
81 |
|
82 |
$shipping = $order->getShippingInclTax();
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
$
|
88 |
-
|
|
|
|
|
89 |
}
|
|
|
90 |
$extraFee = $order->getPaymentCharge();
|
91 |
if ($extraFee != 0) {
|
92 |
$code = $payment->getMethod();
|
@@ -97,8 +93,6 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
97 |
$request->setStore(Mage::app()->getStore());
|
98 |
$rate = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
|
99 |
|
100 |
-
$itemsTotal += round($extraFee * 100);
|
101 |
-
|
102 |
$taxCode = $helper->getTaxCodeFromRate($rate);
|
103 |
|
104 |
$api->addProduct('0', Mage::getStoreConfig('pay_payment/general/text_payment_charge', Mage::app()->getStore()), round($extraFee * 100), 1, $taxCode);
|
@@ -109,34 +103,28 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
109 |
|
110 |
$arrEnduser['gender'] = substr($order->getCustomerGender(), 0, 1);
|
111 |
|
112 |
-
if(empty($birthdate)){
|
113 |
$birthdate = $order->getCustomerDob();
|
114 |
-
if(!empty($birthdate)){
|
115 |
-
$birthdate = substr($birthdate, 0, strpos($birthdate, ' '));
|
116 |
-
list($year
|
117 |
-
$birthdate = $day.'-'
|
118 |
}
|
119 |
}
|
120 |
-
|
121 |
$arrEnduser['dob'] = $birthdate;
|
122 |
$arrEnduser['emailAddress'] = $order->getCustomerEmail();
|
123 |
$billingAddress = $order->getBillingAddress();
|
124 |
|
125 |
-
|
126 |
-
|
127 |
if (!empty($shippingAddress)) {
|
128 |
$arrEnduser['initials'] = substr($shippingAddress->getFirstname(), 0, 1);
|
129 |
$arrEnduser['lastName'] = substr($shippingAddress->getLastname(), 0, 30);
|
130 |
|
131 |
$arrEnduser['phoneNumber'] = substr($shippingAddress->getTelephone(), 0, 30);
|
132 |
|
133 |
-
$streetName = "";
|
134 |
-
$streetNumber = "";
|
135 |
-
$matches = array();
|
136 |
$addressFull = $shippingAddress->getStreetFull();
|
137 |
$addressFull = str_replace("\n", ' ', $addressFull);
|
138 |
$addressFull = str_replace("\r", ' ', $addressFull);
|
139 |
-
|
140 |
|
141 |
list($address, $housenumber) = $helper->splitAddress($addressFull);
|
142 |
|
@@ -151,10 +139,6 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
151 |
}
|
152 |
|
153 |
if (!empty($billingAddress)) {
|
154 |
-
$streetName = "";
|
155 |
-
$streetNumber = "";
|
156 |
-
$matches = array();
|
157 |
-
|
158 |
$addressFull = $billingAddress->getStreetFull();
|
159 |
$addressFull = str_replace("\n", ' ', $addressFull);
|
160 |
$addressFull = str_replace("\r", ' ', $addressFull);
|
@@ -189,12 +173,12 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
189 |
$api->setPaymentOptionSubId($optionSubId);
|
190 |
}
|
191 |
try {
|
192 |
-
Mage::log('Calling Pay api to start transaction',null,'paynl.log');
|
193 |
|
194 |
$resultData = $api->doRequest();
|
195 |
-
|
196 |
} catch (Exception $e) {
|
197 |
-
Mage::log("Creating transaction failed, Exception: "
|
198 |
// Reset previous errors
|
199 |
Mage::getSingleton('checkout/session')->getMessages(true);
|
200 |
|
@@ -236,20 +220,20 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
236 |
|
237 |
$transactionId = $resultData['transaction']['transactionId'];
|
238 |
|
239 |
-
Mage::log('Transaction started, transactionId: '
|
240 |
|
241 |
$transaction->setData(
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
|
254 |
$transaction->save();
|
255 |
|
@@ -259,9 +243,9 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
259 |
$statusPending = Mage::getStoreConfig('payment/' . $payment->getMethod() . '/order_status', Mage::app()->getStore());
|
260 |
|
261 |
$order->setState(
|
262 |
-
|
263 |
);
|
264 |
-
|
265 |
|
266 |
$order->save();
|
267 |
|
@@ -273,7 +257,7 @@ class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action {
|
|
273 |
Mage::app()->getResponse()->setRedirect($url);
|
274 |
} else {
|
275 |
// loading order failed
|
276 |
-
Mage::log('Error: OrderId found in session but loading the order failed, orderId:'
|
277 |
}
|
278 |
} else {
|
279 |
// no orderId in session
|
1 |
<?php
|
2 |
|
3 |
+
class Pay_Payment_CheckoutController extends Mage_Core_Controller_Front_Action
|
4 |
+
{
|
5 |
|
6 |
+
public function redirectAction()
|
7 |
+
{
|
8 |
+
Mage::log('Starting transaction', null, 'paynl.log');
|
9 |
$helper = Mage::helper('pay_payment');
|
10 |
$session = Mage::getSingleton('checkout/session');
|
11 |
/* @var $session Mage_Checkout_Model_Session */
|
12 |
if ($session->getLastRealOrderId()) {
|
13 |
+
Mage::log('Order found in session, orderId: ' . $session->getLastRealOrderId(), null, 'paynl.log');
|
|
|
14 |
$order = Mage::getModel('sales/order')->loadByIncrementId($session->getLastRealOrderId());
|
15 |
/* @var $order Mage_Sales_Model_Order */
|
16 |
$payment = $order->getPayment();
|
17 |
|
|
|
|
|
18 |
if ($order->getId()) {
|
19 |
+
Mage::log('Order loaded from session, orderId: ' . $session->getLastRealOrderId(), null, 'paynl.log');
|
20 |
$optionId = $session->getOptionId();
|
21 |
$optionSubId = $session->getOptionSubId();
|
22 |
|
23 |
//TODO: deze gegevens ook posten
|
24 |
+
$kvknummer = $session->getKvknummer();
|
25 |
+
$companyname = $order->getBillingAddress()->getCompany();
|
26 |
|
27 |
+
$birthdayDay = $session->getBirthdayDay();
|
28 |
$birthdayMonth = $session->getBirthdayMonth();
|
29 |
$birthdayYear = $session->getBirthdayYear();
|
30 |
$birthdate = '';
|
31 |
|
32 |
+
if (!empty($birthdayDay) && !empty($birthdayMonth) && !empty($birthdayYear)) {
|
33 |
+
$birthdate = $birthdayDay . '-' . $birthdayMonth . '-' . $birthdayYear;
|
34 |
}
|
35 |
+
|
36 |
|
37 |
$serviceId = Mage::getStoreConfig('pay_payment/general/serviceid', Mage::app()->getStore());
|
38 |
|
40 |
|
41 |
$amount = $order->getGrandTotal();
|
42 |
|
|
|
|
|
43 |
$sendOrderData = Mage::getStoreConfig('pay_payment/general/send_order_data', Mage::app()->getStore());
|
44 |
|
45 |
$api = Mage::helper('pay_payment/api_start');
|
47 |
$api->setExtra2($order->getCustomerEmail());
|
48 |
|
49 |
if ($sendOrderData == 1) {
|
|
|
|
|
50 |
$items = $order->getItemsCollection();
|
51 |
foreach ($items as $item) {
|
52 |
/* @var $item Mage_Sales_Model_Order_Item */
|
53 |
$productId = $item->getId();
|
54 |
$description = $item->getName();
|
55 |
+
$price = $item->getPriceInclTax();
|
56 |
$taxAmount = $item->getTaxAmount();
|
57 |
$quantity = $item->getQtyOrdered();
|
58 |
|
59 |
+
$taxClass = $helper->calculateTaxClass($price, $taxAmount / $quantity);
|
60 |
|
61 |
$price = round($price * 100);
|
62 |
|
|
|
63 |
|
64 |
if ($price != 0) {
|
65 |
$api->addProduct($productId, $description, $price, $quantity, $taxClass);
|
69 |
$discountAmount = $order->getDiscountAmount();
|
70 |
|
71 |
if ($discountAmount < 0) {
|
|
|
72 |
$api->addProduct(0, 'Korting (' . $order->getDiscountDescription() . ')', round($discountAmount * 100), 1, 'N');
|
73 |
}
|
74 |
|
75 |
$shipping = $order->getShippingInclTax();
|
76 |
+
|
77 |
+
if ($shipping > 0) {
|
78 |
+
$shippingTax = $order->getShippingTaxAmount();
|
79 |
+
$shippingTaxClass = $helper->calculateTaxClass($shipping, $shippingTax);
|
80 |
+
$shipping = round($shipping * 100);
|
81 |
+
if ($shipping != 0) {
|
82 |
+
$api->addProduct('0', 'Verzendkosten', $shipping, 1, $shippingTaxClass);
|
83 |
+
}
|
84 |
}
|
85 |
+
|
86 |
$extraFee = $order->getPaymentCharge();
|
87 |
if ($extraFee != 0) {
|
88 |
$code = $payment->getMethod();
|
93 |
$request->setStore(Mage::app()->getStore());
|
94 |
$rate = $taxCalculationModel->getRate($request->setProductClassId($taxClass));
|
95 |
|
|
|
|
|
96 |
$taxCode = $helper->getTaxCodeFromRate($rate);
|
97 |
|
98 |
$api->addProduct('0', Mage::getStoreConfig('pay_payment/general/text_payment_charge', Mage::app()->getStore()), round($extraFee * 100), 1, $taxCode);
|
103 |
|
104 |
$arrEnduser['gender'] = substr($order->getCustomerGender(), 0, 1);
|
105 |
|
106 |
+
if (empty($birthdate)) {
|
107 |
$birthdate = $order->getCustomerDob();
|
108 |
+
if (!empty($birthdate)) {
|
109 |
+
$birthdate = substr($birthdate, 0, strpos($birthdate, ' '));
|
110 |
+
list($year, $month, $day) = explode('-', $birthdate);
|
111 |
+
$birthdate = $day . '-' . $month . '-' . $year;
|
112 |
}
|
113 |
}
|
114 |
+
|
115 |
$arrEnduser['dob'] = $birthdate;
|
116 |
$arrEnduser['emailAddress'] = $order->getCustomerEmail();
|
117 |
$billingAddress = $order->getBillingAddress();
|
118 |
|
|
|
|
|
119 |
if (!empty($shippingAddress)) {
|
120 |
$arrEnduser['initials'] = substr($shippingAddress->getFirstname(), 0, 1);
|
121 |
$arrEnduser['lastName'] = substr($shippingAddress->getLastname(), 0, 30);
|
122 |
|
123 |
$arrEnduser['phoneNumber'] = substr($shippingAddress->getTelephone(), 0, 30);
|
124 |
|
|
|
|
|
|
|
125 |
$addressFull = $shippingAddress->getStreetFull();
|
126 |
$addressFull = str_replace("\n", ' ', $addressFull);
|
127 |
$addressFull = str_replace("\r", ' ', $addressFull);
|
|
|
128 |
|
129 |
list($address, $housenumber) = $helper->splitAddress($addressFull);
|
130 |
|
139 |
}
|
140 |
|
141 |
if (!empty($billingAddress)) {
|
|
|
|
|
|
|
|
|
142 |
$addressFull = $billingAddress->getStreetFull();
|
143 |
$addressFull = str_replace("\n", ' ', $addressFull);
|
144 |
$addressFull = str_replace("\r", ' ', $addressFull);
|
173 |
$api->setPaymentOptionSubId($optionSubId);
|
174 |
}
|
175 |
try {
|
176 |
+
Mage::log('Calling Pay api to start transaction', null, 'paynl.log');
|
177 |
|
178 |
$resultData = $api->doRequest();
|
179 |
+
|
180 |
} catch (Exception $e) {
|
181 |
+
Mage::log("Creating transaction failed, Exception: " . $e->getMessage(), null, 'paynl.log');
|
182 |
// Reset previous errors
|
183 |
Mage::getSingleton('checkout/session')->getMessages(true);
|
184 |
|
220 |
|
221 |
$transactionId = $resultData['transaction']['transactionId'];
|
222 |
|
223 |
+
Mage::log('Transaction started, transactionId: ' . $transactionId, null, 'paynl.log');
|
224 |
|
225 |
$transaction->setData(
|
226 |
+
array(
|
227 |
+
'transaction_id' => $transactionId,
|
228 |
+
'service_id' => $serviceId,
|
229 |
+
'option_id' => $optionId,
|
230 |
+
'option_sub_id' => $optionSubId,
|
231 |
+
'amount' => round($amount * 100),
|
232 |
+
'order_id' => $order->getId(),
|
233 |
+
'status' => Pay_Payment_Model_Transaction::STATE_PENDING,
|
234 |
+
'created' => time(),
|
235 |
+
'last_update' => time(),
|
236 |
+
));
|
237 |
|
238 |
$transaction->save();
|
239 |
|
243 |
$statusPending = Mage::getStoreConfig('payment/' . $payment->getMethod() . '/order_status', Mage::app()->getStore());
|
244 |
|
245 |
$order->setState(
|
246 |
+
Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, $statusPending, 'Transactie gestart, transactieId: ' . $transactionId . " \nBetaalUrl: " . $url
|
247 |
);
|
248 |
+
|
249 |
|
250 |
$order->save();
|
251 |
|
257 |
Mage::app()->getResponse()->setRedirect($url);
|
258 |
} else {
|
259 |
// loading order failed
|
260 |
+
Mage::log('Error: OrderId found in session but loading the order failed, orderId:' . $session->getLastRealOrderId(), null, 'paynl.log');
|
261 |
}
|
262 |
} else {
|
263 |
// no orderId in session
|
app/code/community/Pay/Payment/controllers/OrderController.php
CHANGED
@@ -73,7 +73,7 @@ class Pay_Payment_OrderController extends Mage_Core_Controller_Front_Action {
|
|
73 |
|
74 |
public function exchangeAction() {
|
75 |
$error = false;
|
76 |
-
$params = $this->getRequest()->getParams();
|
77 |
|
78 |
$transactionId = $params['order_id'];
|
79 |
|
73 |
|
74 |
public function exchangeAction() {
|
75 |
$error = false;
|
76 |
+
$params = $this->getRequest()->getParams();
|
77 |
|
78 |
$transactionId = $params['order_id'];
|
79 |
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pay_NL</name>
|
4 |
-
<version>3.4.
|
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>
|
12 |
<authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
|
13 |
-
<date>2015-12-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="e468e2b4ffbcfd6d53b4148ba787ce60"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="8eebafc1aa0fb994be725695b661eb24"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="bf5deb4dc4d69a022a6dc89cd2bbedb6"/></dir><dir name="Invoice"><file name="Totals.php" hash="2c7c9b69c81c6adfaaeef287c30e00b5"/></dir><file name="Totals.php" hash="fedc53370050950d0aa662ab9d787067"/></dir><file name="Totals.php" hash="19de7752700c1dd3fdb6aa5260a6037f"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="b816451bc2a7a0a974d60e1943748f65"/><file name="Afterpay.php" hash="36b91eb26de891d4c3b1d5aa5dec218d"/><file name="Billink.php" hash="d4c4ce03df61de72cb223d523d7b95b8"/><file name="Bitcoin.php" hash="0166a2776a146ebd392fdd309545f22c"/><file name="Cartebleue.php" hash="7eced991f8c43f1152d60f30da029545"/><file name="Cashticket.php" hash="2fc82af9d173d47d52bb063e229dc242"/><file name="Clickandbuy.php" hash="0655928d713274969e4f48f027d83ceb"/><file name="Ebon.php" hash="94895b8a43e5460cd87393158930f1de"/><file name="Fashioncheque.php" hash="c3d7c03236a284375f4e90550a9f971c"/><file name="Gezondheidsbon.php" hash="c68e3ccd375edc232b3c883f24e2e076"/><file name="Giropay.php" hash="b5b31c012f9709de283190625d8d382b"/><file name="Givacard.php" hash="edbbd1f6edfb63f0ee5bc6f3424db6f7"/><file name="Ideal.php" hash="8faecb47fa7c3f22d3db78700d7d46ef"/><file name="Incasso.php" hash="d03f0751fa03f9c0b83bbbc44e89347e"/><file name="Maestro.php" hash="9bec2d268627f75d9414e82e802b0e3d"/><file name="Minitixsms.php" hash="8aa896bcf033264052136e73b814e3a9"/><file name="Mistercash.php" hash="0ff378a748e113662e9914bac9157f76"/><file name="Mybank.php" hash="97c7a976f2024ad280f870b132c014a1"/><file name="Overboeking.php" hash="f90062c3261c9c03e6e271aac319bb0b"/><file name="Paypal.php" hash="06b51c201d904600f686ed8f521aee7b"/><file name="Paysafecard.php" hash="1627a3b2dabe52b3c394e5b358aca1ff"/><file name="Podiumkadokaart.php" hash="59574267968597d2507ec2dc739913b2"/><file name="Postepay.php" hash="7604cbb32a0d9c016138d26dc9049950"/><file name="Sofortbanking.php" hash="a5444f8448ad9ba046633f64055b9229"/><file name="Telefoon.php" hash="2b55a9a26c9b3fffa39c69f23791663e"/><file name="Visamastercard.php" hash="29a2b43d8b3317b2717437229a233535"/><file name="Webshopgiftcard.php" hash="d30dcb81bdf88c771c007b3d5eee7ca8"/><file name="Wijncadeau.php" hash="c60388ef8b38da2c49b60a6b3345b85d"/><file name="Yourgift.php" hash="428c3826a1db8d1b2c1e0025ba499893"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="55a5dd228545841516a07b016dab4b69"/></dir><dir name="Invoice"><file name="Totals.php" hash="128bf5ff3d15777c8e5155d9b02e3083"/></dir><file name="Totals.php" hash="4207c463975da6c627ec64342b12a966"/></dir></dir></dir><file name="Exception.php" hash="e37d40cde6f992a1859ac884d03b8a68"/><dir name="Helper"><dir name="Api"><file name="Exception.php" hash="e778e6f4d48751c67439986ba8f8f4d2"/><file name="Getservice.php" hash="4b253fdd4b1dad1a349db0070d3ab9e3"/><file name="Info.php" hash="7448d46dff3132c0432c197b062c33b5"/><file name="Ispayserverip.php" hash="b23177ec96b1df4c5a01533474c02b25"/><file name="Refund.php" hash="0ff894fa96984a5103d85cdc17d4e5bd"/><file name="Start.php" hash="ceaf0374fbcdd55375661d5d45c52cc1"/></dir><file name="Api.php" hash="84590f7359aeebc85c10bd1eb8f41ae3"/><file name="Data.php" hash="5190ee14ddab4b1962706fe36638b776"/><file name="Order.php" hash="55496404d090afce89620a751e94f5a8"/><file name="Total.php" hash="1808042bc1deb7705149fa65f0f40dfc"/><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="6b7a087bcb1eb3e59d0a1485d58f9474"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="be852304b8d076d318d2a7419eddbae0"/></dir><file name="Option.php" hash="f04ee616b02622a760cd1751a7dcbb6e"/><dir name="Optionsub"><file name="Collection.php" hash="ec00aa2b0917036a18f54ff2e2ba2969"/></dir><file name="Optionsub.php" hash="015f67fc2a3188ff323ed34ec4ade23c"/><dir name="Transaction"><file name="Collection.php" hash="f9ddf980a76f3720483daf8a5f8128de"/></dir><file name="Transaction.php" hash="89a819b949e597ddccc69b743ca333f1"/></dir><file name="Option.php" hash="0fa27f41fb8ddbf6d852b9d768ccf69a"/><file name="Optionsub.php" hash="0d308c2f81e3d3a8f702280db0825b8a"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="5b206eaa1121f497bf895e88caf0b372"/><file name="Billink.php" hash="da1b66a16797edbb8f1f27a4a89bfa41"/><file name="Bitcoin.php" hash="5875964cb346b501e9879aeaed93e451"/><file name="Cartebleue.php" hash="a59df70ad867fc44df0484c9ec7e272e"/><file name="Cashticket.php" hash="87919d87330d729c22a13f8341d98c85"/><file name="Clickandbuy.php" hash="a1004d9355938288b8e195a8629d236a"/><file name="Directebankingat.php" hash="18a4d70a5301e58a91cb4159fa7b001a"/><file name="Directebankingbe.php" hash="699fbaa9a801042177ef91d98c1becd1"/><file name="Directebankingch.php" hash="a8abd78d9bc27371d52c895a358c58a1"/><file name="Directebankingde.php" hash="4348a7be2f4a0e23586f2c89fa1309cc"/><file name="Directebankinggb.php" hash="b3d784ec6abfebe77fb64bdf9695c4b5"/><file name="Directebankingnl.php" hash="ec728809ec02fe9df14b5933ad1088a1"/><file name="Ebon.php" hash="d735fd1c4883636b1f48134284d17e7f"/><file name="Fashioncheque.php" hash="0a8ea50d8aa3f860d89a7a4a99206fbd"/><file name="Fasterpay.php" hash="90dc91a5dfb85c61dc27595d34cebf0f"/><file name="Gezondheidsbon.php" hash="d2490a622ba4201371e2554ecacdfda1"/><file name="Giropay.php" hash="aef2b9ea0719db78f3fe7e8e706ec1e6"/><file name="Givacard.php" hash="469eb4739576953097df96462e36623b"/><file name="Ideal.php" hash="7b432b983efefd3baccaa939450de0bb"/><file name="Incasso.php" hash="84bea7e306041780659747ca532dbebc"/><file name="Maestro.php" hash="926adfabfd8c800b3ee7ce50c2389701"/><file name="Minitixsms.php" hash="b995dbb76c954d7c876b0e6e74873344"/><file name="Mistercash.php" hash="0a7334fc8416d084957c7103379c3fd1"/><file name="Mybank.php" hash="cf3ab88a3cc0c06324dd77b74835f5dd"/><file name="Overboeking.php" hash="005fa154adc595b69b9bd0ff266f170c"/><file name="Paypal.php" hash="682a705b49abd74f931f49f4f7f3509b"/><file name="Paysafecard.php" hash="57bfbf08a7ff0336fdbcf4e2c2a31586"/><file name="Podiumkadokaart.php" hash="01e9e5684c76e9fa3e6d0cddb99f3cd6"/><file name="Postepay.php" hash="501c4e521a0519099e3927f7135b5761"/><file name="Sofortbanking.php" hash="bc3369d92fdf8a135df7dd0a52069275"/><file name="Telefoon.php" hash="1bd414dd92e0dc514734329f2c07245f"/><file name="Visamastercard.php" hash="4fb0bc907cda4a1cda65414398811bba"/><file name="Webshopgiftcard.php" hash="ba5d906b4869adfc039085545f951575"/><file name="Wijncadeau.php" hash="74356192462c83413529d2d74723e9bb"/><file name="Yourgift.php" hash="9df14b2895dfbe72ba70cdad9e97f357"/></dir><file name="Paymentmethod.php" hash="f770763cef6470f9c94980921a44978a"/><dir name="Paypal"><file name="Cart.php" hash="47d871bcebd4a715fc6ccad3605320ae"/></dir><dir name="Resource"><file name="Setup.php" hash="b05f67067f71ab4eab29797335ad872a"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="07f417d8a332e45f7d04bbb31d2d24b0"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="3c8dd146681d1ea112e0a7f2ddced349"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="e8b1377601e0a976e8364f07980a3a08"/></dir></dir></dir></dir><dir name="Source"><file name="Iconsize.php" hash="f571dd3324ec8d6fc3d1bbc09fe551ab"/><file name="Language.php" hash="aa337e74eca5d87c38461426beeedb9f"/><dir name="Paymentmethod"><file name="Active.php" hash="98b291e9a187375e53fb0b974c384643"/><dir name="Afterpay"><file name="Active.php" hash="bc291ce6a8d930c0d23bc0fc7e1535fa"/></dir><dir name="Billink"><file name="Active.php" hash="425961339d0138bd8ff67fb6cca66526"/></dir><dir name="Bitcoin"><file name="Active.php" hash="ba9b82b31ab670acaa85e5a0e8ce281d"/></dir><dir name="Cartebleue"><file name="Active.php" hash="aee9324f68fcd2e505ac0397e4a9fa84"/></dir><dir name="Cashticket"><file name="Active.php" hash="a60048889f821d93853380f30e743a60"/></dir><dir name="Clickandbuy"><file name="Active.php" hash="2a5efe0dbebc29d50f2ba34a45052c8c"/></dir><dir name="Directebankingat"><file name="Active.php" hash="9ebddffba370c63a1e3ca3790a88f10a"/></dir><dir name="Directebankingbe"><file name="Active.php" hash="3ad0680220a37af16ebbbe499bef520d"/></dir><dir name="Directebankingch"><file name="Active.php" hash="61d1b9807d91dff421a39770ab66b95f"/></dir><dir name="Directebankingde"><file name="Active.php" hash="c38d36a8ad456bb53f8b63eacffc3f48"/></dir><dir name="Directebankinggb"><file name="Active.php" hash="395793113a0d49ed5c04c10e269b70fb"/></dir><dir name="Directebankingnl"><file name="Active.php" hash="ed7ee95235cb82f426f95ddd15c2dce0"/></dir><dir name="Ebon"><file name="Active.php" hash="8cd705149115373c8e88f4cc9b0f699e"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="526973e9ff555b90c3bce4bb39f67229"/></dir><dir name="Fasterpay"><file name="Active.php" hash="25a186f88f38f6b8cf5a32028ed52a51"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="656eb99e2af61d3648b1c636391a4476"/></dir><dir name="Giropay"><file name="Active.php" hash="0be69b719ebaf5fdf73410aedca2a21c"/></dir><dir name="Givacard"><file name="Active.php" hash="d7d3575bbd9c192f763956be66bd31c6"/></dir><dir name="Ideal"><file name="Active.php" hash="ff261498816bc57ef22175ef0d1ab212"/><file name="Selecttype.php" hash="69a3c2408ad31e0bb8d1f89c05207593"/></dir><dir name="Incasso"><file name="Active.php" hash="f70f04cac575720b7ecfab8d32f7d2f3"/></dir><dir name="Maestro"><file name="Active.php" hash="82a4748c78309ce19fd260921ed56a2d"/></dir><dir name="Minitixsms"><file name="Active.php" hash="f22609b6c023e867febc6a86483c5507"/></dir><dir name="Mistercash"><file name="Active.php" hash="f4ea8b494e139ee47b83319e973b3814"/></dir><dir name="Mybank"><file name="Active.php" hash="cd82545f460c268002052292963227fe"/></dir><dir name="Overboeking"><file name="Active.php" hash="85f6b86a12fcb59629aa73ced4e71c27"/></dir><dir name="Paypal"><file name="Active.php" hash="aceebd18fc86e403c2d05e8c2f711319"/></dir><dir name="Paysafecard"><file name="Active.php" hash="efe1ca8eb43f0d7cc612c3e1e0351a10"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="5aaeb99d5c11b40b312487660a656328"/></dir><dir name="Postepay"><file name="Active.php" hash="ae5bc39eca34f74b557ba3d55dded5c7"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="3569b0bc1f49da829843dadcbff5d9d9"/></dir><dir name="Telefoon"><file name="Active.php" hash="2a1bbcc9a6bed03402560838c3aeff68"/></dir><dir name="Visamastercard"><file name="Active.php" hash="f3e49192a0600437af59e9f3bc396c40"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="e71770baa1ada4466cce57270df5e7bb"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="9494fb7cd2326cac12fd9012621612ac"/></dir><dir name="Yourgift"><file name="Active.php" hash="6bdf62622be0610595fa54b02d494a7f"/></dir></dir><file name="Sendmail.php" hash="bf86ddde71b89ea6e3dfb434c3996f33"/><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="2734bce1efc0b62ea81d7a13770a1b19"/></dir></dir></dir><file name="Transaction.php" hash="ce1b9930a60aca5aa955bb9731d427b3"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="3d41353b0a155c524d699f1a95df6326"/><file name="OrderController.php" hash="aa5fec2c8ba36dae698cb37dd056ecd4"/></dir><dir name="etc"><file name="config.xml" hash="1e9bb4ab802847962c4203b8f17414c6"/><file name="system.xml" hash="280be7731de5a47e045bf7d17059f325"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.1.2.8.php" hash="a4a612c1afe0177ccd7b0bb0240a75d8"/><file name="upgrade-3.0.0-3.1.0.php" hash="8453d90bcc7b4647346112b44614cb16"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="275444fa9b201b3f3010480b1645b5f0"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="12b4a2bdbeff5ae0b27a1219f219193a"/><file name="upgrade-3.2.1-3.2.2.php" hash="59c84113d622db24d09de5e8639a7660"/><file name="upgrade-3.2.13-3.2.14.php" hash="27851a61541141d919ef4466aec40b38"/></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="a4c3097315b8f60520bb006b88316f78"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="ideal.phtml" hash="429f09f1b1c911f9179b435c7013d973"/><file name="idealSelect.phtml" hash="6478b90f77a4e549bc600d80a31f6b9f"/></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>5.6.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.4.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>Fixed a bug when shipping is 0</notes>
|
12 |
<authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
|
13 |
+
<date>2015-12-18</date>
|
14 |
+
<time>09:46:45</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Pay_Payment.xml" hash="e468e2b4ffbcfd6d53b4148ba787ce60"/></dir></target><target name="magecommunity"><dir name="Pay"><dir name="Payment"><dir name="Block"><dir name="Adminhtml"><file name="Paymentmethods.php" hash="8eebafc1aa0fb994be725695b661eb24"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="bf5deb4dc4d69a022a6dc89cd2bbedb6"/></dir><dir name="Invoice"><file name="Totals.php" hash="2c7c9b69c81c6adfaaeef287c30e00b5"/></dir><file name="Totals.php" hash="fedc53370050950d0aa662ab9d787067"/></dir><file name="Totals.php" hash="19de7752700c1dd3fdb6aa5260a6037f"/></dir></dir><dir name="Form"><file name="Abstract.php" hash="b816451bc2a7a0a974d60e1943748f65"/><file name="Afterpay.php" hash="36b91eb26de891d4c3b1d5aa5dec218d"/><file name="Billink.php" hash="d4c4ce03df61de72cb223d523d7b95b8"/><file name="Bitcoin.php" hash="0166a2776a146ebd392fdd309545f22c"/><file name="Cartebleue.php" hash="7eced991f8c43f1152d60f30da029545"/><file name="Cashticket.php" hash="2fc82af9d173d47d52bb063e229dc242"/><file name="Clickandbuy.php" hash="0655928d713274969e4f48f027d83ceb"/><file name="Ebon.php" hash="94895b8a43e5460cd87393158930f1de"/><file name="Fashioncheque.php" hash="c3d7c03236a284375f4e90550a9f971c"/><file name="Gezondheidsbon.php" hash="c68e3ccd375edc232b3c883f24e2e076"/><file name="Giropay.php" hash="b5b31c012f9709de283190625d8d382b"/><file name="Givacard.php" hash="edbbd1f6edfb63f0ee5bc6f3424db6f7"/><file name="Ideal.php" hash="8faecb47fa7c3f22d3db78700d7d46ef"/><file name="Incasso.php" hash="d03f0751fa03f9c0b83bbbc44e89347e"/><file name="Maestro.php" hash="9bec2d268627f75d9414e82e802b0e3d"/><file name="Minitixsms.php" hash="8aa896bcf033264052136e73b814e3a9"/><file name="Mistercash.php" hash="0ff378a748e113662e9914bac9157f76"/><file name="Mybank.php" hash="97c7a976f2024ad280f870b132c014a1"/><file name="Overboeking.php" hash="f90062c3261c9c03e6e271aac319bb0b"/><file name="Paypal.php" hash="06b51c201d904600f686ed8f521aee7b"/><file name="Paysafecard.php" hash="1627a3b2dabe52b3c394e5b358aca1ff"/><file name="Podiumkadokaart.php" hash="59574267968597d2507ec2dc739913b2"/><file name="Postepay.php" hash="7604cbb32a0d9c016138d26dc9049950"/><file name="Sofortbanking.php" hash="a5444f8448ad9ba046633f64055b9229"/><file name="Telefoon.php" hash="2b55a9a26c9b3fffa39c69f23791663e"/><file name="Visamastercard.php" hash="29a2b43d8b3317b2717437229a233535"/><file name="Webshopgiftcard.php" hash="d30dcb81bdf88c771c007b3d5eee7ca8"/><file name="Wijncadeau.php" hash="c60388ef8b38da2c49b60a6b3345b85d"/><file name="Yourgift.php" hash="428c3826a1db8d1b2c1e0025ba499893"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="55a5dd228545841516a07b016dab4b69"/></dir><dir name="Invoice"><file name="Totals.php" hash="128bf5ff3d15777c8e5155d9b02e3083"/></dir><file name="Totals.php" hash="4207c463975da6c627ec64342b12a966"/></dir></dir></dir><file name="Exception.php" hash="e37d40cde6f992a1859ac884d03b8a68"/><dir name="Helper"><dir name="Api"><file name="Exception.php" hash="e778e6f4d48751c67439986ba8f8f4d2"/><file name="Getservice.php" hash="4b253fdd4b1dad1a349db0070d3ab9e3"/><file name="Info.php" hash="7448d46dff3132c0432c197b062c33b5"/><file name="Ispayserverip.php" hash="b23177ec96b1df4c5a01533474c02b25"/><file name="Refund.php" hash="0ff894fa96984a5103d85cdc17d4e5bd"/><file name="Start.php" hash="ceaf0374fbcdd55375661d5d45c52cc1"/></dir><file name="Api.php" hash="84590f7359aeebc85c10bd1eb8f41ae3"/><file name="Data.php" hash="5190ee14ddab4b1962706fe36638b776"/><file name="Order.php" hash="c35da07418150351ce047e76069d6936"/><file name="Total.php" hash="1808042bc1deb7705149fa65f0f40dfc"/><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/></dir><dir name="Model"><dir name="Backend"><file name="Trim.php" hash="6b7a087bcb1eb3e59d0a1485d58f9474"/></dir><dir name="Mysql4"><dir name="Option"><file name="Collection.php" hash="be852304b8d076d318d2a7419eddbae0"/></dir><file name="Option.php" hash="f04ee616b02622a760cd1751a7dcbb6e"/><dir name="Optionsub"><file name="Collection.php" hash="ec00aa2b0917036a18f54ff2e2ba2969"/></dir><file name="Optionsub.php" hash="015f67fc2a3188ff323ed34ec4ade23c"/><dir name="Transaction"><file name="Collection.php" hash="f9ddf980a76f3720483daf8a5f8128de"/></dir><file name="Transaction.php" hash="89a819b949e597ddccc69b743ca333f1"/></dir><file name="Option.php" hash="0fa27f41fb8ddbf6d852b9d768ccf69a"/><file name="Optionsub.php" hash="0d308c2f81e3d3a8f702280db0825b8a"/><dir name="Paymentmethod"><file name="Afterpay.php" hash="5b206eaa1121f497bf895e88caf0b372"/><file name="Billink.php" hash="da1b66a16797edbb8f1f27a4a89bfa41"/><file name="Bitcoin.php" hash="5875964cb346b501e9879aeaed93e451"/><file name="Cartebleue.php" hash="a59df70ad867fc44df0484c9ec7e272e"/><file name="Cashticket.php" hash="87919d87330d729c22a13f8341d98c85"/><file name="Clickandbuy.php" hash="a1004d9355938288b8e195a8629d236a"/><file name="Directebankingat.php" hash="18a4d70a5301e58a91cb4159fa7b001a"/><file name="Directebankingbe.php" hash="699fbaa9a801042177ef91d98c1becd1"/><file name="Directebankingch.php" hash="a8abd78d9bc27371d52c895a358c58a1"/><file name="Directebankingde.php" hash="4348a7be2f4a0e23586f2c89fa1309cc"/><file name="Directebankinggb.php" hash="b3d784ec6abfebe77fb64bdf9695c4b5"/><file name="Directebankingnl.php" hash="ec728809ec02fe9df14b5933ad1088a1"/><file name="Ebon.php" hash="d735fd1c4883636b1f48134284d17e7f"/><file name="Fashioncheque.php" hash="0a8ea50d8aa3f860d89a7a4a99206fbd"/><file name="Fasterpay.php" hash="90dc91a5dfb85c61dc27595d34cebf0f"/><file name="Gezondheidsbon.php" hash="d2490a622ba4201371e2554ecacdfda1"/><file name="Giropay.php" hash="aef2b9ea0719db78f3fe7e8e706ec1e6"/><file name="Givacard.php" hash="469eb4739576953097df96462e36623b"/><file name="Ideal.php" hash="7b432b983efefd3baccaa939450de0bb"/><file name="Incasso.php" hash="84bea7e306041780659747ca532dbebc"/><file name="Maestro.php" hash="926adfabfd8c800b3ee7ce50c2389701"/><file name="Minitixsms.php" hash="b995dbb76c954d7c876b0e6e74873344"/><file name="Mistercash.php" hash="0a7334fc8416d084957c7103379c3fd1"/><file name="Mybank.php" hash="cf3ab88a3cc0c06324dd77b74835f5dd"/><file name="Overboeking.php" hash="005fa154adc595b69b9bd0ff266f170c"/><file name="Paypal.php" hash="682a705b49abd74f931f49f4f7f3509b"/><file name="Paysafecard.php" hash="57bfbf08a7ff0336fdbcf4e2c2a31586"/><file name="Podiumkadokaart.php" hash="01e9e5684c76e9fa3e6d0cddb99f3cd6"/><file name="Postepay.php" hash="501c4e521a0519099e3927f7135b5761"/><file name="Sofortbanking.php" hash="bc3369d92fdf8a135df7dd0a52069275"/><file name="Telefoon.php" hash="1bd414dd92e0dc514734329f2c07245f"/><file name="Visamastercard.php" hash="4fb0bc907cda4a1cda65414398811bba"/><file name="Webshopgiftcard.php" hash="ba5d906b4869adfc039085545f951575"/><file name="Wijncadeau.php" hash="74356192462c83413529d2d74723e9bb"/><file name="Yourgift.php" hash="9df14b2895dfbe72ba70cdad9e97f357"/></dir><file name="Paymentmethod.php" hash="f770763cef6470f9c94980921a44978a"/><dir name="Paypal"><file name="Cart.php" hash="47d871bcebd4a715fc6ccad3605320ae"/></dir><dir name="Resource"><file name="Setup.php" hash="b05f67067f71ab4eab29797335ad872a"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="07f417d8a332e45f7d04bbb31d2d24b0"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="3c8dd146681d1ea112e0a7f2ddced349"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="e8b1377601e0a976e8364f07980a3a08"/></dir></dir></dir></dir><dir name="Source"><file name="Iconsize.php" hash="f571dd3324ec8d6fc3d1bbc09fe551ab"/><file name="Language.php" hash="aa337e74eca5d87c38461426beeedb9f"/><dir name="Paymentmethod"><file name="Active.php" hash="98b291e9a187375e53fb0b974c384643"/><dir name="Afterpay"><file name="Active.php" hash="bc291ce6a8d930c0d23bc0fc7e1535fa"/></dir><dir name="Billink"><file name="Active.php" hash="425961339d0138bd8ff67fb6cca66526"/></dir><dir name="Bitcoin"><file name="Active.php" hash="ba9b82b31ab670acaa85e5a0e8ce281d"/></dir><dir name="Cartebleue"><file name="Active.php" hash="aee9324f68fcd2e505ac0397e4a9fa84"/></dir><dir name="Cashticket"><file name="Active.php" hash="a60048889f821d93853380f30e743a60"/></dir><dir name="Clickandbuy"><file name="Active.php" hash="2a5efe0dbebc29d50f2ba34a45052c8c"/></dir><dir name="Directebankingat"><file name="Active.php" hash="9ebddffba370c63a1e3ca3790a88f10a"/></dir><dir name="Directebankingbe"><file name="Active.php" hash="3ad0680220a37af16ebbbe499bef520d"/></dir><dir name="Directebankingch"><file name="Active.php" hash="61d1b9807d91dff421a39770ab66b95f"/></dir><dir name="Directebankingde"><file name="Active.php" hash="c38d36a8ad456bb53f8b63eacffc3f48"/></dir><dir name="Directebankinggb"><file name="Active.php" hash="395793113a0d49ed5c04c10e269b70fb"/></dir><dir name="Directebankingnl"><file name="Active.php" hash="ed7ee95235cb82f426f95ddd15c2dce0"/></dir><dir name="Ebon"><file name="Active.php" hash="8cd705149115373c8e88f4cc9b0f699e"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="526973e9ff555b90c3bce4bb39f67229"/></dir><dir name="Fasterpay"><file name="Active.php" hash="25a186f88f38f6b8cf5a32028ed52a51"/></dir><dir name="Gezondheidsbon"><file name="Active.php" hash="656eb99e2af61d3648b1c636391a4476"/></dir><dir name="Giropay"><file name="Active.php" hash="0be69b719ebaf5fdf73410aedca2a21c"/></dir><dir name="Givacard"><file name="Active.php" hash="d7d3575bbd9c192f763956be66bd31c6"/></dir><dir name="Ideal"><file name="Active.php" hash="ff261498816bc57ef22175ef0d1ab212"/><file name="Selecttype.php" hash="69a3c2408ad31e0bb8d1f89c05207593"/></dir><dir name="Incasso"><file name="Active.php" hash="f70f04cac575720b7ecfab8d32f7d2f3"/></dir><dir name="Maestro"><file name="Active.php" hash="82a4748c78309ce19fd260921ed56a2d"/></dir><dir name="Minitixsms"><file name="Active.php" hash="f22609b6c023e867febc6a86483c5507"/></dir><dir name="Mistercash"><file name="Active.php" hash="f4ea8b494e139ee47b83319e973b3814"/></dir><dir name="Mybank"><file name="Active.php" hash="cd82545f460c268002052292963227fe"/></dir><dir name="Overboeking"><file name="Active.php" hash="85f6b86a12fcb59629aa73ced4e71c27"/></dir><dir name="Paypal"><file name="Active.php" hash="aceebd18fc86e403c2d05e8c2f711319"/></dir><dir name="Paysafecard"><file name="Active.php" hash="efe1ca8eb43f0d7cc612c3e1e0351a10"/></dir><dir name="Podiumkadokaart"><file name="Active.php" hash="5aaeb99d5c11b40b312487660a656328"/></dir><dir name="Postepay"><file name="Active.php" hash="ae5bc39eca34f74b557ba3d55dded5c7"/></dir><dir name="Sofortbanking"><file name="Active.php" hash="3569b0bc1f49da829843dadcbff5d9d9"/></dir><dir name="Telefoon"><file name="Active.php" hash="2a1bbcc9a6bed03402560838c3aeff68"/></dir><dir name="Visamastercard"><file name="Active.php" hash="f3e49192a0600437af59e9f3bc396c40"/></dir><dir name="Webshopgiftcard"><file name="Active.php" hash="e71770baa1ada4466cce57270df5e7bb"/></dir><dir name="Wijncadeau"><file name="Active.php" hash="9494fb7cd2326cac12fd9012621612ac"/></dir><dir name="Yourgift"><file name="Active.php" hash="6bdf62622be0610595fa54b02d494a7f"/></dir></dir><file name="Sendmail.php" hash="bf86ddde71b89ea6e3dfb434c3996f33"/><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="2734bce1efc0b62ea81d7a13770a1b19"/></dir></dir></dir><file name="Transaction.php" hash="ce1b9930a60aca5aa955bb9731d427b3"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="f25d4f5c1c15fd596792cb7ab2a81a61"/><file name="OrderController.php" hash="4d22c67a226f99ebb864487913f8bd6c"/></dir><dir name="etc"><file name="config.xml" hash="1e9bb4ab802847962c4203b8f17414c6"/><file name="system.xml" hash="280be7731de5a47e045bf7d17059f325"/></dir><dir name="sql"><dir name="pay_payment_setup"><file name="install-3.1.2.8.php" hash="a4a612c1afe0177ccd7b0bb0240a75d8"/><file name="upgrade-3.0.0-3.1.0.php" hash="8453d90bcc7b4647346112b44614cb16"/><file name="upgrade-3.1.2.2-3.1.2.4.php" hash="275444fa9b201b3f3010480b1645b5f0"/><file name="upgrade-3.1.2.7-3.1.2.8.php" hash="12b4a2bdbeff5ae0b27a1219f219193a"/><file name="upgrade-3.2.1-3.2.2.php" hash="59c84113d622db24d09de5e8639a7660"/><file name="upgrade-3.2.13-3.2.14.php" hash="27851a61541141d919ef4466aec40b38"/></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="a4c3097315b8f60520bb006b88316f78"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="ideal.phtml" hash="429f09f1b1c911f9179b435c7013d973"/><file name="idealSelect.phtml" hash="6478b90f77a4e549bc600d80a31f6b9f"/></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>5.6.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
18 |
</package>
|