Cardgate_Cgp - Version 1.2.2

Version Notes

- Added ACL for 'send payment link email'

Download this release

Release Info

Developer Cardgate BV
Extension Cardgate_Cgp
Version 1.2.2
Comparing to
See all releases


Code changes from version 1.2.1 to 1.2.2

app/code/local/Cardgate/Cgp/Block/Adminhtml/Paymentlink/Resend.php CHANGED
@@ -29,17 +29,21 @@ class Cardgate_Cgp_Block_Adminhtml_Paymentlink_Resend extends Mage_Core_Block_Te
29
  }
30
  $cardgateMethod = ( substr($payment->getMethod(), 0, 3) == 'cgp' );
31
  $this->addText( Mage::helper('cgp')->__('Send payment link for order #%s to email \'%s\'', $order->getId(), $order->getCustomerEmail() ));
32
- if ( $cardgateMethod ) {
 
33
  $this->addText( '<br/><br/>' );
34
  $fixedText = Mage::helper('cgp')->__("Send direct payment link using method '%s'", $title);
35
  $fixedUrl = Mage::helper('adminhtml')->getUrl('*/cardgate/resendpayment', array('orderid' => $order->getId()) );
36
  $this->addText( '<button class="scalable" type="button" title="'.$fixedText.'" onclick="setLocation(\''.$fixedUrl.'\');">'.$fixedText.'</button>');
37
  }
38
- $flexText = Mage::helper('cgp')->__('Send direct payment link allowing all available paymentmethods');
39
- $flexUrl = Mage::helper('adminhtml')->getUrl('*/cardgate/resendcheckout', array('orderid' => $order->getId()) );
40
- $this->addText( '<br/><br/><button class="scalable" type="button" title="'.$flexText.'" onclick="setLocation(\''.$flexUrl.'\');">'.$flexText.'</button>' );
41
 
42
- $this->addText( '<br/><br/>' . Mage::helper('cgp')->__('Please notice the order is already finalized and additional transactioncosts don\'t change when other paymentmethods are applied.') );
 
 
 
 
 
 
43
  }
44
 
45
  }
29
  }
30
  $cardgateMethod = ( substr($payment->getMethod(), 0, 3) == 'cgp' );
31
  $this->addText( Mage::helper('cgp')->__('Send payment link for order #%s to email \'%s\'', $order->getId(), $order->getCustomerEmail() ));
32
+
33
+ if ( $cardgateMethod && Mage::getSingleton('admin/session')->isAllowed('cardgate/resendpayment') ) {
34
  $this->addText( '<br/><br/>' );
35
  $fixedText = Mage::helper('cgp')->__("Send direct payment link using method '%s'", $title);
36
  $fixedUrl = Mage::helper('adminhtml')->getUrl('*/cardgate/resendpayment', array('orderid' => $order->getId()) );
37
  $this->addText( '<button class="scalable" type="button" title="'.$fixedText.'" onclick="setLocation(\''.$fixedUrl.'\');">'.$fixedText.'</button>');
38
  }
 
 
 
39
 
40
+ if ( Mage::getSingleton('admin/session')->isAllowed('cardgate/resendcheckout') ) {
41
+ $flexText = Mage::helper('cgp')->__('Send direct payment link allowing all available paymentmethods');
42
+ $flexUrl = Mage::helper('adminhtml')->getUrl('*/cardgate/resendcheckout', array('orderid' => $order->getId()) );
43
+ $this->addText( '<br/><br/><button class="scalable" type="button" title="'.$flexText.'" onclick="setLocation(\''.$flexUrl.'\');">'.$flexText.'</button>' );
44
+ $this->addText( '<br/><br/>' . Mage::helper('cgp')->__('Please notice the order is already finalized and additional transactioncosts don\'t change when other paymentmethods are applied.') );
45
+ }
46
+
47
  }
48
 
49
  }
