Version Notes
- New payment methods: Carte Bleue and Carte Bancaire.
Download this release
Release Info
Developer | Magento Core Team |
Extension | Cardgate_Cgp |
Version | 1.0.38 |
Comparing to | |
See all releases |
Code changes from version 1.0.37 to 1.0.38
- app/code/local/Cardgate/Cgp/Model/Base.php +0 -1
- app/code/local/Cardgate/Cgp/Model/Gateway/Abstract.php +2 -0
- app/code/local/Cardgate/Cgp/Model/Gateway/Cartebancaire.php +24 -0
- app/code/local/Cardgate/Cgp/Model/Gateway/Cartebleue.php +24 -0
- app/code/local/Cardgate/Cgp/etc/config.xml +21 -1
- app/code/local/Cardgate/Cgp/etc/system.xml +118 -12
- package.xml +5 -5
app/code/local/Cardgate/Cgp/Model/Base.php
CHANGED
@@ -222,7 +222,6 @@ class Cardgate_Cgp_Model_Base extends Varien_Object {
|
|
222 |
* @return void
|
223 |
*/
|
224 |
public function processCallback() {
|
225 |
-
//mail('richard@cardgate.com','magento data','test'.print_r($this->getCallbackData(),true));
|
226 |
$id = $this->getCallbackData( 'ref' );
|
227 |
$order = Mage::getModel( 'sales/order' );
|
228 |
$order->loadByIncrementId( $id );
|
222 |
* @return void
|
223 |
*/
|
224 |
public function processCallback() {
|
|
|
225 |
$id = $this->getCallbackData( 'ref' );
|
226 |
$order = Mage::getModel( 'sales/order' );
|
227 |
$order->loadByIncrementId( $id );
|
app/code/local/Cardgate/Cgp/Model/Gateway/Abstract.php
CHANGED
@@ -236,6 +236,8 @@ abstract class Cardgate_Cgp_Model_Gateway_Abstract extends Mage_Payment_Model_Me
|
|
236 |
case 'mastercard':
|
237 |
case 'americanexpress':
|
238 |
case 'maestro':
|
|
|
|
|
239 |
case 'vpay':
|
240 |
$s_arr['option'] = 'creditcard';
|
241 |
break;
|
236 |
case 'mastercard':
|
237 |
case 'americanexpress':
|
238 |
case 'maestro':
|
239 |
+
case 'cartebleue':
|
240 |
+
case 'cartebancaire':
|
241 |
case 'vpay':
|
242 |
$s_arr['option'] = 'creditcard';
|
243 |
break;
|
app/code/local/Cardgate/Cgp/Model/Gateway/Cartebancaire.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento CardGatePlus payment extension
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
*
|
12 |
+
* @category Mage
|
13 |
+
* @package Cardgate_Cgp
|
14 |
+
* @author Paul Saparov, <support@cardgate.com>
|
15 |
+
* @copyright Copyright (c) 2011 CardGatePlus B.V. (http://www.cardgateplus.com)
|
16 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
17 |
+
*/
|
18 |
+
|
19 |
+
class Cardgate_Cgp_Model_Gateway_Cartebancaire extends Cardgate_Cgp_Model_Gateway_Abstract
|
20 |
+
{
|
21 |
+
protected $_code = 'cgp_cartebancaire';
|
22 |
+
protected $_model = 'cartebancaire';
|
23 |
+
protected $_canUseInternal = true;
|
24 |
+
}
|
app/code/local/Cardgate/Cgp/Model/Gateway/Cartebleue.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento CardGatePlus payment extension
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
*
|
12 |
+
* @category Mage
|
13 |
+
* @package Cardgate_Cgp
|
14 |
+
* @author Paul Saparov, <support@cardgate.com>
|
15 |
+
* @copyright Copyright (c) 2011 CardGatePlus B.V. (http://www.cardgateplus.com)
|
16 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
17 |
+
*/
|
18 |
+
|
19 |
+
class Cardgate_Cgp_Model_Gateway_Cartebleue extends Cardgate_Cgp_Model_Gateway_Abstract
|
20 |
+
{
|
21 |
+
protected $_code = 'cgp_cartebleue';
|
22 |
+
protected $_model = 'cartebleue';
|
23 |
+
protected $_canUseInternal = true;
|
24 |
+
}
|
app/code/local/Cardgate/Cgp/etc/config.xml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Cardgate_Cgp>
|
23 |
-
<version>1.0.
|
24 |
</Cardgate_Cgp>
|
25 |
</modules>
|
26 |
|
@@ -154,6 +154,16 @@
|
|
154 |
<model>cgp/gateway_maestro</model>
|
155 |
<title>CGP Maestro</title>
|
156 |
</cgp_maestro>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
<cgp_vpay>
|
158 |
<active>1</active>
|
159 |
<model>cgp/gateway_vpay</model>
|
@@ -254,6 +264,16 @@
|
|
254 |
<model>cgp/gateway_maestro</model>
|
255 |
<title>Maestro</title>
|
256 |
</cgp_maestro>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
<cgp_vpay translate="title" module="cgp">
|
258 |
<active>0</active>
|
259 |
<model>cgp/gateway_vpay</model>
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Cardgate_Cgp>
|
23 |
+
<version>1.0.38</version>
|
24 |
</Cardgate_Cgp>
|
25 |
</modules>
|
26 |
|
154 |
<model>cgp/gateway_maestro</model>
|
155 |
<title>CGP Maestro</title>
|
156 |
</cgp_maestro>
|
157 |
+
<cgp_cartebleue>
|
158 |
+
<active>1</active>
|
159 |
+
<model>cgp/gateway_cartebleue</model>
|
160 |
+
<title>CGP CarteBleue</title>
|
161 |
+
</cgp_cartebleue>
|
162 |
+
<cgp_cartebancaire>
|
163 |
+
<active>1</active>
|
164 |
+
<model>cgp/gateway_cartebancaire</model>
|
165 |
+
<title>CGP CarteBancaire</title>
|
166 |
+
</cgp_cartebancaire>
|
167 |
<cgp_vpay>
|
168 |
<active>1</active>
|
169 |
<model>cgp/gateway_vpay</model>
|
264 |
<model>cgp/gateway_maestro</model>
|
265 |
<title>Maestro</title>
|
266 |
</cgp_maestro>
|
267 |
+
<cgp_cartebleue translate="title" module="cgp">
|
268 |
+
<active>0</active>
|
269 |
+
<model>cgp/gateway_cartebleue</model>
|
270 |
+
<title>Carte Bleue</title>
|
271 |
+
</cgp_cartebleue>
|
272 |
+
<cgp_cartebancaire translate="title" module="cgp">
|
273 |
+
<active>0</active>
|
274 |
+
<model>cgp/gateway_cartebancaire</model>
|
275 |
+
<title>Carte Bancaire</title>
|
276 |
+
</cgp_cartebancaire>
|
277 |
<cgp_vpay translate="title" module="cgp">
|
278 |
<active>0</active>
|
279 |
<model>cgp/gateway_vpay</model>
|
app/code/local/Cardgate/Cgp/etc/system.xml
CHANGED
@@ -431,9 +431,115 @@
|
|
431 |
</fields>
|
432 |
</cgp_maestro>
|
433 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
<cgp_vpay translate="label" module="cgp">
|
435 |
<label>V-Pay</label>
|
436 |
-
<sort_order>
|
437 |
<show_in_default>1</show_in_default>
|
438 |
<show_in_website>1</show_in_website>
|
439 |
<show_in_store>1</show_in_store>
|
@@ -486,7 +592,7 @@
|
|
486 |
|
487 |
<cgp_sofortbanking translate="label" module="cgp">
|
488 |
<label>SofortBanking</label>
|
489 |
-
<sort_order>
|
490 |
<show_in_default>1</show_in_default>
|
491 |
<show_in_website>1</show_in_website>
|
492 |
<show_in_store>1</show_in_store>
|
@@ -539,7 +645,7 @@
|
|
539 |
|
540 |
<cgp_ideal translate="label" module="cgp">
|
541 |
<label>iDEAL</label>
|
542 |
-
<sort_order>
|
543 |
<show_in_default>1</show_in_default>
|
544 |
<show_in_website>1</show_in_website>
|
545 |
<show_in_store>1</show_in_store>
|
@@ -592,7 +698,7 @@
|
|
592 |
|
593 |
<cgp_mistercash translate="label" module="cgp">
|
594 |
<label>MisterCash</label>
|
595 |
-
<sort_order>
|
596 |
<show_in_default>1</show_in_default>
|
597 |
<show_in_website>1</show_in_website>
|
598 |
<show_in_store>1</show_in_store>
|
@@ -645,7 +751,7 @@
|
|
645 |
|
646 |
<cgp_paypal translate="label" module="cgp">
|
647 |
<label>PayPal</label>
|
648 |
-
<sort_order>
|
649 |
<show_in_default>1</show_in_default>
|
650 |
<show_in_website>1</show_in_website>
|
651 |
<show_in_store>1</show_in_store>
|
@@ -698,7 +804,7 @@
|
|
698 |
|
699 |
<cgp_webmoney translate="label" module="cgp">
|
700 |
<label>Webmoney</label>
|
701 |
-
<sort_order>
|
702 |
<show_in_default>1</show_in_default>
|
703 |
<show_in_website>1</show_in_website>
|
704 |
<show_in_store>1</show_in_store>
|
@@ -751,7 +857,7 @@
|
|
751 |
|
752 |
<cgp_klarna translate="label" module="cgp">
|
753 |
<label>Klarna Invoice</label>
|
754 |
-
<sort_order>
|
755 |
<show_in_default>1</show_in_default>
|
756 |
<show_in_website>1</show_in_website>
|
757 |
<show_in_store>1</show_in_store>
|
@@ -822,7 +928,7 @@
|
|
822 |
|
823 |
<cgp_klarnaaccount translate="label" module="cgp">
|
824 |
<label>KlarnaAccount</label>
|
825 |
-
<sort_order>
|
826 |
<show_in_default>1</show_in_default>
|
827 |
<show_in_website>1</show_in_website>
|
828 |
<show_in_store>1</show_in_store>
|
@@ -883,7 +989,7 @@
|
|
883 |
|
884 |
<cgp_giropay translate="label" module="cgp">
|
885 |
<label>Giropay</label>
|
886 |
-
<sort_order>
|
887 |
<show_in_default>1</show_in_default>
|
888 |
<show_in_website>1</show_in_website>
|
889 |
<show_in_store>1</show_in_store>
|
@@ -935,7 +1041,7 @@
|
|
935 |
</cgp_giropay>
|
936 |
<cgp_banktransfer translate="label" module="cgp">
|
937 |
<label>Bank Transfer</label>
|
938 |
-
<sort_order>
|
939 |
<show_in_default>1</show_in_default>
|
940 |
<show_in_website>1</show_in_website>
|
941 |
<show_in_store>1</show_in_store>
|
@@ -996,7 +1102,7 @@
|
|
996 |
|
997 |
<cgp_directdebit translate="label" module="cgp">
|
998 |
<label>Direct Debit</label>
|
999 |
-
<sort_order>
|
1000 |
<show_in_default>1</show_in_default>
|
1001 |
<show_in_website>1</show_in_website>
|
1002 |
<show_in_store>1</show_in_store>
|
@@ -1048,7 +1154,7 @@
|
|
1048 |
</cgp_directdebit>
|
1049 |
<cgp_przelewy24 translate="label" module="cgp">
|
1050 |
<label>Przelewy24</label>
|
1051 |
-
<sort_order>
|
1052 |
<show_in_default>1</show_in_default>
|
1053 |
<show_in_website>1</show_in_website>
|
1054 |
<show_in_store>1</show_in_store>
|
431 |
</fields>
|
432 |
</cgp_maestro>
|
433 |
|
434 |
+
<cgp_cartebleue translate="label" module="cgp">
|
435 |
+
<label>CarteBleue</label>
|
436 |
+
<sort_order>240</sort_order>
|
437 |
+
<show_in_default>1</show_in_default>
|
438 |
+
<show_in_website>1</show_in_website>
|
439 |
+
<show_in_store>1</show_in_store>
|
440 |
+
<fields>
|
441 |
+
<active translate="label">
|
442 |
+
<label>Enabled</label>
|
443 |
+
<frontend_type>select</frontend_type>
|
444 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
445 |
+
<sort_order>1</sort_order>
|
446 |
+
<show_in_default>1</show_in_default>
|
447 |
+
<show_in_website>1</show_in_website>
|
448 |
+
<show_in_store>1</show_in_store>
|
449 |
+
</active>
|
450 |
+
<title translate="label">
|
451 |
+
<label>Title</label>
|
452 |
+
<frontend_type>text</frontend_type>
|
453 |
+
<sort_order>10</sort_order>
|
454 |
+
<show_in_default>1</show_in_default>
|
455 |
+
<show_in_website>1</show_in_website>
|
456 |
+
<show_in_store>1</show_in_store>
|
457 |
+
</title>
|
458 |
+
<allowspecific translate="label">
|
459 |
+
<label>Payment from applicable countries</label>
|
460 |
+
<frontend_type>allowspecific</frontend_type>
|
461 |
+
<sort_order>20</sort_order>
|
462 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
463 |
+
<show_in_default>1</show_in_default>
|
464 |
+
<show_in_website>1</show_in_website>
|
465 |
+
<show_in_store>1</show_in_store>
|
466 |
+
</allowspecific>
|
467 |
+
<specificcountry translate="label">
|
468 |
+
<label>Payment from Specific countries</label>
|
469 |
+
<frontend_type>multiselect</frontend_type>
|
470 |
+
<sort_order>30</sort_order>
|
471 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
472 |
+
<show_in_default>1</show_in_default>
|
473 |
+
<show_in_website>1</show_in_website>
|
474 |
+
<show_in_store>1</show_in_store>
|
475 |
+
</specificcountry>
|
476 |
+
<sort_order translate="label">
|
477 |
+
<label>Sort order</label>
|
478 |
+
<frontend_type>text</frontend_type>
|
479 |
+
<sort_order>100</sort_order>
|
480 |
+
<show_in_default>1</show_in_default>
|
481 |
+
<show_in_website>1</show_in_website>
|
482 |
+
<show_in_store>1</show_in_store>
|
483 |
+
</sort_order>
|
484 |
+
</fields>
|
485 |
+
</cgp_cartebleue>
|
486 |
+
|
487 |
+
<cgp_cartebancaire translate="label" module="cgp">
|
488 |
+
<label>CarteBancaire</label>
|
489 |
+
<sort_order>250</sort_order>
|
490 |
+
<show_in_default>1</show_in_default>
|
491 |
+
<show_in_website>1</show_in_website>
|
492 |
+
<show_in_store>1</show_in_store>
|
493 |
+
<fields>
|
494 |
+
<active translate="label">
|
495 |
+
<label>Enabled</label>
|
496 |
+
<frontend_type>select</frontend_type>
|
497 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
498 |
+
<sort_order>1</sort_order>
|
499 |
+
<show_in_default>1</show_in_default>
|
500 |
+
<show_in_website>1</show_in_website>
|
501 |
+
<show_in_store>1</show_in_store>
|
502 |
+
</active>
|
503 |
+
<title translate="label">
|
504 |
+
<label>Title</label>
|
505 |
+
<frontend_type>text</frontend_type>
|
506 |
+
<sort_order>10</sort_order>
|
507 |
+
<show_in_default>1</show_in_default>
|
508 |
+
<show_in_website>1</show_in_website>
|
509 |
+
<show_in_store>1</show_in_store>
|
510 |
+
</title>
|
511 |
+
<allowspecific translate="label">
|
512 |
+
<label>Payment from applicable countries</label>
|
513 |
+
<frontend_type>allowspecific</frontend_type>
|
514 |
+
<sort_order>20</sort_order>
|
515 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
516 |
+
<show_in_default>1</show_in_default>
|
517 |
+
<show_in_website>1</show_in_website>
|
518 |
+
<show_in_store>1</show_in_store>
|
519 |
+
</allowspecific>
|
520 |
+
<specificcountry translate="label">
|
521 |
+
<label>Payment from Specific countries</label>
|
522 |
+
<frontend_type>multiselect</frontend_type>
|
523 |
+
<sort_order>30</sort_order>
|
524 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
525 |
+
<show_in_default>1</show_in_default>
|
526 |
+
<show_in_website>1</show_in_website>
|
527 |
+
<show_in_store>1</show_in_store>
|
528 |
+
</specificcountry>
|
529 |
+
<sort_order translate="label">
|
530 |
+
<label>Sort order</label>
|
531 |
+
<frontend_type>text</frontend_type>
|
532 |
+
<sort_order>100</sort_order>
|
533 |
+
<show_in_default>1</show_in_default>
|
534 |
+
<show_in_website>1</show_in_website>
|
535 |
+
<show_in_store>1</show_in_store>
|
536 |
+
</sort_order>
|
537 |
+
</fields>
|
538 |
+
</cgp_cartebancaire>
|
539 |
+
|
540 |
<cgp_vpay translate="label" module="cgp">
|
541 |
<label>V-Pay</label>
|
542 |
+
<sort_order>260</sort_order>
|
543 |
<show_in_default>1</show_in_default>
|
544 |
<show_in_website>1</show_in_website>
|
545 |
<show_in_store>1</show_in_store>
|
592 |
|
593 |
<cgp_sofortbanking translate="label" module="cgp">
|
594 |
<label>SofortBanking</label>
|
595 |
+
<sort_order>270</sort_order>
|
596 |
<show_in_default>1</show_in_default>
|
597 |
<show_in_website>1</show_in_website>
|
598 |
<show_in_store>1</show_in_store>
|
645 |
|
646 |
<cgp_ideal translate="label" module="cgp">
|
647 |
<label>iDEAL</label>
|
648 |
+
<sort_order>280</sort_order>
|
649 |
<show_in_default>1</show_in_default>
|
650 |
<show_in_website>1</show_in_website>
|
651 |
<show_in_store>1</show_in_store>
|
698 |
|
699 |
<cgp_mistercash translate="label" module="cgp">
|
700 |
<label>MisterCash</label>
|
701 |
+
<sort_order>290</sort_order>
|
702 |
<show_in_default>1</show_in_default>
|
703 |
<show_in_website>1</show_in_website>
|
704 |
<show_in_store>1</show_in_store>
|
751 |
|
752 |
<cgp_paypal translate="label" module="cgp">
|
753 |
<label>PayPal</label>
|
754 |
+
<sort_order>300</sort_order>
|
755 |
<show_in_default>1</show_in_default>
|
756 |
<show_in_website>1</show_in_website>
|
757 |
<show_in_store>1</show_in_store>
|
804 |
|
805 |
<cgp_webmoney translate="label" module="cgp">
|
806 |
<label>Webmoney</label>
|
807 |
+
<sort_order>310</sort_order>
|
808 |
<show_in_default>1</show_in_default>
|
809 |
<show_in_website>1</show_in_website>
|
810 |
<show_in_store>1</show_in_store>
|
857 |
|
858 |
<cgp_klarna translate="label" module="cgp">
|
859 |
<label>Klarna Invoice</label>
|
860 |
+
<sort_order>320</sort_order>
|
861 |
<show_in_default>1</show_in_default>
|
862 |
<show_in_website>1</show_in_website>
|
863 |
<show_in_store>1</show_in_store>
|
928 |
|
929 |
<cgp_klarnaaccount translate="label" module="cgp">
|
930 |
<label>KlarnaAccount</label>
|
931 |
+
<sort_order>330</sort_order>
|
932 |
<show_in_default>1</show_in_default>
|
933 |
<show_in_website>1</show_in_website>
|
934 |
<show_in_store>1</show_in_store>
|
989 |
|
990 |
<cgp_giropay translate="label" module="cgp">
|
991 |
<label>Giropay</label>
|
992 |
+
<sort_order>340</sort_order>
|
993 |
<show_in_default>1</show_in_default>
|
994 |
<show_in_website>1</show_in_website>
|
995 |
<show_in_store>1</show_in_store>
|
1041 |
</cgp_giropay>
|
1042 |
<cgp_banktransfer translate="label" module="cgp">
|
1043 |
<label>Bank Transfer</label>
|
1044 |
+
<sort_order>350</sort_order>
|
1045 |
<show_in_default>1</show_in_default>
|
1046 |
<show_in_website>1</show_in_website>
|
1047 |
<show_in_store>1</show_in_store>
|
1102 |
|
1103 |
<cgp_directdebit translate="label" module="cgp">
|
1104 |
<label>Direct Debit</label>
|
1105 |
+
<sort_order>360</sort_order>
|
1106 |
<show_in_default>1</show_in_default>
|
1107 |
<show_in_website>1</show_in_website>
|
1108 |
<show_in_store>1</show_in_store>
|
1154 |
</cgp_directdebit>
|
1155 |
<cgp_przelewy24 translate="label" module="cgp">
|
1156 |
<label>Przelewy24</label>
|
1157 |
+
<sort_order>370</sort_order>
|
1158 |
<show_in_default>1</show_in_default>
|
1159 |
<show_in_website>1</show_in_website>
|
1160 |
<show_in_store>1</show_in_store>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Cardgate_Cgp</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Card Gate Plus Payment Module</summary>
|
10 |
<description>Card Gate Plus is a Payment Service Provider from the Netherlands. We offer various payment methods against competitive rates.</description>
|
11 |
-
<notes>-
|
12 |
<authors><author><name>Richard Schoots</name><user>auto-converted</user><email>support@cardgate.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>11:
|
15 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="cardgate"><file name="cardgate_cgp.png" hash="b97b15baba0b27042733c8ea4b4fb6bc"/></dir></dir><file name="cardgate_cgp.css" hash="bebfc13fca1b36867c17864ae70fdabd"/></dir></dir></dir></target><target name="magelocale"><dir name="nl_NL"><file name="Cardgate_Cgp.csv" hash="634f39395ba9302afc2eab9da25be4a2"/></dir></target><target name="mageetc"><dir name="modules"><file name="Cardgate_Cgp.xml" hash="c7a72af045f4b737b50cc6c360d4300d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="cardgate"><dir name="cgp"><dir name="form"><file name="banktransfer.phtml" hash="ff7a2a827a7b7a5ed9bcb5d484c30c68"/><file name="ideal.phtml" hash="42fdfee86ba3a098f5f73e9240332581"/><file name="klarna.phtml" hash="590c98ab018c474e8e4dc65e9199ba85"/><file name="klarnaaccount.phtml" hash="419f88941703c8562369844bb6a1d692"/></dir><file name="redirect.phtml" hash="ecb2b0a854cd6358adeba535f8889046"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Cardgate"><dir name="Cgp"><dir name="Block"><dir name="Form"><file name="Banktransfer.php" hash="3fbc8e9778a79aa8802a1a2bd77681f9"/><file name="Ideal.php" hash="c0e11d3161bd93ca869a31d9b54e1b4b"/><file name="Klarna.php" hash="9bdbe1886bcdb283b86b6d208c3aa712"/><file name="Klarnaaccount.php" hash="0b4b84d9c472e815a30d5977ac53c932"/></dir><file name="Redirect.php" hash="668b52ec0c5fba7f42223d4e40a99987"/></dir><dir name="Helper"><file name="Data.php" hash="c94c725de2e14dc8019323c1ecf08962"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Languages.php" hash="4fe09e45e3d9f3866d4b7c8437832972"/><file name="Modes.php" hash="888158f9118ba5087357d5c1ad8514d4"/></dir></dir></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Cardgate_Cgp</name>
|
4 |
+
<version>1.0.38</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Card Gate Plus Payment Module</summary>
|
10 |
<description>Card Gate Plus is a Payment Service Provider from the Netherlands. We offer various payment methods against competitive rates.</description>
|
11 |
+
<notes>- New payment methods: Carte Bleue and Carte Bancaire.</notes>
|
12 |
<authors><author><name>Richard Schoots</name><user>auto-converted</user><email>support@cardgate.com</email></author></authors>
|
13 |
+
<date>2015-08-06</date>
|
14 |
+
<time>11:01:14</time>
|
15 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="cardgate"><file name="cardgate_cgp.png" hash="b97b15baba0b27042733c8ea4b4fb6bc"/></dir></dir><file name="cardgate_cgp.css" hash="bebfc13fca1b36867c17864ae70fdabd"/></dir></dir></dir></target><target name="magelocale"><dir name="nl_NL"><file name="Cardgate_Cgp.csv" hash="634f39395ba9302afc2eab9da25be4a2"/></dir></target><target name="mageetc"><dir name="modules"><file name="Cardgate_Cgp.xml" hash="c7a72af045f4b737b50cc6c360d4300d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="cardgate"><dir name="cgp"><dir name="form"><file name="banktransfer.phtml" hash="ff7a2a827a7b7a5ed9bcb5d484c30c68"/><file name="ideal.phtml" hash="42fdfee86ba3a098f5f73e9240332581"/><file name="klarna.phtml" hash="590c98ab018c474e8e4dc65e9199ba85"/><file name="klarnaaccount.phtml" hash="419f88941703c8562369844bb6a1d692"/></dir><file name="redirect.phtml" hash="ecb2b0a854cd6358adeba535f8889046"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Cardgate"><dir name="Cgp"><dir name="Block"><dir name="Form"><file name="Banktransfer.php" hash="3fbc8e9778a79aa8802a1a2bd77681f9"/><file name="Ideal.php" hash="c0e11d3161bd93ca869a31d9b54e1b4b"/><file name="Klarna.php" hash="9bdbe1886bcdb283b86b6d208c3aa712"/><file name="Klarnaaccount.php" hash="0b4b84d9c472e815a30d5977ac53c932"/></dir><file name="Redirect.php" hash="668b52ec0c5fba7f42223d4e40a99987"/></dir><dir name="Helper"><file name="Data.php" hash="c94c725de2e14dc8019323c1ecf08962"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Languages.php" hash="4fe09e45e3d9f3866d4b7c8437832972"/><file name="Modes.php" hash="888158f9118ba5087357d5c1ad8514d4"/></dir></dir></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="055acda433b7703c3fb7c0b1b85c80ab"/><file name="Americanexpress.php" hash="e92216206b3b623aab4bd7b6e19741db"/><file name="Banktransfer.php" hash="babaf0ea30aad8aa9540c0879a9e67ca"/><file name="Cartebancaire.php" hash="30f2e9023e8aff6932a39d0545b759ea"/><file name="Cartebleue.php" hash="3fa9e36a6d871c5d2bc8c783404c8fad"/><file name="Default.php" hash="956d1ff0c2cfe0698efc23277e602cec"/><file name="Directdebit.php" hash="aab6b38b231d5add0e3b0fdcb3d73e3c"/><file name="Giropay.php" hash="e4c2497eaf88ddda0ba5d745945ea3bd"/><file name="Ideal.php" hash="430de461f07352905984bfa15adf9eec"/><file name="Klarna.php" hash="330efb073aba572606b1f25b597bb106"/><file name="Klarnaaccount.php" hash="2012566e77136f823e965c8811321ea3"/><file name="Maestro.php" hash="5675bd4e11b38499b209d91ca5367a07"/><file name="Mastercard.php" hash="11a3aca8cc5f3e04e08244e600c67e3d"/><file name="Mistercash.php" hash="ca9bfde52ea045fe73c6287bbb12837c"/><file name="Paypal.php" hash="cc679581956c2ae857404bc84e798fcc"/><file name="Przelewy24.php" hash="577fa43cee76b9546fc8c500a73e341a"/><file name="Sofortbanking.php" hash="7e3a03aec546156f4a3d47cb6232be2f"/><file name="Visa.php" hash="610a7893d1c03515dc1046b789005817"/><file name="Vpay.php" hash="aaf3f019a7a21c5b91a64bf95da81ed8"/><file name="Webmoney.php" hash="fb504c06b78108ac50bf3933fd44ab0e"/></dir><file name="Base.php" hash="8fb25eee8835a524245273e05e07b39d"/><file name="Observer.php" hash="81f7a3c5149f52dcb2d4c7434d250003"/></dir><dir name="controllers"><file name="StandardController.php" hash="51f3acae0faeb38cb719e3f99779e6eb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1caa98cae31103bb77143f821f68f451"/><file name="config.xml" hash="ff5a880b69ed2f658d2baeb72d134f01"/><file name="system.xml" hash="c29e9f4cd16f77cf08c1b1e7443a9ba4"/></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|