Version Notes
- Use the latest Payment Gateway SDK version 2.6.2
- Show anum on success checkout page.
Download this release
Release Info
Developer | BIG FISH Kft. |
Extension | BigFish_PaymentGateway_Magento |
Version | 1.11.1 |
Comparing to | |
See all releases |
Code changes from version 1.11.0 to 1.11.1
- app/code/local/BigFish/PaymentGateway/Model/Event.php +2 -0
- app/code/local/BigFish/PaymentGateway/PaymentGateway.php +18 -2
- app/code/local/BigFish/PaymentGateway/PaymentGateway/Request/OneClickTokenCancel.php +40 -0
- app/design/frontend/base/default/template/bfpaymentgateway/info.phtml +3 -0
- package.xml +6 -6
app/code/local/BigFish/PaymentGateway/Model/Event.php
CHANGED
@@ -175,6 +175,7 @@ class BigFish_PaymentGateway_Model_Event
|
|
175 |
$this->_order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true, $msg);
|
176 |
// save transaction ID
|
177 |
$this->_order->getPayment()->setLastTransId($this->getEventData('ProviderTransactionId'));
|
|
|
178 |
// send new order email
|
179 |
$this->_order->sendNewOrderEmail();
|
180 |
$this->_order->setEmailSent(true);
|
@@ -186,6 +187,7 @@ class BigFish_PaymentGateway_Model_Event
|
|
186 |
$this->_order->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, true, $msg);
|
187 |
// save transaction ID
|
188 |
$this->_order->getPayment()->setLastTransId($this->getEventData('ProviderTransactionId'));
|
|
|
189 |
break;
|
190 |
}
|
191 |
$this->_order->save();
|
175 |
$this->_order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true, $msg);
|
176 |
// save transaction ID
|
177 |
$this->_order->getPayment()->setLastTransId($this->getEventData('ProviderTransactionId'));
|
178 |
+
$this->_order->getPayment()->setPoNumber($this->getEventData('Anum'));
|
179 |
// send new order email
|
180 |
$this->_order->sendNewOrderEmail();
|
181 |
$this->_order->setEmailSent(true);
|
187 |
$this->_order->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT, true, $msg);
|
188 |
// save transaction ID
|
189 |
$this->_order->getPayment()->setLastTransId($this->getEventData('ProviderTransactionId'));
|
190 |
+
$this->_order->getPayment()->setPoNumber($this->getEventData('Anum'));
|
191 |
break;
|
192 |
}
|
193 |
$this->_order->save();
|
app/code/local/BigFish/PaymentGateway/PaymentGateway.php
CHANGED
@@ -22,6 +22,7 @@ use BigFish\PaymentGateway\Request\Finalize as FinalizeRequest;
|
|
22 |
use BigFish\PaymentGateway\Request\Details as DetailsRequest;
|
23 |
use BigFish\PaymentGateway\Request\Log as LogRequest;
|
24 |
use BigFish\PaymentGateway\Request\OneClickOptions as OneClickOptionsRequest;
|
|
|
25 |
use BigFish\PaymentGateway\Request\Invoice as InvoiceRequest;
|
26 |
use BigFish\PaymentGateway\Request\Providers as ProvidersRequest;
|
27 |
use BigFish\PaymentGateway\Response;
|
@@ -43,7 +44,7 @@ class PaymentGateway
|
|
43 |
* SDK Version
|
44 |
*
|
45 |
*/
|
46 |
-
const VERSION = '2.6.
|
47 |
|
48 |
/**
|
49 |
* API type constants
|
@@ -79,6 +80,8 @@ class PaymentGateway
|
|
79 |
|
80 |
const REQUEST_ONE_CLICK_OPTIONS = 'OneClickOptions';
|
81 |
|
|
|
|
|
82 |
const REQUEST_INVOICE = 'Invoice';
|
83 |
|
84 |
const REQUEST_PROVIDERS = 'Providers';
|
@@ -379,7 +382,20 @@ XIm63iVw6gjP2qDnNwIDAQAB
|
|
379 |
{
|
380 |
return self::sendRequest(self::REQUEST_ONE_CLICK_OPTIONS, $request);
|
381 |
}
|
382 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
/**
|
384 |
* Get invoice
|
385 |
*
|
22 |
use BigFish\PaymentGateway\Request\Details as DetailsRequest;
|
23 |
use BigFish\PaymentGateway\Request\Log as LogRequest;
|
24 |
use BigFish\PaymentGateway\Request\OneClickOptions as OneClickOptionsRequest;
|
25 |
+
use BigFish\PaymentGateway\Request\OneClickTokenCancel as OneClickTokenCancelRequest;
|
26 |
use BigFish\PaymentGateway\Request\Invoice as InvoiceRequest;
|
27 |
use BigFish\PaymentGateway\Request\Providers as ProvidersRequest;
|
28 |
use BigFish\PaymentGateway\Response;
|
44 |
* SDK Version
|
45 |
*
|
46 |
*/
|
47 |
+
const VERSION = '2.6.2';
|
48 |
|
49 |
/**
|
50 |
* API type constants
|
80 |
|
81 |
const REQUEST_ONE_CLICK_OPTIONS = 'OneClickOptions';
|
82 |
|
83 |
+
const REQUEST_ONE_CLICK_TOKEN_CANCEL = 'OneClickTokenCancel';
|
84 |
+
|
85 |
const REQUEST_INVOICE = 'Invoice';
|
86 |
|
87 |
const REQUEST_PROVIDERS = 'Providers';
|
382 |
{
|
383 |
return self::sendRequest(self::REQUEST_ONE_CLICK_OPTIONS, $request);
|
384 |
}
|
385 |
+
|
386 |
+
/**
|
387 |
+
* One Click Token Cancel
|
388 |
+
*
|
389 |
+
* @param \BigFish\PaymentGateway\Request\OneClickTokenCancel $request OneClickTokenCancel request object
|
390 |
+
* @return \BigFish\PaymentGateway\Response Payment Gateway response object
|
391 |
+
* @access public
|
392 |
+
* @static
|
393 |
+
*/
|
394 |
+
public static function oneClickTokenCancel(OneClickTokenCancelRequest $request)
|
395 |
+
{
|
396 |
+
return self::sendRequest(self::REQUEST_ONE_CLICK_TOKEN_CANCEL, $request);
|
397 |
+
}
|
398 |
+
|
399 |
/**
|
400 |
* Get invoice
|
401 |
*
|
app/code/local/BigFish/PaymentGateway/PaymentGateway/Request/OneClickTokenCancel.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* BIG FISH Payment Gateway (https://www.paymentgateway.hu)
|
4 |
+
* PHP SDK
|
5 |
+
*
|
6 |
+
* @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git
|
7 |
+
* @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu)
|
8 |
+
*/
|
9 |
+
namespace BigFish\PaymentGateway\Request;
|
10 |
+
|
11 |
+
use BigFish\PaymentGateway\Request\RequestAbstract;
|
12 |
+
|
13 |
+
/**
|
14 |
+
* One Click Token Cancel request class
|
15 |
+
*
|
16 |
+
* @package PaymentGateway
|
17 |
+
* @subpackage Request
|
18 |
+
*/
|
19 |
+
class OneClickTokenCancel extends RequestAbstract
|
20 |
+
{
|
21 |
+
/**
|
22 |
+
* Transaction ID
|
23 |
+
*
|
24 |
+
* @var string
|
25 |
+
* @access public
|
26 |
+
*/
|
27 |
+
public $transactionId;
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Construct new One Click Token Cancel request instance
|
31 |
+
*
|
32 |
+
* @param string $transactionId Transaction ID received from Payment Gateway
|
33 |
+
* @return void
|
34 |
+
* @access public
|
35 |
+
*/
|
36 |
+
public function __construct($transactionId)
|
37 |
+
{
|
38 |
+
$this->transactionId = $transactionId;
|
39 |
+
}
|
40 |
+
}
|
app/design/frontend/base/default/template/bfpaymentgateway/info.phtml
CHANGED
@@ -36,4 +36,7 @@
|
|
36 |
<?php else: ?>
|
37 |
<?php echo Mage::helper('paymentgateway')->__('Transaction ID: %s', $this->htmlEscape($this->getInfo()->getLastTransId())) ?><br />
|
38 |
<?php endif; ?>
|
|
|
|
|
|
|
39 |
<?php endif; ?>
|
36 |
<?php else: ?>
|
37 |
<?php echo Mage::helper('paymentgateway')->__('Transaction ID: %s', $this->htmlEscape($this->getInfo()->getLastTransId())) ?><br />
|
38 |
<?php endif; ?>
|
39 |
+
<?php if ($this->getInfo()->getPoNumber() != ''): ?>
|
40 |
+
<?php echo Mage::helper('paymentgateway')->__('Anum: %s', $this->htmlEscape($this->getInfo()->getPoNumber())) ?><br />
|
41 |
+
<?php endif; ?>
|
42 |
<?php endif; ?>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BigFish_PaymentGateway_Magento</name>
|
4 |
-
<version>1.11.
|
5 |
<stability>stable</stability>
|
6 |
<license>Custom license</license>
|
7 |
<channel>community</channel>
|
@@ -9,14 +9,14 @@
|
|
9 |
<summary>A BIG FISH Payment Gateway egy olyan szolgáltatás, amely segítségével bármely Internetes kereskedő többféle elektronikus fizetési megoldást kínálhat webáruházában.</summary>
|
10 |
<description>A webáruházak és a fizetési szolgáltatók közti kommunikációt a Payment Gateway biztosítja, ez által komolyabb fejlesztés nélkül, egy lépésben több elektronikus fizetési szolgáltatás beköthető, mivel a Payment Gateway és a kereskedők között sztenderdizált kommunikáció zajlik, függetlenül a fizetési szolgáltatóktól, a tranzakciós üzeneteket a Payment Gateway "fordítja le a fizetési szolgáltatók nyelvére".
|
11 |
A látogatók a megvásárolt termékeket és szolgáltatásokat azonnal kifizethetik, így a webáruház pénzügyei tervezhetőbbé válnak. A Payment Gateway beépítése nem igényel mást, mint egy egyszeri, néhány órás továbbfejlesztést, amihez mi teljeskörű tanácsadást és technikai támogatást nyújtunk.</description>
|
12 |
-
<notes>-
|
13 |