app/code/local/Cardgate/Cgp/Block/Info/Payment.php CHANGED
@@ -22,21 +22,27 @@ class Cardgate_Cgp_Block_Info_Payment extends Mage_Payment_Block_Info
22
  protected function _toHtml() {
23
  if ( false === $this->getIsSecureMode() ) {
24
  $extraLinks = '';
25
- if ( !empty( $this->getOrder() ) ) {
26
- $order = $this->getOrder();
27
 
28
  /**
29
  * @var Cardgate_Cgp_Model_Base $base
30
  */
31
  $base = Mage::getSingleton( 'cgp/base' );
32
 
33
- if ( $base->isRESTCapable() && intval( $order->getTotalPaid() ) == 0 ) {
 
 
 
 
 
34
  $text = Mage::helper('cgp')->__('Send payment link');
35
  $url = Mage::helper('adminhtml')->getUrl('*/cardgate/resend', array('orderid' => $order->getId()) );
36
  $extraLinks.= '<button class="scalable" type="button" title="'.$text.'" onclick="setLocation(\''.$url.'\');">'.$text.'</button>';
37
  } elseif ( intval( $order->getTotalPaid() ) > 0 ) {
38
- if ( ! empty( $order->getPayment() ) ) {
39
- $info = $order->getPayment()->getAdditionalInformation();
 
40
  if ( !empty( $info['cardgate_transaction_id'])) {
41
  $transactionid = $info['cardgate_transaction_id'];
42
  $testmode = $info['cardgate_testmode'];
22
  protected function _toHtml() {
23
  if ( false === $this->getIsSecureMode() ) {
24
  $extraLinks = '';
25
+ $order = $this->getOrder();
26
+ if ( $order ) {
27
 
28
  /**
29
  * @var Cardgate_Cgp_Model_Base $base
30
  */
31
  $base = Mage::getSingleton( 'cgp/base' );
32
 
33
+ if (
34
+ $base->isRESTCapable() &&
35
+ intval( $order->getTotalPaid() ) == 0 &&
36
+ ( Mage::getSingleton('admin/session')->isAllowed('cardgate/resendpayment') || Mage::getSingleton('admin/session')->isAllowed('cardgate/resendcheckout') )
37
+ )
38
+ {
39
  $text = Mage::helper('cgp')->__('Send payment link');
40
  $url = Mage::helper('adminhtml')->getUrl('*/cardgate/resend', array('orderid' => $order->getId()) );
41
  $extraLinks.= '<button class="scalable" type="button" title="'.$text.'" onclick="setLocation(\''.$url.'\');">'.$text.'</button>';
42
  } elseif ( intval( $order->getTotalPaid() ) > 0 ) {
43
+ $payment = $order->getPayment();
44
+ if ( $payment ) {
45
+ $info = $payment->getAdditionalInformation();
46
  if ( !empty( $info['cardgate_transaction_id'])) {
47
  $transactionid = $info['cardgate_transaction_id'];
48
  $testmode = $info['cardgate_testmode'];
app/code/local/Cardgate/Cgp/controllers/Adminhtml/CardgateController.php CHANGED
@@ -8,6 +8,12 @@
8
  */
9
  class Cardgate_Cgp_Adminhtml_CardgateController extends Mage_Adminhtml_Controller_Action {
10
 
 
 
 
 
 
 
11
  public function indexAction () {
12
  $this->loadLayout();
13
 
@@ -30,6 +36,12 @@ class Cardgate_Cgp_Adminhtml_CardgateController extends Mage_Adminhtml_Controlle
30
  }
31
 
32
  public function resendPaymentAction () {
 
 
 
 
 
 
33
  $this->loadLayout();
34
  $this->_title( $this->__( 'CardGate' ) )
35
  ->_title( $this->__( 'Send payment link' ) );
@@ -74,6 +86,12 @@ class Cardgate_Cgp_Adminhtml_CardgateController extends Mage_Adminhtml_Controlle
74
  }
75
 
76
  public function resendCheckoutAction () {
 
 
 
 
 
 
77
  $this->loadLayout();
78
  $this->_title( $this->__( 'CardGate' ) )
79
  ->_title( $this->__( 'Send payment link' ) );
8
  */
9
  class Cardgate_Cgp_Adminhtml_CardgateController extends Mage_Adminhtml_Controller_Action {
10
 
11
+ protected function _isAllowed() {
12
+ return Mage::getSingleton('admin/session')->isAllowed('cardgate/resendpayment') ||
13
+ Mage::getSingleton('admin/session')->isAllowed('cardgate/resendcheckout');
14
+ }
15
+
16
+
17
  public function indexAction () {
18
  $this->loadLayout();
19
 
36
  }
37
 
38
  public function resendPaymentAction () {
39
+
40
+ if ( !Mage::getSingleton('admin/session')->isAllowed('cardgate/resendpayment') ) {
41
+ $this->_forward('denied');
42
+ return $this;
43
+ }
44
+
45
  $this->loadLayout();
46
  $this->_title( $this->__( 'CardGate' ) )
47
  ->_title( $this->__( 'Send payment link' ) );
86
  }
87
 
88
  public function resendCheckoutAction () {
89
+
90
+ if ( !Mage::getSingleton('admin/session')->isAllowed('cardgate/resendcheckout') ) {
91
+ $this->_forward('denied');
92
+ return $this;
93
+ }
94
+
95
  $this->loadLayout();
96
  $this->_title( $this->__( 'CardGate' ) )
97
  ->_title( $this->__( 'Send payment link' ) );
app/code/local/Cardgate/Cgp/etc/adminhtml.xml CHANGED
@@ -10,6 +10,9 @@
10
  <config>
11
  <acl>
12
  <resources>
 
 
 
13
  <admin>
14
  <children>
15
  <system>
@@ -23,6 +26,22 @@
23
  </config>
24
  </children>
25
  </system>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  </children>
27
  </admin>
28
  </resources>
10
  <config>
11
  <acl>
12
  <resources>
13
+ <all>
14
+ <title>Allow Everything</title>
15
+ </all>
16
  <admin>
17
  <children>
18
  <system>
26
  </config>
27
  </children>
28
  </system>
29
+ <cardgate translate="title" module="cgp">
30
+ <title>CardGate</title>
31
+ <sort_order>71</sort_order>
32
+ <children>
33
+ <resendpayment translate="title" module="cgp">
34
+ <title>Resend Paymentlink (same method)</title>
35
+ <sort_order>10</sort_order>
36
+ <action>adminhtml/cardgate/resendpayment</action>
37
+ </resendpayment>
38
+ <resendcheckout translate="title" module="cgp">
39
+ <title>Resend Paymentlink (all methods)</title>
40
+ <sort_order>20</sort_order>
41
+ <action>adminhtml/cardgate/resendcheckout</action>
42
+ </resendcheckout>
43
+ </children>
44
+ </cardgate>
45
  </children>
46
  </admin>
47
  </resources>
app/code/local/Cardgate/Cgp/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Cardgate_Cgp>
13
- <version>1.2.1</version>
14
  </Cardgate_Cgp>
15
  </modules>
16
 
@@ -248,25 +248,17 @@
248
  </updates>
249
  </layout>
250
 
251
- <acl>
252
- <resources>
253
- <admin>
254
- <children>
255
- <system>
256
- <children>
257
- <config>
258
- <children>
259
- <cgp>
260
- <title>CardGate+ Settings</title>
261
- </cgp>
262
- </children>
263
- </config>
264
- </children>
265
- </system>
266
- </children>
267
- </admin>
268
- </resources>
269
- </acl>
270
  </adminhtml>
271
 
272
  <admin>
10
  <config>
11
  <modules>
12
  <Cardgate_Cgp>
13
+ <version>1.2.2</version>
14
  </Cardgate_Cgp>
15
  </modules>
16
 
248
  </updates>
249
  </layout>
250
 
251
+ <menu>
252
+ <cardgate>
253
+ <children>
254
+ <resend>
255
+ <title>Resend POEKOE</title>
256
+ <sort_order>10</sort_order>
257
+ </resend>
258
+ </children>
259
+ </cardgate>
260
+ </menu>
261
+
 
 
 
 
 
 
 
 
262
  </adminhtml>
263
 
264
  <admin>
package.xml CHANGED
@@ -1,22 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cardgate_Cgp</name>
4
- <version>1.2.1</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 Payment Module</summary>
10
  <description>Card Gate is a Payment Service Provider from the Netherlands. We offer various payment methods against competitive rates.</description>
11
- <notes>- Added 'send payment link email'&#xD;
12
- - Added support for orders created by admins&#xD;
13
- - Added iDEAL QR&#xD;
14
- - Added paysafecard&#xD;
15
- - Fixed correct processing of some declined creditcard transactions</notes>
16
  <authors><author><name>Cardgate BV</name><user>cardgateplus</user><email>support@cardgate.com</email></author></authors>
17
- <date>2017-04-14</date>
18
- <time>14:36:57</time>
19
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="cardgate_cgp.css" hash="bebfc13fca1b36867c17864ae70fdabd"/><dir name="images"><dir name="cardgate"><file name="cardgate_cgp.png" hash="b97b15baba0b27042733c8ea4b4fb6bc"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="nl_NL"><file name="Cardgate_Cgp.csv" hash="7383d541e93ab7506415aa87486557a2"/><dir name="template"><dir name="email"><dir name="cgp"><file name="paymentlink.html" hash="ab33a1408009855d6f280dae491ce391"/><file name="paymentlink_guest.html" hash="0ba0a7dfeedc084e4bfc01ceaedb9c2b"/></dir></dir></dir></dir><dir name="en_US"><dir name="template"><dir name="email"><dir name="cgp"><file name="paymentlink.html" hash="d1fbedec6b157543b0ea977804488c6b"/><file name="paymentlink_guest.html" hash="d1fbedec6b157543b0ea977804488c6b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZzCardgate_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="checkout"><file name="fee.phtml" hash="79362bab3963195ad6727d077fe87b11"/></dir><dir name="email"><dir name="sales"><file name="order_new.html" hash="983abaac854ee17fa7bc76860ec3cff9"/><file name="order_new_guest.html" hash="0f12070e3350a89f67ae8d9c8350095a"/></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="ff7a2a827a7b7a5ed9bcb5d484c30c68"/><file name="ideal.phtml" hash="42fdfee86ba3a098f5f73e9240332581"/><file name="klarna.phtml" hash="e2876171abf8e94d7b77a47ce9279561"/><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="Adminhtml"><dir name="Paymentlink"><file name="Resend.php" hash="fe009149884754f27fa9a7989cb6dbf6"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Version.php" hash="763fe8ee500ef1ed7db22c4f81e83b96"/></dir></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="be49e1b58910ee33b329badaa9fc85ce"/><file name="Ideal.php" hash="24a367e9b73955b3579438cb5eec213c"/><file name="Klarna.php" hash="c66cbcc135151dcc4337d22fc0552a46"/><file name="Klarnaaccount.php" hash="77e35328922bfb232f93896b77367c1e"/></dir><dir name="Info"><file name="Payment.php" hash="6fc6b4f3374fd2c82a2d27e83c05f9e3"/></dir><dir name="Paymentfee"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="7b2d199e11a13936213e87a54bc09e5c"/></dir></dir></dir><dir name="Checkout"><file name="Fee.php" hash="07e72679dc8ddd5f7e2db9e24bb76aa6"/></dir><dir name="Creditmemo"><file name="Totals.php" hash="87021e3b682c1abf1ae95e173730023a"/></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="40c399761dccfd494d7cfb439447c5e3"/></dir></dir><dir name="Order"><dir name="Totals"><file name="Fee.php" hash="0cde857c2b7f33cdb5927143a98f0958"/></dir></dir></dir><file name="Redirect.php" hash="2f854d58133eebad7f128a08d799f7ef"/></dir><dir name="Helper"><file name="Data.php" hash="ed47b3c61a5e701e1683a7717c6b8ef1"/><file name="Paymentfee.php" hash="23700e6d5f7f96f149214679fa6ed614"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Languages.php" hash="fb24871559fa1ce2613438ad5613a196"/><file name="Modes.php" hash="678a822a7f0c0665fc696c44937825be"/><file name="Orderstatus.php" hash="610ca9cedb01e329d821f4e407e5bfc8"/><file name="Version.php" hash="818a7ae5f4126fbb0c8fc76376e03c65"/></dir></dir></dir></dir><file name="Base.php" hash="590eb09637530d4d940e3534e1fb2248"/><dir name="Gateway"><file name="Abstract.php" hash="9515b2eba45051aa7a70c6bddad23e08"/><file name="Afterpay.php" hash="054b525c972119fd330291776c2550ac"/><file name="Americanexpress.php" hash="705926d7a69fb889f54185743f4cac9f"/><file name="Banktransfer.php" hash="d4d5712ab327c418ee2d949e49faee01"/><file name="Bitcoin.php" hash="001420be0c8d665d905bcc79275e989e"/><file name="Cartebancaire.php" hash="451bff78fa26e4bae883d0c18ca1f844"/><file name="Cartebleue.php" hash="b7974f8f8e655daaf50a899d15cc15fd"/><file name="Default.php" hash="dd934ee60d32000773f26be805d46925"/><file name="Directdebit.php" hash="7890209183bab5f47edcca60a19cd007"/><file name="Giropay.php" hash="ea35629ddfd08cd341128af6d95c8911"/><file name="Ideal.php" hash="1b5b6318c3e544659f465fdbc463fa51"/><file name="Idealqr.php" hash="99612b830026b61908ce318f8764d1cd"/><file name="Klarna.php" hash="901891d606ea469296e75251fc7abe14"/><file name="Klarnaaccount.php" hash="4d85440b0df2df05ec001c6a5d7416dd"/><file name="Maestro.php" hash="c29f0bd00282c992017a2487d12d8bda"/><file name="Mastercard.php" hash="3febe4f0ee3cc630cd959e8ce086d2ee"/><file name="Mistercash.php" hash="d618b6ab14ffa5d9810cf65232b6d2a3"/><file name="Paypal.php" hash="ad4600fdc877a84a6a4f8647ae2587df"/><file name="Paysafecard.php" hash="3a4173e24c4ded9b25270b6c1eeae4ff"/><file name="Pos.php" hash="8450a1a6a074bc04c7ea63ac5738c48a"/><file name="Przelewy24.php" hash="f49bfa8354fa2bce2add3221a04843cf"/><file name="Sofortbanking.php" hash="544531b74c8fd34e7ccd48a32210d81f"/><file name="Visa.php" hash="50cbf582c2b5192923d290fcbec35870"/><file name="Vpay.php" hash="acf7d286f343b4e663a55a8540bf45d2"/><file name="Webmoney.php" hash="72a36f0854db4c02e0477208b47faccf"/></dir><file name="Observer.php" hash="150fdf7b6d530b45ae8d2d3ad7ff9adf"/><dir name="Paymentfee"><dir name="Creditmemo"><file name="Total.php" hash="5191056c5dae3862c2a468acd3e5cbac"/></dir><dir name="Invoice"><dir name="Pdf"><file name="Total.php" hash="314df1d94874fcb856af2e0be4019782"/></dir><file name="Tax.php" hash="dc485fa37d31e13e20f578cb58075486"/><file name="Total.php" hash="f26e4dc51d0e510eb1c2c65750dec92b"/></dir><dir name="Quote"><file name="Quote.php" hash="d09d4d5c4b55770b0a50f80f0a5fa643"/><file name="TaxTotal.php" hash="a1f53b6ed1988364aa396b3bd7afa1e0"/><file name="Total.php" hash="a525e84dc0d62a4ca073a7ddb80f162b"/></dir></dir><file name="Paymentlink.php" hash="5e59973cc1734de87a130cccc072e357"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CardgateController.php" hash="f85917c188168138943c80685f70618f"/></dir><file name="StandardController.php" hash="bb9482dd9af371945241c190020e77ee"/></dir><dir name="etc"><file name="adminhtml.xml" hash="4fbe66b7e79dde67d6ac3c764230b109"/><file name="config.xml" hash="0768b8a160cd248ec0ab7ef67e341aac"/><file name="system.xml" hash="bdf811d7a7866bc97a8e08713034aaf7"/></dir><dir name="sql"><dir name="cgp_setup"><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="978d7c844cdfda957a90369495e58d2e"/></dir></dir></dir><file name=".gitignore" hash="2f0cd577d0e696bae6250e3681d0860a"/></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.3.0</min><max>7.1.0</max></php></required></dependencies>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cardgate_Cgp</name>
4
+ <version>1.2.2</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 Payment Module</summary>
10
  <description>Card Gate is a Payment Service Provider from the Netherlands. We offer various payment methods against competitive rates.</description>
11
+ <notes>- Added ACL for 'send payment link email'</notes>
 
 
 
 
12
  <authors><author><name>Cardgate BV</name><user>cardgateplus</user><email>support@cardgate.com</email></author></authors>
13
+ <date>2017-06-29</date>
14
+ <time>11:42:50</time>
15
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="cardgate_cgp.css" hash="bebfc13fca1b36867c17864ae70fdabd"/><dir name="images"><dir name="cardgate"><file name="cardgate_cgp.png" hash="b97b15baba0b27042733c8ea4b4fb6bc"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="nl_NL"><file name="Cardgate_Cgp.csv" hash="7383d541e93ab7506415aa87486557a2"/><dir name="template"><dir name="email"><dir name="cgp"><file name="paymentlink.html" hash="ab33a1408009855d6f280dae491ce391"/><file name="paymentlink_guest.html" hash="0ba0a7dfeedc084e4bfc01ceaedb9c2b"/></dir></dir></dir></dir><dir name="en_US"><dir name="template"><dir name="email"><dir name="cgp"><file name="paymentlink.html" hash="d1fbedec6b157543b0ea977804488c6b"/><file name="paymentlink_guest.html" hash="d1fbedec6b157543b0ea977804488c6b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZzCardgate_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="checkout"><file name="fee.phtml" hash="79362bab3963195ad6727d077fe87b11"/></dir><dir name="email"><dir name="sales"><file name="order_new.html" hash="983abaac854ee17fa7bc76860ec3cff9"/><file name="order_new_guest.html" hash="0f12070e3350a89f67ae8d9c8350095a"/></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="ff7a2a827a7b7a5ed9bcb5d484c30c68"/><file name="ideal.phtml" hash="42fdfee86ba3a098f5f73e9240332581"/><file name="klarna.phtml" hash="e2876171abf8e94d7b77a47ce9279561"/><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="Adminhtml"><dir name="Paymentlink"><file name="Resend.php" hash="801a1d837e40777ede9ed4d99d94746f"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Version.php" hash="763fe8ee500ef1ed7db22c4f81e83b96"/></dir></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="be49e1b58910ee33b329badaa9fc85ce"/><file name="Ideal.php" hash="24a367e9b73955b3579438cb5eec213c"/><file name="Klarna.php" hash="c66cbcc135151dcc4337d22fc0552a46"/><file name="Klarnaaccount.php" hash="77e35328922bfb232f93896b77367c1e"/></dir><dir name="Info"><file name="Payment.php" hash="1575ac155db87681d92c787ccff5915c"/></dir><dir name="Paymentfee"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="7b2d199e11a13936213e87a54bc09e5c"/></dir></dir></dir><dir name="Checkout"><file name="Fee.php" hash="07e72679dc8ddd5f7e2db9e24bb76aa6"/></dir><dir name="Creditmemo"><file name="Totals.php" hash="87021e3b682c1abf1ae95e173730023a"/></dir><dir name="Invoice"><dir name="Totals"><file name="Fee.php" hash="40c399761dccfd494d7cfb439447c5e3"/></dir></dir><dir name="Order"><dir name="Totals"><file name="Fee.php" hash="0cde857c2b7f33cdb5927143a98f0958"/></dir></dir></dir><file name="Redirect.php" hash="2f854d58133eebad7f128a08d799f7ef"/></dir><dir name="Helper"><file name="Data.php" hash="ed47b3c61a5e701e1683a7717c6b8ef1"/><file name="Paymentfee.php" hash="23700e6d5f7f96f149214679fa6ed614"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Languages.php" hash="fb24871559fa1ce2613438ad5613a196"/><file name="Modes.php" hash="678a822a7f0c0665fc696c44937825be"/><file name="Orderstatus.php" hash="610ca9cedb01e329d821f4e407e5bfc8"/><file name="Version.php" hash="818a7ae5f4126fbb0c8fc76376e03c65"/></dir></dir></dir></dir><file name="Base.php" hash="590eb09637530d4d940e3534e1fb2248"/><dir name="Gateway"><file name="Abstract.php" hash="9515b2eba45051aa7a70c6bddad23e08"/><file name="Afterpay.php" hash="054b525c972119fd330291776c2550ac"/><file name="Americanexpress.php" hash="705926d7a69fb889f54185743f4cac9f"/><file name="Banktransfer.php" hash="d4d5712ab327c418ee2d949e49faee01"/><file name="Bitcoin.php" hash="001420be0c8d665d905bcc79275e989e"/><file name="Cartebancaire.php" hash="451bff78fa26e4bae883d0c18ca1f844"/><file name="Cartebleue.php" hash="b7974f8f8e655daaf50a899d15cc15fd"/><file name="Default.php" hash="dd934ee60d32000773f26be805d46925"/><file name="Directdebit.php" hash="7890209183bab5f47edcca60a19cd007"/><file name="Giropay.php" hash="ea35629ddfd08cd341128af6d95c8911"/><file name="Ideal.php" hash="1b5b6318c3e544659f465fdbc463fa51"/><file name="Idealqr.php" hash="99612b830026b61908ce318f8764d1cd"/><file name="Klarna.php" hash="901891d606ea469296e75251fc7abe14"/><file name="Klarnaaccount.php" hash="4d85440b0df2df05ec001c6a5d7416dd"/><file name="Maestro.php" hash="c29f0bd00282c992017a2487d12d8bda"/><file name="Mastercard.php" hash="3febe4f0ee3cc630cd959e8ce086d2ee"/><file name="Mistercash.php" hash="d618b6ab14ffa5d9810cf65232b6d2a3"/><file name="Paypal.php" hash="ad4600fdc877a84a6a4f8647ae2587df"/><file name="Paysafecard.php" hash="3a4173e24c4ded9b25270b6c1eeae4ff"/><file name="Pos.php" hash="8450a1a6a074bc04c7ea63ac5738c48a"/><file name="Przelewy24.php" hash="f49bfa8354fa2bce2add3221a04843cf"/><file name="Sofortbanking.php" hash="544531b74c8fd34e7ccd48a32210d81f"/><file name="Visa.php" hash="50cbf582c2b5192923d290fcbec35870"/><file name="Vpay.php" hash="acf7d286f343b4e663a55a8540bf45d2"/><file name="Webmoney.php" hash="72a36f0854db4c02e0477208b47faccf"/></dir><file name="Observer.php" hash="150fdf7b6d530b45ae8d2d3ad7ff9adf"/><dir name="Paymentfee"><dir name="Creditmemo"><file name="Total.php" hash="5191056c5dae3862c2a468acd3e5cbac"/></dir><dir name="Invoice"><dir name="Pdf"><file name="Total.php" hash="314df1d94874fcb856af2e0be4019782"/></dir><file name="Tax.php" hash="dc485fa37d31e13e20f578cb58075486"/><file name="Total.php" hash="f26e4dc51d0e510eb1c2c65750dec92b"/></dir><dir name="Quote"><file name="Quote.php" hash="d09d4d5c4b55770b0a50f80f0a5fa643"/><file name="TaxTotal.php" hash="a1f53b6ed1988364aa396b3bd7afa1e0"/><file name="Total.php" hash="a525e84dc0d62a4ca073a7ddb80f162b"/></dir></dir><file name="Paymentlink.php" hash="5e59973cc1734de87a130cccc072e357"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CardgateController.php" hash="0f5e1624e99d91d5c2d86575b9e2016f"/></dir><file name="StandardController.php" hash="bb9482dd9af371945241c190020e77ee"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5f4c633df30073e35f4e964c6cbdeee5"/><file name="config.xml" hash="7abb6f745a6a9408c1bdcd94f4d82c4f"/><file name="system.xml" hash="bdf811d7a7866bc97a8e08713034aaf7"/></dir><dir name="sql"><dir name="cgp_setup"><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="978d7c844cdfda957a90369495e58d2e"/></dir></dir></dir><file name=".gitignore" hash="2f0cd577d0e696bae6250e3681d0860a"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>7.1.0</max></php></required></dependencies>
18
  </package>