Version Notes
Added capayable and capayable gespreid
Download this release
Release Info
Developer | Andy Pieters |
Extension | Pay_NL |
Version | 3.5.8 |
Comparing to | |
See all releases |
Code changes from version 3.5.7 to 3.5.8
- app/code/community/Pay/Payment/Block/Form/Capayable.php +8 -0
- app/code/community/Pay/Payment/Block/Form/CapayableGespreid.php +8 -0
- app/code/community/Pay/Payment/Model/Paymentmethod/Capayable.php +8 -0
- app/code/community/Pay/Payment/Model/Paymentmethod/CapayableGespreid.php +8 -0
- app/code/community/Pay/Payment/Model/Source/Paymentmethod/Capayable/Active.php +4 -0
- app/code/community/Pay/Payment/Model/Source/Paymentmethod/CapayableGespreid/Active.php +4 -0
- app/code/community/Pay/Payment/etc/config.xml +21 -1
- app/code/community/Pay/Payment/etc/system.xml +408 -0
- package.xml +6 -6
app/code/community/Pay/Payment/Block/Form/Capayable.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Pay_Payment_Block_Form_Capayable extends Pay_Payment_Block_Form_Abstract {
|
4 |
+
|
5 |
+
protected $paymentMethodId = Pay_Payment_Model_Paymentmethod_Capayable::OPTION_ID;
|
6 |
+
protected $paymentMethodName = 'Capayable';
|
7 |
+
|
8 |
+
}
|
app/code/community/Pay/Payment/Block/Form/CapayableGespreid.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Pay_Payment_Block_Form_CapayableGespreid extends Pay_Payment_Block_Form_Abstract {
|
4 |
+
|
5 |
+
protected $paymentMethodId = Pay_Payment_Model_Paymentmethod_CapayableGespreid::OPTION_ID;
|
6 |
+
protected $paymentMethodName = 'Capayable Gespreid';
|
7 |
+
|
8 |
+
}
|
app/code/community/Pay/Payment/Model/Paymentmethod/Capayable.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Pay_Payment_Model_Paymentmethod_Capayable extends Pay_Payment_Model_Paymentmethod {
|
3 |
+
const OPTION_ID = 1744;
|
4 |
+
protected $_paymentOptionId = 1744;
|
5 |
+
protected $_code = 'pay_payment_capayable';
|
6 |
+
protected $_formBlockType = 'pay_payment/form_capayable';
|
7 |
+
}
|
8 |
+
|
app/code/community/Pay/Payment/Model/Paymentmethod/CapayableGespreid.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Pay_Payment_Model_Paymentmethod_CapayableGespreid extends Pay_Payment_Model_Paymentmethod {
|
3 |
+
const OPTION_ID = 1813;
|
4 |
+
protected $_paymentOptionId = 1813;
|
5 |
+
protected $_code = 'pay_payment_capayablegespreid';
|
6 |
+
protected $_formBlockType = 'pay_payment/form_capayableGespreid';
|
7 |
+
}
|
8 |
+
|
app/code/community/Pay/Payment/Model/Source/Paymentmethod/Capayable/Active.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Pay_Payment_Model_Source_Paymentmethod_Capayable_Active extends Pay_Payment_Model_Source_Paymentmethod_Active{
|
3 |
+
protected $_option_id = Pay_Payment_Model_Paymentmethod_Capayable::OPTION_ID;
|
4 |
+
}
|
app/code/community/Pay/Payment/Model/Source/Paymentmethod/CapayableGespreid/Active.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Pay_Payment_Model_Source_Paymentmethod_CapayableGespreid_Active extends Pay_Payment_Model_Source_Paymentmethod_Active{
|
3 |
+
protected $_option_id = Pay_Payment_Model_Paymentmethod_CapayableGespreid::OPTION_ID;
|
4 |
+
}
|
app/code/community/Pay/Payment/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pay_Payment>
|
5 |
-
<version>3.5.
|
6 |
</Pay_Payment>
|
7 |
</modules>
|
8 |
|
@@ -206,6 +206,26 @@
|
|
206 |
<send_mail>success</send_mail>
|
207 |
<limit_shipping>0</limit_shipping>
|
208 |
</pay_payment_bitcoin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
<pay_payment_mybank>
|
210 |
<active>0</active>
|
211 |
<model>pay_payment/Paymentmethod_Mybank</model>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Pay_Payment>
|
5 |
+
<version>3.5.8</version>
|
6 |
</Pay_Payment>
|
7 |
</modules>
|
8 |
|
206 |
<send_mail>success</send_mail>
|
207 |
<limit_shipping>0</limit_shipping>
|
208 |
</pay_payment_bitcoin>
|
209 |
+
<pay_payment_capayable>
|
210 |
+
<active>0</active>
|
211 |
+
<model>pay_payment/Paymentmethod_Capayable</model>
|
212 |
+
<title>Capayable</title>
|
213 |
+
<payment_action>authorize</payment_action>
|
214 |
+
<order_status>pending_payment</order_status>
|
215 |
+
<order_status_success>processing</order_status_success>
|
216 |
+
<send_mail>success</send_mail>
|
217 |
+
<limit_shipping>0</limit_shipping>
|
218 |
+
</pay_payment_capayable>
|
219 |
+
<pay_payment_capayablegespreid>
|
220 |
+
<active>0</active>
|
221 |
+
<model>pay_payment/Paymentmethod_CapayableGespreid</model>
|
222 |
+
<title>Capayable Gespreid</title>
|
223 |
+
<payment_action>authorize</payment_action>
|
224 |
+
<order_status>pending_payment</order_status>
|
225 |
+
<order_status_success>processing</order_status_success>
|
226 |
+
<send_mail>success</send_mail>
|
227 |
+
<limit_shipping>0</limit_shipping>
|
228 |
+
</pay_payment_capayablegespreid>
|
229 |
<pay_payment_mybank>
|
230 |
<active>0</active>
|
231 |
<model>pay_payment/Paymentmethod_Mybank</model>
|
app/code/community/Pay/Payment/etc/system.xml
CHANGED
@@ -1289,6 +1289,414 @@
|
|
1289 |
</send_mail>
|
1290 |
</fields>
|
1291 |
</pay_payment_bitcoin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1292 |
<pay_payment_cartebleue translate="label" module="paygate">
|
1293 |
<label>Pay.nl - Cartebleue</label>
|
1294 |
<model>pay_payment/Model_Paymentmethod_Cartebleue</model>
|
1289 |
</send_mail>
|
1290 |
</fields>
|
1291 |
</pay_payment_bitcoin>
|
1292 |
+
<pay_payment_capayable translate="label" module="paygate">
|
1293 |
+
<label>Pay.nl - Capayable</label>
|
1294 |
+
<model>pay_payment/Model_Paymentmethod_Capayable</model>
|
1295 |
+
<sort_order>1025</sort_order>
|
1296 |
+
<show_in_default>1</show_in_default>
|
1297 |
+
<show_in_website>1</show_in_website>
|
1298 |
+
<show_in_store>1</show_in_store>
|
1299 |
+
<fields>
|
1300 |
+
<active translate="label">
|
1301 |
+
<label>Actief</label>
|
1302 |
+
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
1303 |
+
<sort_order>1</sort_order>
|
1304 |
+
<show_in_default>1</show_in_default>
|
1305 |
+
<show_in_website>1</show_in_website>
|
1306 |
+
<show_in_store>1</show_in_store>
|
1307 |
+
<frontend_type>select</frontend_type>
|
1308 |
+
<source_model>pay_payment/source_paymentmethod_capayable_active</source_model>
|
1309 |
+
</active>
|
1310 |
+
<title translate="label">
|
1311 |
+
<depends>
|
1312 |
+
<active>1</active>
|
1313 |
+
</depends>
|
1314 |
+
<label>Titel van de betaalmethode</label>
|
1315 |
+
<frontend_type>text</frontend_type>
|
1316 |
+
<sort_order>2</sort_order>
|
1317 |
+
<show_in_default>1</show_in_default>
|
1318 |
+
<show_in_website>1</show_in_website>
|
1319 |
+
<show_in_store>1</show_in_store>
|
1320 |
+
</title>
|
1321 |
+
|
1322 |
+
<sort_order translate="label">
|
1323 |
+
<depends>
|
1324 |
+
<active>1</active>
|
1325 |
+
</depends>
|
1326 |
+
<label>Betaalmethode sorteer volgorde</label>
|
1327 |
+
<frontend_type>text</frontend_type>
|
1328 |
+
<sort_order>4</sort_order>
|
1329 |
+
<show_in_default>1</show_in_default>
|
1330 |
+
<show_in_website>1</show_in_website>
|
1331 |
+
<show_in_store>1</show_in_store>
|
1332 |
+
</sort_order>
|
1333 |
+
<min_order_total translate="label">
|
1334 |
+
<depends>
|
1335 |
+
<active>1</active>
|
1336 |
+
</depends>
|
1337 |
+
<label>Minimum bedrag</label>
|
1338 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
1339 |
+
<frontend_type>text</frontend_type>
|
1340 |
+
<sort_order>5</sort_order>
|
1341 |
+
<show_in_default>1</show_in_default>
|
1342 |
+
<show_in_website>1</show_in_website>
|
1343 |
+
<show_in_store>1</show_in_store>
|
1344 |
+
</min_order_total>
|
1345 |
+
<max_order_total translate="label">
|
1346 |
+
<depends>
|
1347 |
+
<active>1</active>
|
1348 |
+
</depends>
|
1349 |
+
<label>Maximum bedrag</label>
|
1350 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
1351 |
+
<frontend_type>text</frontend_type>
|
1352 |
+
<sort_order>6</sort_order>
|
1353 |
+
<show_in_default>1</show_in_default>
|
1354 |
+
<show_in_website>1</show_in_website>
|
1355 |
+
<show_in_store>1</show_in_store>
|
1356 |
+
</max_order_total>
|
1357 |
+
<allowspecific translate="label">
|
1358 |
+
<depends>
|
1359 |
+
<active>1</active>
|
1360 |
+
</depends>
|
1361 |
+
<label>Beschikbaarheid per land</label>
|
1362 |
+
<frontend_type>allowspecific</frontend_type>
|
1363 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
1364 |
+
<sort_order>7</sort_order>
|
1365 |
+
<show_in_default>1</show_in_default>
|
1366 |
+
<show_in_website>1</show_in_website>
|
1367 |
+
<show_in_store>1</show_in_store>
|
1368 |
+
</allowspecific>
|
1369 |
+
<specificcountry translate="label">
|
1370 |
+
<depends>
|
1371 |
+
<active>1</active>
|
1372 |
+
<allowspecific>1</allowspecific>
|
1373 |
+
</depends>
|
1374 |
+
<label>Toegestane landen</label>
|
1375 |
+
<frontend_type>multiselect</frontend_type>
|
1376 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
1377 |
+
<sort_order>8</sort_order>
|
1378 |
+
<show_in_default>1</show_in_default>
|
1379 |
+
<show_in_website>1</show_in_website>
|
1380 |
+
<show_in_store>1</show_in_store>
|
1381 |
+
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
1382 |
+
</specificcountry>
|
1383 |
+
<limit_shipping translate="label">
|
1384 |
+
<depends>
|
1385 |
+
<active>1</active>
|
1386 |
+
</depends>
|
1387 |
+
<label>Verzendmethoden blokkeren</label>
|
1388 |
+
<comment>
|
1389 |
+
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden
|
1390 |
+
</comment>
|
1391 |
+
<frontend_type>select</frontend_type>
|
1392 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1393 |
+
<sort_order>9</sort_order>
|
1394 |
+
<show_in_default>1</show_in_default>
|
1395 |
+
<show_in_website>1</show_in_website>
|
1396 |
+
<show_in_store>1</show_in_store>
|
1397 |
+
</limit_shipping>
|
1398 |
+
<disabled_shippingmethods>
|
1399 |
+
<depends>
|
1400 |
+
<active>1</active>
|
1401 |
+
<limit_shipping>1</limit_shipping>
|
1402 |
+
</depends>
|
1403 |
+
<comment>
|
1404 |
+
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1405 |
+
</comment>
|
1406 |
+
<label>Geblokkeerde verzendmethoden</label>
|
1407 |
+
<frontend_type>multiselect</frontend_type>
|
1408 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1409 |
+
<sort_order>10</sort_order>
|
1410 |
+
<show_in_default>1</show_in_default>
|
1411 |
+
<show_in_website>1</show_in_website>
|
1412 |
+
<show_in_store>1</show_in_store>
|
1413 |
+
</disabled_shippingmethods>
|
1414 |
+
<order_status translate="label">
|
1415 |
+
<depends>
|
1416 |
+
<active>1</active>
|
1417 |
+
</depends>
|
1418 |
+
<label>Nieuwe order status</label>
|
1419 |
+
<comment>De status die een order moet krijgen bij het toevoegen</comment>
|
1420 |
+
<frontend_type>select</frontend_type>
|
1421 |
+
<source_model>pay_payment/source_status_pendingPayment</source_model>
|
1422 |
+
<sort_order>11</sort_order>
|
1423 |
+
<show_in_default>1</show_in_default>
|
1424 |
+
<show_in_website>1</show_in_website>
|
1425 |
+
<show_in_store>1</show_in_store>
|
1426 |
+
</order_status>
|
1427 |
+
<order_status_success translate="label">
|
1428 |
+
<depends>
|
1429 |
+
<active>1</active>
|
1430 |
+
</depends>
|
1431 |
+
<label>Gelukt order status</label>
|
1432 |
+
<comment>De status die een order moet krijgen na succesvolle betaling</comment>
|
1433 |
+
<frontend_type>select</frontend_type>
|
1434 |
+
<source_model>pay_payment/source_status_processing</source_model>
|
1435 |
+
<sort_order>12</sort_order>
|
1436 |
+
<show_in_default>1</show_in_default>
|
1437 |
+
<show_in_website>1</show_in_website>
|
1438 |
+
<show_in_store>1</show_in_store>
|
1439 |
+
</order_status_success>
|
1440 |
+
<charge_type translate="label">
|
1441 |
+
<depends>
|
1442 |
+
<active>1</active>
|
1443 |
+
</depends>
|
1444 |
+
<label>Extra kosten rekenen</label>
|
1445 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het
|
1446 |
+
totaalbedrag of een vast bedrag
|
1447 |
+
</comment>
|
1448 |
+
<frontend_type>select</frontend_type>
|
1449 |
+
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1450 |
+
<sort_order>200</sort_order>
|
1451 |
+
<show_in_default>1</show_in_default>
|
1452 |
+
<show_in_website>1</show_in_website>
|
1453 |
+
<show_in_store>1</show_in_store>
|
1454 |
+
</charge_type>
|
1455 |
+
<charge_value translate="label">
|
1456 |
+
<depends>
|
1457 |
+
<active>1</active>
|
1458 |
+
</depends>
|
1459 |
+
<label>Extra kosten</label>
|
1460 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen,
|
1461 |
+
als u geen extra kosten wilt rekenen vult u niets in
|
1462 |
+
</comment>
|
1463 |
+
<frontend_type>text</frontend_type>
|
1464 |
+
<sort_order>201</sort_order>
|
1465 |
+
<show_in_default>1</show_in_default>
|
1466 |
+
<show_in_website>1</show_in_website>
|
1467 |
+
<show_in_store>1</show_in_store>
|
1468 |
+
</charge_value>
|
1469 |
+
<charge_tax_class translate="label">
|
1470 |
+
<depends>
|
1471 |
+
<active>1</active>
|
1472 |
+
</depends>
|
1473 |
+
<label>Btw voor extra kosten</label>
|
1474 |
+
<frontend_type>select</frontend_type>
|
1475 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
1476 |
+
<sort_order>202</sort_order>
|
1477 |
+
<show_in_default>1</show_in_default>
|
1478 |
+
<show_in_website>1</show_in_website>
|
1479 |
+
<show_in_store>1</show_in_store>
|
1480 |
+
</charge_tax_class>
|
1481 |
+
<send_mail translate="label">
|
1482 |
+
<depends>
|
1483 |
+
<active>1</active>
|
1484 |
+
</depends>
|
1485 |
+
<label>Bevestigingsmail sturen</label>
|
1486 |
+
<comment>Wanneer wilt u dat de bevestigingsmail wordt verstuurd</comment>
|
1487 |
+
<sort_order>300</sort_order>
|
1488 |
+
<show_in_default>1</show_in_default>
|
1489 |
+
<show_in_website>1</show_in_website>
|
1490 |
+
<show_in_store>1</show_in_store>
|
1491 |
+
<frontend_type>select</frontend_type>
|
1492 |
+
<source_model>pay_payment/source_sendmail</source_model>
|
1493 |
+
</send_mail>
|
1494 |
+
</fields>
|
1495 |
+
</pay_payment_capayable>
|
1496 |
+
<pay_payment_capayablegespreid translate="label" module="paygate">
|
1497 |
+
<label>Pay.nl - Capayable Gespreid</label>
|
1498 |
+
<model>pay_payment/Model_Paymentmethod_CapayableGespreid</model>
|
1499 |
+
<sort_order>1026</sort_order>
|
1500 |
+
<show_in_default>1</show_in_default>
|
1501 |
+
<show_in_website>1</show_in_website>
|
1502 |
+
<show_in_store>1</show_in_store>
|
1503 |
+
<fields>
|
1504 |
+
<active translate="label">
|
1505 |
+
<label>Actief</label>
|
1506 |
+
<comment>Wilt u deze betaalmethode gebruiken</comment>
|
1507 |
+
<sort_order>1</sort_order>
|
1508 |
+
<show_in_default>1</show_in_default>
|
1509 |
+
<show_in_website>1</show_in_website>
|
1510 |
+
<show_in_store>1</show_in_store>
|
1511 |
+
<frontend_type>select</frontend_type>
|
1512 |
+
<source_model>pay_payment/source_paymentmethod_capayableGespreid_active</source_model>
|
1513 |
+
</active>
|
1514 |
+
<title translate="label">
|
1515 |
+
<depends>
|
1516 |
+
<active>1</active>
|
1517 |
+
</depends>
|
1518 |
+
<label>Titel van de betaalmethode</label>
|
1519 |
+
<frontend_type>text</frontend_type>
|
1520 |
+
<sort_order>2</sort_order>
|
1521 |
+
<show_in_default>1</show_in_default>
|
1522 |
+
<show_in_website>1</show_in_website>
|
1523 |
+
<show_in_store>1</show_in_store>
|
1524 |
+
</title>
|
1525 |
+
|
1526 |
+
<sort_order translate="label">
|
1527 |
+
<depends>
|
1528 |
+
<active>1</active>
|
1529 |
+
</depends>
|
1530 |
+
<label>Betaalmethode sorteer volgorde</label>
|
1531 |
+
<frontend_type>text</frontend_type>
|
1532 |
+
<sort_order>4</sort_order>
|
1533 |
+
<show_in_default>1</show_in_default>
|
1534 |
+
<show_in_website>1</show_in_website>
|
1535 |
+
<show_in_store>1</show_in_store>
|
1536 |
+
</sort_order>
|
1537 |
+
<min_order_total translate="label">
|
1538 |
+
<depends>
|
1539 |
+
<active>1</active>
|
1540 |
+
</depends>
|
1541 |
+
<label>Minimum bedrag</label>
|
1542 |
+
<comment>Het minimum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
1543 |
+
<frontend_type>text</frontend_type>
|
1544 |
+
<sort_order>5</sort_order>
|
1545 |
+
<show_in_default>1</show_in_default>
|
1546 |
+
<show_in_website>1</show_in_website>
|
1547 |
+
<show_in_store>1</show_in_store>
|
1548 |
+
</min_order_total>
|
1549 |
+
<max_order_total translate="label">
|
1550 |
+
<depends>
|
1551 |
+
<active>1</active>
|
1552 |
+
</depends>
|
1553 |
+
<label>Maximum bedrag</label>
|
1554 |
+
<comment>Het maximum bedrag waarvoor deze betaalmethode gebruikt mag worden</comment>
|
1555 |
+
<frontend_type>text</frontend_type>
|
1556 |
+
<sort_order>6</sort_order>
|
1557 |
+
<show_in_default>1</show_in_default>
|
1558 |
+
<show_in_website>1</show_in_website>
|
1559 |
+
<show_in_store>1</show_in_store>
|
1560 |
+
</max_order_total>
|
1561 |
+
<allowspecific translate="label">
|
1562 |
+
<depends>
|
1563 |
+
<active>1</active>
|
1564 |
+
</depends>
|
1565 |
+
<label>Beschikbaarheid per land</label>
|
1566 |
+
<frontend_type>allowspecific</frontend_type>
|
1567 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
1568 |
+
<sort_order>7</sort_order>
|
1569 |
+
<show_in_default>1</show_in_default>
|
1570 |
+
<show_in_website>1</show_in_website>
|
1571 |
+
<show_in_store>1</show_in_store>
|
1572 |
+
</allowspecific>
|
1573 |
+
<specificcountry translate="label">
|
1574 |
+
<depends>
|
1575 |
+
<active>1</active>
|
1576 |
+
<allowspecific>1</allowspecific>
|
1577 |
+
</depends>
|
1578 |
+
<label>Toegestane landen</label>
|
1579 |
+
<frontend_type>multiselect</frontend_type>
|
1580 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
1581 |
+
<sort_order>8</sort_order>
|
1582 |
+
<show_in_default>1</show_in_default>
|
1583 |
+
<show_in_website>1</show_in_website>
|
1584 |
+
<show_in_store>1</show_in_store>
|
1585 |
+
<comment>Selecteer de landen waarvoor deze betaalmethode beschikbaar is</comment>
|
1586 |
+
</specificcountry>
|
1587 |
+
<limit_shipping translate="label">
|
1588 |
+
<depends>
|
1589 |
+
<active>1</active>
|
1590 |
+
</depends>
|
1591 |
+
<label>Verzendmethoden blokkeren</label>
|
1592 |
+
<comment>
|
1593 |
+
Schakel dit in als u deze betaalmethode wilt blokkeren voor bepaalde verzendmethoden
|
1594 |
+
</comment>
|
1595 |
+
<frontend_type>select</frontend_type>
|
1596 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
1597 |
+
<sort_order>9</sort_order>
|
1598 |
+
<show_in_default>1</show_in_default>
|
1599 |
+
<show_in_website>1</show_in_website>
|
1600 |
+
<show_in_store>1</show_in_store>
|
1601 |
+
</limit_shipping>
|
1602 |
+
<disabled_shippingmethods>
|
1603 |
+
<depends>
|
1604 |
+
<active>1</active>
|
1605 |
+
<limit_shipping>1</limit_shipping>
|
1606 |
+
</depends>
|
1607 |
+
<comment>
|
1608 |
+
Selecteer de verzendmethoden waarvoor deze betaalmethode NIET beschikbaar is
|
1609 |
+
</comment>
|
1610 |
+
<label>Geblokkeerde verzendmethoden</label>
|
1611 |
+
<frontend_type>multiselect</frontend_type>
|
1612 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
1613 |
+
<sort_order>10</sort_order>
|
1614 |
+
<show_in_default>1</show_in_default>
|
1615 |
+
<show_in_website>1</show_in_website>
|
1616 |
+
<show_in_store>1</show_in_store>
|
1617 |
+
</disabled_shippingmethods>
|
1618 |
+
<order_status translate="label">
|
1619 |
+
<depends>
|
1620 |
+
<active>1</active>
|
1621 |
+
</depends>
|
1622 |
+
<label>Nieuwe order status</label>
|
1623 |
+
<comment>De status die een order moet krijgen bij het toevoegen</comment>
|
1624 |
+
<frontend_type>select</frontend_type>
|
1625 |
+
<source_model>pay_payment/source_status_pendingPayment</source_model>
|
1626 |
+
<sort_order>11</sort_order>
|
1627 |
+
<show_in_default>1</show_in_default>
|
1628 |
+
<show_in_website>1</show_in_website>
|
1629 |
+
<show_in_store>1</show_in_store>
|
1630 |
+
</order_status>
|
1631 |
+
<order_status_success translate="label">
|
1632 |
+
<depends>
|
1633 |
+
<active>1</active>
|
1634 |
+
</depends>
|
1635 |
+
<label>Gelukt order status</label>
|
1636 |
+
<comment>De status die een order moet krijgen na succesvolle betaling</comment>
|
1637 |
+
<frontend_type>select</frontend_type>
|
1638 |
+
<source_model>pay_payment/source_status_processing</source_model>
|
1639 |
+
<sort_order>12</sort_order>
|
1640 |
+
<show_in_default>1</show_in_default>
|
1641 |
+
<show_in_website>1</show_in_website>
|
1642 |
+
<show_in_store>1</show_in_store>
|
1643 |
+
</order_status_success>
|
1644 |
+
<charge_type translate="label">
|
1645 |
+
<depends>
|
1646 |
+
<active>1</active>
|
1647 |
+
</depends>
|
1648 |
+
<label>Extra kosten rekenen</label>
|
1649 |
+
<comment>Geef hier aan of u extra kosten wilt rekenen op basis van een percentage van het
|
1650 |
+
totaalbedrag of een vast bedrag
|
1651 |
+
</comment>
|
1652 |
+
<frontend_type>select</frontend_type>
|
1653 |
+
<source_model>pay_payment/system_config_source_chargetype</source_model>
|
1654 |
+
<sort_order>200</sort_order>
|
1655 |
+
<show_in_default>1</show_in_default>
|
1656 |
+
<show_in_website>1</show_in_website>
|
1657 |
+
<show_in_store>1</show_in_store>
|
1658 |
+
</charge_type>
|
1659 |
+
<charge_value translate="label">
|
1660 |
+
<depends>
|
1661 |
+
<active>1</active>
|
1662 |
+
</depends>
|
1663 |
+
<label>Extra kosten</label>
|
1664 |
+
<comment>Geef hier aan hoeveel extra kosten u wilt rekenen, gebruik een punt voor decimalen,
|
1665 |
+
als u geen extra kosten wilt rekenen vult u niets in
|
1666 |
+
</comment>
|
1667 |
+
<frontend_type>text</frontend_type>
|
1668 |
+
<sort_order>201</sort_order>
|
1669 |
+
<show_in_default>1</show_in_default>
|
1670 |
+
<show_in_website>1</show_in_website>
|
1671 |
+
<show_in_store>1</show_in_store>
|
1672 |
+
</charge_value>
|
1673 |
+
<charge_tax_class translate="label">
|
1674 |
+
<depends>
|
1675 |
+
<active>1</active>
|
1676 |
+
</depends>
|
1677 |
+
<label>Btw voor extra kosten</label>
|
1678 |
+
<frontend_type>select</frontend_type>
|
1679 |
+
<source_model>adminhtml/system_config_source_shipping_taxclass</source_model>
|
1680 |
+
<sort_order>202</sort_order>
|
1681 |
+
<show_in_default>1</show_in_default>
|
1682 |
+
<show_in_website>1</show_in_website>
|
1683 |
+
<show_in_store>1</show_in_store>
|
1684 |
+
</charge_tax_class>
|
1685 |
+
<send_mail translate="label">
|
1686 |
+
<depends>
|
1687 |
+
<active>1</active>
|
1688 |
+
</depends>
|
1689 |
+
<label>Bevestigingsmail sturen</label>
|
1690 |
+
<comment>Wanneer wilt u dat de bevestigingsmail wordt verstuurd</comment>
|
1691 |
+
<sort_order>300</sort_order>
|
1692 |
+
<show_in_default>1</show_in_default>
|
1693 |
+
<show_in_website>1</show_in_website>
|
1694 |
+
<show_in_store>1</show_in_store>
|
1695 |
+
<frontend_type>select</frontend_type>
|
1696 |
+
<source_model>pay_payment/source_sendmail</source_model>
|
1697 |
+
</send_mail>
|
1698 |
+
</fields>
|
1699 |
+
</pay_payment_capayablegespreid>
|
1700 |
<pay_payment_cartebleue translate="label" module="paygate">
|
1701 |
<label>Pay.nl - Cartebleue</label>
|
1702 |
<model>pay_payment/Model_Paymentmethod_Cartebleue</model>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pay_NL</name>
|
4 |
-
<version>3.5.
|
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>2016-
|
14 |
-
<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="7cc054db9a7a6cd5798de652684e942c"/><file name="Afterpay.php" hash="8cd5ff0c701b80c495e2b54ca42aa409"/><file name="Afterpayem.php" hash="f2a0fec2f35709f8a74197a6d54563ea"/><file name="Amex.php" hash="1cc976c7680ae23c907c142b9298135b"/><file name="Billink.php" hash="ae4ea1feb64307acd645b6c6619843b0"/><file name="Bitcoin.php" hash="75865e865383e68fdf95247750f7f277"/><file name="Cartebleue.php" hash="9f390551e37eb1d69e12760cc1f880f6"/><file name="Cashticket.php" hash="13c16a46961fc82340a3bd6de96cdaae"/><file name="Clickandbuy.php" hash="1a7dde770d23b8d9aa2414faecf1fb4c"/><file name="Ebon.php" hash="35678a3bb72f840634573fd85d4ebab1"/><file name="Fashioncheque.php" hash="e57fbef0ab9844cdb7e140c4cf1b150f"/><file name="Focum.php" hash="2d762345fab7bafb286bdfaa599adc92"/><file name="Gezondheidsbon.php" hash="81abc8787d0a46e31c997b99c70dbc81"/><file name="Giropay.php" hash="904c5cea2b36185deae3261f611502be"/><file name="Givacard.php" hash="09b095326e89a770647eab2079694efe"/><file name="Ideal.php" hash="0720b83586844572901ffd327c425561"/><file name="Incasso.php" hash="088d6e570c9edc630d828732920b250b"/><file name="Maestro.php" hash="2870b24ad711fb158e6e56d7e755edd1"/><file name="Minitixsms.php" hash="8c4b7b79a0b13b8101dd33dbd5c51ca4"/><file name="Mistercash.php" hash="01d7fab254566dbb8b6e64c0e8d0be1f"/><file name="Mybank.php" hash="05f186caa7c61ef84016eeeb5cf5263e"/><file name="Overboeking.php" hash="151c5d9d35aa600f904b4282af1fa891"/><file name="Paypal.php" hash="a2e4bba7138951b21865b3fa5e3ce7ad"/><file name="Paysafecard.php" hash="3f63b7b95225a17395af647391e63271"/><file name="Podiumkadokaart.php" hash="b93a7ecb5b1d37b629010b792e21ddc6"/><file name="Postepay.php" hash="fa2b53034c84dc4aa5cd92ca7c725843"/><file name="Sofortbanking.php" hash="f92906b55d8dbcac2fd8f1e444c3c70a"/><file name="Telefoon.php" hash="eebbf880b197049a5a708fb894b2155a"/><file name="Visamastercard.php" hash="89841cbd01f3e1d7b7eb66f77e2b3049"/><file name="Vvvgiftcard.php" hash="9edef6ea1e39508326c7a46f56aafe13"/><file name="Webshopgiftcard.php" hash="5d00fb02f9d6dd3a57a3cd10b9e90088"/><file name="Wijncadeau.php" hash="db5bb33cc1a430046ee71d9320fd2384"/><file name="Yourgift.php" hash="8e9fe3c928a3b8ba26699256cfb7d94e"/></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="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="bf17ff80686274aa9779148c42a44bca"/><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="48d8c137ba7e8d81cb838ef15259711e"/><file name="Bitcoin.php" hash="496ec9c7912b8b284168e93640528ed6"/><file name="Cartebleue.php" hash="9c7582f774e76a5932a58a8b9ec9e51a"/><file name="Cashticket.php" hash="b374db3c31e1ca0a702c9cd0f0ec89d0"/><file name="Clickandbuy.php" hash="a115c4ad56f34c950006c43d0309ca50"/><file name="Directebankingat.php" hash="ca5c66808b80ebf45b87b50bb3869d5c"/><file name="Directebankingbe.php" hash="01a145c0f8b3d530bebe7483dc9a852a"/><file name="Directebankingch.php" hash="eff6c69f2939d0032ec45a2bb6cb775c"/><file name="Directebankingde.php" hash="618447766c61bf254a497fe53ac835ed"/><file name="Directebankinggb.php" hash="7aea68e3423c863ea0e070cede19e5ef"/><file name="Directebankingnl.php" hash="09376b04d44fd78e98b018c6cbe254da"/><file name="Ebon.php" hash="38a55ff247957a7cc931f3f7a8f9575e"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Fasterpay.php" hash="1b9ee1aea70b148627038b04a77e9aa3"/><file name="Focum.php" hash="47263c4cc1673a770611d31385bf02b2"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="93dba271529a693a0248e43802e2b801"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Minitixsms.php" hash="41b8147fa7bf1222fc9e11df57ddf6ea"/><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="5d2297d6334cb1c669aae40b45e61ce1"/><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="Cartebleue"><file name="Active.php" hash="bcf8c51ecfbc8d44c9f49a39dc764bd4"/></dir><dir name="Cashticket"><file name="Active.php" hash="b2fb653f955206b95ade46b7d773fd44"/></dir><dir name="Clickandbuy"><file name="Active.php" hash="3cd4822bf3b81f37f221e8a2f71831f1"/></dir><dir name="Directebankingat"><file name="Active.php" hash="016a9c30042730f59987a15084813274"/></dir><dir name="Directebankingbe"><file name="Active.php" hash="ef0792c4afe797fba3f5a2412605f3ae"/></dir><dir name="Directebankingch"><file name="Active.php" hash="8445a878d1fac3d66fad692a27886875"/></dir><dir name="Directebankingde"><file name="Active.php" hash="4b6618ac4cd8f871a87420394c229206"/></dir><dir name="Directebankinggb"><file name="Active.php" hash="061845a9869bcfe3d747c6860d85631c"/></dir><dir name="Directebankingnl"><file name="Active.php" hash="9324b7b952b0b5d29a24981008968299"/></dir><dir name="Ebon"><file name="Active.php" hash="5100654efe41f52ba03b49b388192877"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Fasterpay"><file name="Active.php" hash="ad54e7a72f63b690436bd7e370368dbf"/></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="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Minitixsms"><file name="Active.php" hash="f3ab8dd3680e3183d10e58764582cb37"/></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"/><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="df20dca2a1fa3bc7db654a58cd99a1da"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="7cb14d5982884c98fd3c1ad3a3c72c83"/><file name="OrderController.php" hash="28cdb511a0eb3687fc8833aa7b9ea61c"/></dir><dir name="etc"><file name="config.xml" hash="9efad47dd1877a40c7baeb11c48fa87e"/><file name="system.xml" hash="ca527ba5a4c2d7c85deaec79d3f9d234"/></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="d62a82c960145e0ced4651c995f21a56"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="ec1fba8cdc48162b0d4481ce8af1be8e"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/></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>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pay_NL</name>
|
4 |
+
<version>3.5.8</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 capayable and capayable gespreid</notes>
|
12 |
<authors><author><name>Andy Pieters</name><user>andy</user><email>andy@pay.nl</email></author></authors>
|
13 |
+
<date>2016-10-04</date>
|
14 |
+
<time>15:09:43</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="7cc054db9a7a6cd5798de652684e942c"/><file name="Afterpay.php" hash="8cd5ff0c701b80c495e2b54ca42aa409"/><file name="Afterpayem.php" hash="f2a0fec2f35709f8a74197a6d54563ea"/><file name="Amex.php" hash="1cc976c7680ae23c907c142b9298135b"/><file name="Billink.php" hash="ae4ea1feb64307acd645b6c6619843b0"/><file name="Bitcoin.php" hash="75865e865383e68fdf95247750f7f277"/><file name="Capayable.php" hash="a645ff66638cce1866e4d501f46ba598"/><file name="CapayableGespreid.php" hash="675baec90bca1504c46d47da0a9c6bdd"/><file name="Cartebleue.php" hash="9f390551e37eb1d69e12760cc1f880f6"/><file name="Cashticket.php" hash="13c16a46961fc82340a3bd6de96cdaae"/><file name="Clickandbuy.php" hash="1a7dde770d23b8d9aa2414faecf1fb4c"/><file name="Ebon.php" hash="35678a3bb72f840634573fd85d4ebab1"/><file name="Fashioncheque.php" hash="e57fbef0ab9844cdb7e140c4cf1b150f"/><file name="Focum.php" hash="2d762345fab7bafb286bdfaa599adc92"/><file name="Gezondheidsbon.php" hash="81abc8787d0a46e31c997b99c70dbc81"/><file name="Giropay.php" hash="904c5cea2b36185deae3261f611502be"/><file name="Givacard.php" hash="09b095326e89a770647eab2079694efe"/><file name="Ideal.php" hash="0720b83586844572901ffd327c425561"/><file name="Incasso.php" hash="088d6e570c9edc630d828732920b250b"/><file name="Maestro.php" hash="2870b24ad711fb158e6e56d7e755edd1"/><file name="Minitixsms.php" hash="8c4b7b79a0b13b8101dd33dbd5c51ca4"/><file name="Mistercash.php" hash="01d7fab254566dbb8b6e64c0e8d0be1f"/><file name="Mybank.php" hash="05f186caa7c61ef84016eeeb5cf5263e"/><file name="Overboeking.php" hash="151c5d9d35aa600f904b4282af1fa891"/><file name="Paypal.php" hash="a2e4bba7138951b21865b3fa5e3ce7ad"/><file name="Paysafecard.php" hash="3f63b7b95225a17395af647391e63271"/><file name="Podiumkadokaart.php" hash="b93a7ecb5b1d37b629010b792e21ddc6"/><file name="Postepay.php" hash="fa2b53034c84dc4aa5cd92ca7c725843"/><file name="Sofortbanking.php" hash="f92906b55d8dbcac2fd8f1e444c3c70a"/><file name="Telefoon.php" hash="eebbf880b197049a5a708fb894b2155a"/><file name="Visamastercard.php" hash="89841cbd01f3e1d7b7eb66f77e2b3049"/><file name="Vvvgiftcard.php" hash="9edef6ea1e39508326c7a46f56aafe13"/><file name="Webshopgiftcard.php" hash="5d00fb02f9d6dd3a57a3cd10b9e90088"/><file name="Wijncadeau.php" hash="db5bb33cc1a430046ee71d9320fd2384"/><file name="Yourgift.php" hash="8e9fe3c928a3b8ba26699256cfb7d94e"/></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="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="bf17ff80686274aa9779148c42a44bca"/><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="48d8c137ba7e8d81cb838ef15259711e"/><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="Cashticket.php" hash="b374db3c31e1ca0a702c9cd0f0ec89d0"/><file name="Clickandbuy.php" hash="a115c4ad56f34c950006c43d0309ca50"/><file name="Directebankingat.php" hash="ca5c66808b80ebf45b87b50bb3869d5c"/><file name="Directebankingbe.php" hash="01a145c0f8b3d530bebe7483dc9a852a"/><file name="Directebankingch.php" hash="eff6c69f2939d0032ec45a2bb6cb775c"/><file name="Directebankingde.php" hash="618447766c61bf254a497fe53ac835ed"/><file name="Directebankinggb.php" hash="7aea68e3423c863ea0e070cede19e5ef"/><file name="Directebankingnl.php" hash="09376b04d44fd78e98b018c6cbe254da"/><file name="Ebon.php" hash="38a55ff247957a7cc931f3f7a8f9575e"/><file name="Fashioncheque.php" hash="68355c9aaaf281b47d805dd09a29a2e4"/><file name="Fasterpay.php" hash="1b9ee1aea70b148627038b04a77e9aa3"/><file name="Focum.php" hash="47263c4cc1673a770611d31385bf02b2"/><file name="Gezondheidsbon.php" hash="9eb4a0560499cfa77bfeb0caf2721880"/><file name="Giropay.php" hash="0c1a03865705abf36a515f4ce853fe79"/><file name="Givacard.php" hash="674b31ad7ec22621b57093da2944dec0"/><file name="Ideal.php" hash="93dba271529a693a0248e43802e2b801"/><file name="Incasso.php" hash="201b14ae2b7ca0c3ca57c10c7f63539f"/><file name="Maestro.php" hash="eaa24f85ca579779f8f48d0b55dbf41f"/><file name="Minitixsms.php" hash="41b8147fa7bf1222fc9e11df57ddf6ea"/><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="5d2297d6334cb1c669aae40b45e61ce1"/><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="Cashticket"><file name="Active.php" hash="b2fb653f955206b95ade46b7d773fd44"/></dir><dir name="Clickandbuy"><file name="Active.php" hash="3cd4822bf3b81f37f221e8a2f71831f1"/></dir><dir name="Directebankingat"><file name="Active.php" hash="016a9c30042730f59987a15084813274"/></dir><dir name="Directebankingbe"><file name="Active.php" hash="ef0792c4afe797fba3f5a2412605f3ae"/></dir><dir name="Directebankingch"><file name="Active.php" hash="8445a878d1fac3d66fad692a27886875"/></dir><dir name="Directebankingde"><file name="Active.php" hash="4b6618ac4cd8f871a87420394c229206"/></dir><dir name="Directebankinggb"><file name="Active.php" hash="061845a9869bcfe3d747c6860d85631c"/></dir><dir name="Directebankingnl"><file name="Active.php" hash="9324b7b952b0b5d29a24981008968299"/></dir><dir name="Ebon"><file name="Active.php" hash="5100654efe41f52ba03b49b388192877"/></dir><dir name="Fashioncheque"><file name="Active.php" hash="c5fa9deac7ffd651b049ffb72133163f"/></dir><dir name="Fasterpay"><file name="Active.php" hash="ad54e7a72f63b690436bd7e370368dbf"/></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="Maestro"><file name="Active.php" hash="c33b890119ecfcbc4f67044ac8750f42"/></dir><dir name="Minitixsms"><file name="Active.php" hash="f3ab8dd3680e3183d10e58764582cb37"/></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"/><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="df20dca2a1fa3bc7db654a58cd99a1da"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="7cb14d5982884c98fd3c1ad3a3c72c83"/><file name="OrderController.php" hash="28cdb511a0eb3687fc8833aa7b9ea61c"/></dir><dir name="etc"><file name="config.xml" hash="1bdde55716b4c5b3daaf40ec1ed1cdf9"/><file name="system.xml" hash="e40142d3e741f46f1fea6c763ceaa005"/></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="d62a82c960145e0ced4651c995f21a56"/><file name="default.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="focum.phtml" hash="ec1fba8cdc48162b0d4481ce8af1be8e"/><file name="ideal.phtml" hash="6cfa69a8773dfc091e055b531bbf31dc"/><file name="idealSelect.phtml" hash="13936d975af0083512378f5936a5896d"/></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.1.99</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
18 |
</package>
|