|
14 |
-
-
|
15 |
</notes>
|
16 |
<authors><author><name>BIG FISH Kft.</name><user>bfadmin</user><email>dev@bigfish.hu</email></author></authors>
|
17 |
-
<date>2016-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magelocal"><dir name="BigFish"><dir name="PaymentGateway"><dir name="Block"><dir name="Form"><file name="Escalion.php" hash="8db1c2c75d8ecc431d2c4cb1c6257418"/><file name="Khbszep.php" hash="3ad66aee2f4bc61e080371c61415bb9f"/><file name="Mkbszep.php" hash="bccf733e6ae19e7e0bf1769987ccf770"/><file name="Otp2.php" hash="cd78396b6f24759c5be3e753a17b65fa"/><file name="Otpsimple.php" hash="68c80e0767d72f5bdbd92d0ba6e12556"/><file name="Otpszep.php" hash="59585457addbc84b3bfba54909af8f99"/><file name="Redirect.php" hash="11f5fcbd8a868032a8362651acbe4886"/><file name="Saferpay.php" hash="3329576d4f5a2c4ccc0dfb67c68f4fb8"/><file name="Wirecard.php" hash="457c968b23ba0efa0518a60bf10f090a"/></dir><file name="Form.php" hash="c936919ddc23e849e4428f28589ee070"/><file name="Info.php" hash="5bc4551306f21ff8bf488fc72ed0c4fd"/><file name="Jsinit.php" hash="178788393e09dd98d0009f0db422e545"/><dir name="Pending"><file name="History.php" hash="745dd59b8de60076d8a6b5ccf496fabd"/><file name="View.php" hash="b3404a72a31bf60861f8862a15bb3568"/></dir></dir><dir name="Helper"><file name="Data.php" hash="3c368881e9a0f021ebb7b88976e6b1e4"/></dir><dir name="Model"><file name="Abaqoos.php" hash="655322910e7b15a5f999a535b2eda4c6"/><file name="Abstract.php" hash="6c75efb4a84a6a81a77dc47dd9dc5e1e"/><file name="Barion.php" hash="651cc96eeb82c8a0321bdabd60e6509a"/><file name="Borgun.php" hash="d4b7a0993bd32dabdbfc7a8736224a97"/><file name="Cib.php" hash="ea48d14762362222837b1d1522512254"/><file name="Config.php" hash="fe3cb6509c534eb273c367a8d351c69a"/><file name="Escalion.php" hash="7115dba2f982a6843ffa8cd90fa3131b"/><file name="Event.php" hash="
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BigFish_PaymentGateway_Magento</name>
|
4 |
+
<version>1.11.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Custom license</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>A BIG FISH Payment Gateway egy olyan szolgáltatás, amely segítségével bármely Internetes kereskedő többféle elektronikus fizetési megoldást kínálhat webáruházában.</summary>
|
10 |
<description>A webáruházak és a fizetési szolgáltatók közti kommunikációt a Payment Gateway biztosítja, ez által komolyabb fejlesztés nélkül, egy lépésben több elektronikus fizetési szolgáltatás beköthető, mivel a Payment Gateway és a kereskedők között sztenderdizált kommunikáció zajlik, függetlenül a fizetési szolgáltatóktól, a tranzakciós üzeneteket a Payment Gateway "fordítja le a fizetési szolgáltatók nyelvére".
|
11 |
A látogatók a megvásárolt termékeket és szolgáltatásokat azonnal kifizethetik, így a webáruház pénzügyei tervezhetőbbé válnak. A Payment Gateway beépítése nem igényel mást, mint egy egyszeri, néhány órás továbbfejlesztést, amihez mi teljeskörű tanácsadást és technikai támogatást nyújtunk.</description>
|
12 |
+
<notes>- Use the latest Payment Gateway SDK version 2.6.2
|
13 |

|
14 |
+
- Show anum on success checkout page.
|
15 |
</notes>
|
16 |
<authors><author><name>BIG FISH Kft.</name><user>bfadmin</user><email>dev@bigfish.hu</email></author></authors>
|
17 |
+
<date>2016-09-21</date>
|
18 |
+
<time>07:23:43</time>
|
19 |
+
<contents><target name="magelocal"><dir name="BigFish"><dir name="PaymentGateway"><dir name="Block"><dir name="Form"><file name="Escalion.php" hash="8db1c2c75d8ecc431d2c4cb1c6257418"/><file name="Khbszep.php" hash="3ad66aee2f4bc61e080371c61415bb9f"/><file name="Mkbszep.php" hash="bccf733e6ae19e7e0bf1769987ccf770"/><file name="Otp2.php" hash="cd78396b6f24759c5be3e753a17b65fa"/><file name="Otpsimple.php" hash="68c80e0767d72f5bdbd92d0ba6e12556"/><file name="Otpszep.php" hash="59585457addbc84b3bfba54909af8f99"/><file name="Redirect.php" hash="11f5fcbd8a868032a8362651acbe4886"/><file name="Saferpay.php" hash="3329576d4f5a2c4ccc0dfb67c68f4fb8"/><file name="Wirecard.php" hash="457c968b23ba0efa0518a60bf10f090a"/></dir><file name="Form.php" hash="c936919ddc23e849e4428f28589ee070"/><file name="Info.php" hash="5bc4551306f21ff8bf488fc72ed0c4fd"/><file name="Jsinit.php" hash="178788393e09dd98d0009f0db422e545"/><dir name="Pending"><file name="History.php" hash="745dd59b8de60076d8a6b5ccf496fabd"/><file name="View.php" hash="b3404a72a31bf60861f8862a15bb3568"/></dir></dir><dir name="Helper"><file name="Data.php" hash="3c368881e9a0f021ebb7b88976e6b1e4"/></dir><dir name="Model"><file name="Abaqoos.php" hash="655322910e7b15a5f999a535b2eda4c6"/><file name="Abstract.php" hash="6c75efb4a84a6a81a77dc47dd9dc5e1e"/><file name="Barion.php" hash="651cc96eeb82c8a0321bdabd60e6509a"/><file name="Borgun.php" hash="d4b7a0993bd32dabdbfc7a8736224a97"/><file name="Cib.php" hash="ea48d14762362222837b1d1522512254"/><file name="Config.php" hash="fe3cb6509c534eb273c367a8d351c69a"/><file name="Escalion.php" hash="7115dba2f982a6843ffa8cd90fa3131b"/><file name="Event.php" hash="6f110f3509e2b30d70cc27cabe91cde4"/><file name="Fhb.php" hash="47234f39d0c4140aaf2e1d7660d0ba85"/><file name="Khb.php" hash="1fe9debe58da3fc9e34006d31cb8f019"/><file name="Khbszep.php" hash="7b0744c5f7911ef7086de5caf28df5fc"/><file name="Log.php" hash="a887de7bb3b215d81d3c70b4b8588bce"/><file name="Mcm.php" hash="727dc6636cf1174c2db1ed7b26930946"/><file name="Mkbszep.php" hash="e2f79221c31a6b3c785aa5d4bceb685c"/><file name="Mpp.php" hash="144a389c61da0556bc46fc10b0d92e23"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="3e99f7b52cee958e71f9a412c9ea4edd"/></dir><file name="Log.php" hash="d4138f11251a717b79b68fadb883ee23"/><dir name="Paymentgateway"><file name="Collection.php" hash="abc8ba82d181a15cfa48d09cdc2a35d6"/></dir><file name="Paymentgateway.php" hash="870020b535b30552f4f5a47bb4bd0935"/></dir><file name="Otp.php" hash="c0a4a946222f2c09dd0ec198d749ac45"/><file name="Otp2.php" hash="a392215103974748fd93e4235b6e68d0"/><file name="Otpay.php" hash="c7f2829710e07894e59f6ca15562424c"/><file name="Otpaymp.php" hash="b3da87a4a0b06445c0d1753844cc0ea0"/><file name="Otpmultipont.php" hash="6d3d476a2792d90cd13e435364cf5217"/><file name="Otpsimple.php" hash="4f50a5f8a1ab9de7c018a518df527dab"/><file name="Otpsimplewire.php" hash="b1c4ed48787b307fe42892e1d04708e9"/><file name="Otpszep.php" hash="44c04637fa019b9421620a2d6178e290"/><file name="PaymentGateway.php" hash="c91b0648df0514d2cfb9c40129baa018"/><file name="Paypal.php" hash="4c165d3dd02115173ba21e22a1496adc"/><file name="Payu.php" hash="e31bfd9ce6322df6fdf1dd38bc33f581"/><file name="Payu2.php" hash="560bf3928ca3894f21a3ff6391fe455b"/><file name="Payucash.php" hash="ea040fc4306fbbe1a273ccf1dc375a7a"/><file name="Payumobile.php" hash="31792f27fdd5a6305f548df2ed57bd69"/><file name="Payuwire.php" hash="24b510a92769fefdb201887a4c0e9642"/><file name="Saferpay.php" hash="9a95a8769846a055d14b00696e45c16f"/><file name="Sms.php" hash="dfa6c5d919dfa48cae185f2747d0f171"/><file name="Sofort.php" hash="c1a3cf4dd9ac043d2b9847cd96ddab6e"/><file name="Unicredit.php" hash="deabee29cbe39feccb7da1dd2180ea8e"/><file name="Wirecard.php" hash="e768ee9b11a7aa01356e484017ffbb36"/></dir><dir name="PaymentGateway"><file name="Autoload.php" hash="6997b4bce120bf62e226cbe42d4397c8"/><file name="Config.php" hash="bd5e2623b5e39f00fc9e0ff2b0736bed"/><file name="Exception.php" hash="57767e34b71c335779e31fe1e75bd146"/><dir name="Request"><file name="Close.php" hash="ddae1150d120b2284dd08a890f617f3f"/><file name="Details.php" hash="ff625f5fd9abd2e385fa32a181c0a6d8"/><file name="Finalize.php" hash="237383e917c2bed297c9cc0d49b32e12"/><file name="Init.php" hash="f75692377848aa776f6b5d8dd2653282"/><file name="InitRP.php" hash="3d8e91f1137b3156c0119fc058915d12"/><file name="Invoice.php" hash="b85a890e79d5166bc3991e5224bf5a6b"/><file name="Log.php" hash="157cd533f90f1a06f9b7e77a05eb9d79"/><file name="OneClickOptions.php" hash="f26652bd13a9ef8575940c2752f745a5"/><file name="OneClickTokenCancel.php" hash="f45f7f563c4485a6b54dda35bc1b1648"/><file name="Providers.php" hash="64d8b40ddb475538692e64decb3afa8f"/><file name="Refund.php" hash="15ca1e22d262139d36da3f6098bcb0db"/><file name="RequestAbstract.php" hash="2cd35a7e48003e45d739f1855391b684"/><file name="Result.php" hash="4e1bcab0adb4f91f2676b5536a5bf04b"/><file name="Start.php" hash="d6d2cb4ab25eed91f150eb443e92b9bb"/><file name="StartRP.php" hash="5af211e7949ab989a402cba18d8612c7"/></dir><file name="Response.php" hash="384cdf36a325babf1930c8d60ad2513b"/></dir><file name="PaymentGateway.php" hash="4e423c13d7190fb3a8e812adf5efddb9"/><dir name="controllers"><file name="PaymentgatewayController.php" hash="af5dcdd2a03a46c4a6bcf80bdb61dbe0"/><file name="PendingController.php" hash="722f4941550bb9f889bcba035cac3b97"/><file name="ProcessingController.php" hash="13ca3f5fe6f4385ece6c0d1dbca7e25a"/></dir><dir name="etc"><file name="config.xml" hash="187eaba01b974c6b4505428b337e0ff7"/><file name="system.xml" hash="41d3a76830ba50c058b28772b3d10e75"/></dir><dir name="sql"><dir name="paymentgateway_setup"><file name="mysql4-install-1.11.0.php" hash="2a295725d1810f33eeb05489f9f5fa6e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="bfpaymentgateway.xml" hash="ef59bce8615f7a6f32c7e49e86136174"/></dir><dir name="template"><dir name="bfpaymentgateway"><file name="blank.phtml" hash="b29130ec79f42bb958a644cdab06af5e"/><dir name="form"><file name="khbszep.phtml" hash="33314bdb454d023bc866a09584f43836"/><file name="mkbszep.phtml" hash="33314bdb454d023bc866a09584f43836"/><file name="oneclickpayment.phtml" hash="ed31122716f61fe3e77748455b3ea1b9"/><file name="otp2.phtml" hash="7f521125ce12ce6072b316e6312efc1b"/><file name="otpszep.phtml" hash="33314bdb454d023bc866a09584f43836"/><file name="redirect.phtml" hash="c39543a72adb26206e7330dd921c16f5"/><file name="saferpay.phtml" hash="43cb55c62cae8e4d216f4842a71f2dbb"/><file name="wirecard.phtml" hash="a26d838f88fa889a032b6c252bc8d81a"/></dir><file name="info.phtml" hash="58b22211a84f805558b3c7df5ff0d5b9"/><dir name="pending"><file name="history.phtml" hash="945cff02077a38132c9025c689a7f038"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="BigFish_PaymentGateway.xml" hash="bb16234eadf8490e8c5c09084fba33c5"/></dir></target><target name="magelocale"><dir name="hu_HU"><file name="BigFish_PaymentGateway.csv" hash="935cea8d17a0b351dd3f8cd76263d470"/></dir><dir name="en_US"><file name="BigFish_PaymentGateway.csv" hash="94a8a150b8213a70edd6aae765a13e20"/></dir><dir name="en_GB"><file name="BigFish_PaymentGateway.csv" hash="94a8a150b8213a70edd6aae765a13e20"/></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|