Version Notes
Version 1.3.4
Download this release
Release Info
Developer | DataCash |
Extension | Datacash |
Version | 1.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.4
app/code/community/DataCash/Dpg/Model/Api/Abstract.php
CHANGED
@@ -138,6 +138,24 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
138 |
$this->call($request);
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
/**
|
142 |
* Call the DataCash API to make an ERP request
|
143 |
*
|
@@ -253,9 +271,9 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
253 |
throw new Exception('Billing address must be specified to addCv2Avs');
|
254 |
}
|
255 |
$request->addCv2Avs(
|
256 |
-
$billingAddress->getStreet(1),
|
257 |
-
$billingAddress->getStreet(2),
|
258 |
-
$billingAddress->getCity(),
|
259 |
$billingAddress->getRegionId(),
|
260 |
$billingAddress->getPostcode(),
|
261 |
$this->getCreditCardCvv2()
|
@@ -347,9 +365,9 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
347 |
$map = array(
|
348 |
'first_name' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getFirstname()),
|
349 |
'surname' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getLastname()),
|
350 |
-
'address_line1' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getStreet(1)),
|
351 |
-
'address_line2' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getStreet(2)),
|
352 |
-
'city' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getCity()),
|
353 |
'state_province' => $shippingAddress->getRegionCode(),
|
354 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getPostcode()),
|
355 |
'country' => $shippingAddress->getCountryId(),
|
@@ -481,9 +499,9 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
481 |
|
482 |
if ($address->getId()) {
|
483 |
$map = array_merge($map, array(
|
484 |
-
'address_line1' => new DataCash_Dpg_Helper_Cdata($address->getStreet(1)),
|
485 |
-
'address_line2' => new DataCash_Dpg_Helper_Cdata($address->getStreet(2)),
|
486 |
-
'city' => new DataCash_Dpg_Helper_Cdata($address->getCity()),
|
487 |
'state_province' => $address->getRegionCode(),
|
488 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($address->getPostcode()),
|
489 |
'country' => $address->getCountryId(),
|
@@ -496,9 +514,9 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
496 |
'email_address' => $address->getEmail(),
|
497 |
'first_name' => new DataCash_Dpg_Helper_Cdata($address->getFirstname()),
|
498 |
'surname' => new DataCash_Dpg_Helper_Cdata($address->getLastname()),
|
499 |
-
'address_line1' => new DataCash_Dpg_Helper_Cdata($address->getStreet(1)),
|
500 |
-
'address_line2' => new DataCash_Dpg_Helper_Cdata($address->getStreet(2)),
|
501 |
-
'city' => new DataCash_Dpg_Helper_Cdata($address->getCity()),
|
502 |
'state_province' => $address->getRegionCode(),
|
503 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($address->getPostcode()),
|
504 |
'country' => $address->getCountryId(),
|
@@ -524,9 +542,9 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
524 |
|
525 |
$map = array(
|
526 |
'name' => new DataCash_Dpg_Helper_Cdata("{$billingAddress->getFirstname()} {$billingAddress->getLastname()}"),
|
527 |
-
'address_line1' => new DataCash_Dpg_Helper_Cdata($billingAddress->getStreet(1)),
|
528 |
-
'address_line2' => new DataCash_Dpg_Helper_Cdata($billingAddress->getStreet(2)),
|
529 |
-
'city' => new DataCash_Dpg_Helper_Cdata($billingAddress->getCity()),
|
530 |
'state_province' => $billingAddress->getRegionCode(),
|
531 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($billingAddress->getPostcode()),
|
532 |
'country' => $billingAddress->getCountryId(),
|
@@ -737,7 +755,7 @@ abstract class DataCash_Dpg_Model_Api_Abstract extends Varien_Object
|
|
737 |
{
|
738 |
$this->_rawResponse = $response;
|
739 |
$body = new DataCash_Dpg_Model_Datacash_Simplexml_Element($this->_rawResponse->getBody());
|
740 |
-
$this->getResponse()->addData($body->
|
741 |
}
|
742 |
|
743 |
/**
|
138 |
$this->call($request);
|
139 |
}
|
140 |
|
141 |
+
/**
|
142 |
+
* Ensure that a string will be cut to specified length
|
143 |
+
* @return string
|
144 |
+
*/
|
145 |
+
public function safeCity($str)
|
146 |
+
{
|
147 |
+
return substr($str, 0, 20);
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* Ensure that a string will be cut to specified length
|
152 |
+
* @return string
|
153 |
+
*/
|
154 |
+
public function safeStreet($str)
|
155 |
+
{
|
156 |
+
return substr($str, 0, 30);
|
157 |
+
}
|
158 |
+
|
159 |
/**
|
160 |
* Call the DataCash API to make an ERP request
|
161 |
*
|
271 |
throw new Exception('Billing address must be specified to addCv2Avs');
|
272 |
}
|
273 |
$request->addCv2Avs(
|
274 |
+
$this->safeStreet($billingAddress->getStreet(1)),
|
275 |
+
$this->safeStreet($billingAddress->getStreet(2)),
|
276 |
+
$this->safeCity($billingAddress->getCity()),
|
277 |
$billingAddress->getRegionId(),
|
278 |
$billingAddress->getPostcode(),
|
279 |
$this->getCreditCardCvv2()
|
365 |
$map = array(
|
366 |
'first_name' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getFirstname()),
|
367 |
'surname' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getLastname()),
|
368 |
+
'address_line1' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($shippingAddress->getStreet(1))),
|
369 |
+
'address_line2' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($shippingAddress->getStreet(2))),
|
370 |
+
'city' => new DataCash_Dpg_Helper_Cdata($this->safeCity($shippingAddress->getCity())),
|
371 |
'state_province' => $shippingAddress->getRegionCode(),
|
372 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($shippingAddress->getPostcode()),
|
373 |
'country' => $shippingAddress->getCountryId(),
|
499 |
|
500 |
if ($address->getId()) {
|
501 |
$map = array_merge($map, array(
|
502 |
+
'address_line1' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($address->getStreet(1))),
|
503 |
+
'address_line2' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($address->getStreet(2))),
|
504 |
+
'city' => new DataCash_Dpg_Helper_Cdata($this->safeCity($address->getCity())),
|
505 |
'state_province' => $address->getRegionCode(),
|
506 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($address->getPostcode()),
|
507 |
'country' => $address->getCountryId(),
|
514 |
'email_address' => $address->getEmail(),
|
515 |
'first_name' => new DataCash_Dpg_Helper_Cdata($address->getFirstname()),
|
516 |
'surname' => new DataCash_Dpg_Helper_Cdata($address->getLastname()),
|
517 |
+
'address_line1' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($address->getStreet(1))),
|
518 |
+
'address_line2' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($address->getStreet(2))),
|
519 |
+
'city' => new DataCash_Dpg_Helper_Cdata($this->safeCity($address->getCity())),
|
520 |
'state_province' => $address->getRegionCode(),
|
521 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($address->getPostcode()),
|
522 |
'country' => $address->getCountryId(),
|
542 |
|
543 |
$map = array(
|
544 |
'name' => new DataCash_Dpg_Helper_Cdata("{$billingAddress->getFirstname()} {$billingAddress->getLastname()}"),
|
545 |
+
'address_line1' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($billingAddress->getStreet(1))),
|
546 |
+
'address_line2' => new DataCash_Dpg_Helper_Cdata($this->safeStreet($billingAddress->getStreet(2))),
|
547 |
+
'city' => new DataCash_Dpg_Helper_Cdata($this->safeCity($billingAddress->getCity())),
|
548 |
'state_province' => $billingAddress->getRegionCode(),
|
549 |
'zip_code' => new DataCash_Dpg_Helper_Cdata($billingAddress->getPostcode()),
|
550 |
'country' => $billingAddress->getCountryId(),
|
755 |
{
|
756 |
$this->_rawResponse = $response;
|
757 |
$body = new DataCash_Dpg_Model_Datacash_Simplexml_Element($this->_rawResponse->getBody());
|
758 |
+
$this->getResponse()->addData($body->asCanonicalArray());
|
759 |
}
|
760 |
|
761 |
/**
|
app/code/community/DataCash/Dpg/Model/Api/Hcc.php
CHANGED
@@ -72,9 +72,9 @@ class DataCash_Dpg_Model_Api_Hcc extends DataCash_Dpg_Model_Api_Abstract
|
|
72 |
throw new Exception('Billing address must be specified to addCv2Avs');
|
73 |
}
|
74 |
$request->addCv2Avs(
|
75 |
-
$billingAddress->getStreet(1),
|
76 |
-
$billingAddress->getStreet(2),
|
77 |
-
$billingAddress->getCity(),
|
78 |
$billingAddress->getRegionId(),
|
79 |
$billingAddress->getPostcode(),
|
80 |
$this->getCreditCardCvv2()
|
72 |
throw new Exception('Billing address must be specified to addCv2Avs');
|
73 |
}
|
74 |
$request->addCv2Avs(
|
75 |
+
$this->safeStreet($billingAddress->getStreet(1)),
|
76 |
+
$this->safeStreet($billingAddress->getStreet(2)),
|
77 |
+
$this->safeCity($billingAddress->getCity()),
|
78 |
$billingAddress->getRegionId(),
|
79 |
$billingAddress->getPostcode(),
|
80 |
$this->getCreditCardCvv2()
|
app/code/community/DataCash/Dpg/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<DataCash_Dpg>
|
5 |
-
<version>1.3.
|
6 |
</DataCash_Dpg>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<DataCash_Dpg>
|
5 |
+
<version>1.3.4</version>
|
6 |
</DataCash_Dpg>
|
7 |
</modules>
|
8 |
<global>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Datacash</name>
|
4 |
-
<version>1.3.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL 3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>DataCash payment gateway integration</summary>
|
10 |
<description>DataCash payment gateway integration. System requirements as for Magento http://www.magentocommerce.com/system-requirements. cURL with the FOLLOWLOCATION option is used for service calls to DataCash. FOLLOWLOCATION requires safe_mode to be off and open_basedir to be disabled in the php.ini</description>
|
11 |
-
<notes>Version 1.3.
|
12 |
<authors><author><name>DataCash</name><user>datacash</user><email>support@datacash.com</email></author></authors>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="DataCash"><dir name="Dpg"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Risk.php" hash="087e512ca652eccffd905c154f699b0b"/></dir></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="c65030837e1ce97a063b9146f3bb983d"/></dir></dir></dir></dir><dir name="Centinel"><dir name="Review"><file name="Billing.php" hash="a226489c21dc23ceda10b49f19c835a9"/><file name="Shipping.php" hash="3cc878e7a2de681961dad43e5be729cf"/></dir><file name="Review.php" hash="31f882019d67927c971a92eead2b4fe4"/></dir><dir name="Form"><file name="Api.php" hash="033a34c52dc6dc03fa802c78e05fff9c"/><file name="Apiprereg.php" hash="bf28b55b476562ff459012c9fc21bc6d"/><file name="Hcc.php" hash="b3406a87a800b9182a0e4e259cf75754"/><file name="Hps.php" hash="47a732ebb397a14a145851cdb00ceb0b"/><file name="Iframe.php" hash="d0aad3633894b90f64112a962c8e3161"/><file name="Placeform.php" hash="19bafec3229f6f35382d9b725d41f620"/></dir><dir name="Iframe"><file name="Complete.php" hash="adbf0cb0a89aee5704cebf62dd63b4a9"/><file name="Start.php" hash="ef6527a85117c67a52291932339a25a1"/></dir><dir name="Info"><file name="Api.php" hash="a2893e155ba8c92776e12ed7d4472284"/><file name="Hcc.php" hash="7a2c713640e7fcee5d5c2150d1baff40"/><file name="Hps.php" hash="8b06d32980842db5274897d3bfba9df1"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="8be5810fc25d1d1aecb0df3b18b0e536"/></dir><dir name="Helper"><file name="Cdata.php" hash="8e73bf53fd94e3b3af31bf3d42c42d72"/><file name="Data.php" hash="d0432d33a8705ca3a34f192e1659699f"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Datacash</name>
|
4 |
+
<version>1.3.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL 3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>DataCash payment gateway integration</summary>
|
10 |
<description>DataCash payment gateway integration. System requirements as for Magento http://www.magentocommerce.com/system-requirements. cURL with the FOLLOWLOCATION option is used for service calls to DataCash. FOLLOWLOCATION requires safe_mode to be off and open_basedir to be disabled in the php.ini</description>
|
11 |
+
<notes>Version 1.3.4</notes>
|
12 |
<authors><author><name>DataCash</name><user>datacash</user><email>support@datacash.com</email></author></authors>
|
13 |
+
<date>2017-02-03</date>
|
14 |
+
<time>07:33:02</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="DataCash"><dir name="Dpg"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Risk.php" hash="087e512ca652eccffd905c154f699b0b"/></dir></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="c65030837e1ce97a063b9146f3bb983d"/></dir></dir></dir></dir><dir name="Centinel"><dir name="Review"><file name="Billing.php" hash="a226489c21dc23ceda10b49f19c835a9"/><file name="Shipping.php" hash="3cc878e7a2de681961dad43e5be729cf"/></dir><file name="Review.php" hash="31f882019d67927c971a92eead2b4fe4"/></dir><dir name="Form"><file name="Api.php" hash="033a34c52dc6dc03fa802c78e05fff9c"/><file name="Apiprereg.php" hash="bf28b55b476562ff459012c9fc21bc6d"/><file name="Hcc.php" hash="b3406a87a800b9182a0e4e259cf75754"/><file name="Hps.php" hash="47a732ebb397a14a145851cdb00ceb0b"/><file name="Iframe.php" hash="d0aad3633894b90f64112a962c8e3161"/><file name="Placeform.php" hash="19bafec3229f6f35382d9b725d41f620"/></dir><dir name="Iframe"><file name="Complete.php" hash="adbf0cb0a89aee5704cebf62dd63b4a9"/><file name="Start.php" hash="ef6527a85117c67a52291932339a25a1"/></dir><dir name="Info"><file name="Api.php" hash="a2893e155ba8c92776e12ed7d4472284"/><file name="Hcc.php" hash="7a2c713640e7fcee5d5c2150d1baff40"/><file name="Hps.php" hash="8b06d32980842db5274897d3bfba9df1"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="8be5810fc25d1d1aecb0df3b18b0e536"/></dir><dir name="Helper"><file name="Cdata.php" hash="8e73bf53fd94e3b3af31bf3d42c42d72"/><file name="Data.php" hash="d0432d33a8705ca3a34f192e1659699f"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="0e34ee90b026cac76695b8c7aed86961"/><file name="Direct.php" hash="71cca949b9d97a9947bff8a2f0b024a7"/><file name="Directprereg.php" hash="1ba0633478037b367bf3f15f091dcdb4"/><file name="Hcc.php" hash="d808371ec2d27f8bc2c5846bb71e8dd0"/><file name="Hps.php" hash="40616c129c29acb6978b4bf543b4187c"/></dir><file name="Code.php" hash="43d2b25050901ebd6f6e82ed264de783"/><file name="Config.php" hash="6bc17df54e9692d696b84c16626f28fb"/><dir name="Datacash"><file name="Request.php" hash="31677192c571fe2dc991f0190e404a95"/><file name="Response.php" hash="5507d072f231eebcb3d7bff05da27ecb"/><dir name="Simplexml"><file name="Element.php" hash="ac1b66c652eb1843a36dcbf1b94a40fa"/></dir></dir><file name="Dpg.php" hash="5ded0f39a06d12f538fbdf8fe7553c7c"/><dir name="Entity"><file name="Setup.php" hash="d74a82e89fe2213034f6558956ad9633"/></dir><dir name="Method"><file name="Abstract.php" hash="56d0d20c9b81dbf437b8528cd61279fd"/><file name="Api.php" hash="8880dfa3dda98381eacec8ef2c9af040"/><file name="Apiprereg.php" hash="7af51159fa691a4593ca34754fa7490d"/><file name="Hcc.php" hash="eab5f28256dcc7948c07a45a18727bfd"/><dir name="Hosted"><file name="Abstract.php" hash="f52b0d48cc87e885359e43373dc37c13"/><file name="Interface.php" hash="926072fcd7d864e1f98da8b59b164eb7"/></dir><file name="Hps.php" hash="ce07c9a04d19558a052678e3df28c1f2"/></dir><file name="Observer.php" hash="bf6744f8b7ef6cd7acd430928ffa561c"/><dir name="Resource"><dir name="Risk"><file name="Collection.php" hash="b40b9dfa1942fb977518b0f139837b9b"/></dir><file name="Risk.php" hash="a2c777f8447d7302228201426295be0b"/><file name="Setup.php" hash="8c8dfa376d518c3b1122ecdeceec7683"/><dir name="Tokencard"><file name="Collection.php" hash="8f12f4c957db4c60542f345c909d7918"/></dir><file name="Tokencard.php" hash="4f1098828b12460edf828342fe88e559"/></dir><dir name="Risk"><file name="Abstract.php" hash="0f5506868fe68480d6c8b9049ae2d57d"/><file name="Bankresult.php" hash="3bdf045047881195a20bfec39e5c5f3a"/><file name="Score.php" hash="e564950b8da436b1369b240d094b4213"/><file name="Screening.php" hash="b28d2db8daab751830d737553617851d"/></dir><file name="Risk.php" hash="944331f5e7b96a29ba4940bbbb8739aa"/><dir name="Service"><file name="Abstract.php" hash="8815585398e87b8bcb6d4c282b954f95"/><file name="Direct.php" hash="2dc35bf8f06de86cbdcb2975ea08ef9d"/><file name="Directprereg.php" hash="342849147fb97872192d800a2457c917"/><file name="Hcc.php" hash="090324b893a844715e3c06384bd456fe"/><dir name="State"><file name="Datacash.php" hash="79df9d849f4d23e154c1075b776ca888"/></dir></dir><file name="Service.php" hash="3c5374cf5d2f3d802fe032dce47c1c64"/><dir name="Source"><file name="Acceptreject.php" hash="a3142c294701177d85aab3a6f214e9b2"/><file name="Authtypes.php" hash="a7923edddb42f8ea86b2abb07546d62a"/><file name="GatewayMode.php" hash="c449151400da02fd3eff28cd799d4b46"/><file name="RsgBillingShipping.php" hash="03055dbd794ddef88e4c89d9f690e470"/><file name="RsgServiceTypes.php" hash="0560250f3db9da1d187d4e1d55b5b52e"/><file name="Threedstypes.php" hash="5f404d5d676a3baf0e0e71f1331decc2"/></dir><file name="Tokencard.php" hash="a83e3a6c6bfd86377727e5fab0b1020b"/></dir><dir name="controllers"><file name="HccController.php" hash="4257caa14117e23565568855abe307a9"/><file name="HostedController.php" hash="d08cef939ce21212e30150354f86f6fc"/><file name="HpsController.php" hash="7c94d6d858f20f810cfd6df61a3238f3"/><file name="ReviewController.php" hash="5bc5f2c2f1a4c0fa6fb4838f92ba676b"/><file name="RsgController.php" hash="631c247eb35e325b268a6996baa0b39b"/><file name="T3mController.php" hash="8d7888657be282bafd75f2802a818556"/></dir><dir name="etc"><file name="config.xml" hash="1213e8dba532ad1d6cb2ece91e93b109"/><file name="system.xml" hash="ddc40b2cf948a52f4e098eca518f84d1"/></dir><dir name="sql"><dir name="datacash_dpg_setup"><file name="mysql4-install-0.1.0.php" hash="00a5d0be2b14d26ed85ed891b811abfc"/><file name="mysql4-upgrade-1.0.1-1.1.0.php" hash="a793557ab661f8d8a8535ae3a0683151"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="0a8b673a9e4c5f66ccf209ade90f370a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="datacash"><dir><dir name="hcc"><file name="info.phtml" hash="02f4c24746861b51bf7b1cc71ad56bbe"/></dir><dir name="hps"><file name="info.phtml" hash="6ab593be19fc60bff92b5370b7f8809f"/></dir><dir name="sales"><dir name="order"><file name="risk.phtml" hash="3c48fc561c2f742c6ed8d2cb36520550"/></dir></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="a411204abaf9b4a31806354189896553"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="datacash"><dir><dir name="centinel"><file name="complete.phtml" hash="ff63975cef3640b6dabed450f09d7ad9"/><dir name="review"><file name="address.phtml" hash="6bea77f79f16659dbdf7888d563fa16d"/><file name="details.phtml" hash="9d82bbf88b561a04b4878c06b14ead52"/></dir><file name="review.phtml" hash="99f84bfe40bb5a1e0f9e66b030d79398"/></dir><dir name="form"><file name="cc.phtml" hash="b798c2c2c0729bef424d1be5f64ca024"/><file name="cc.phtml.backup" hash="4930cc189ac48efe55694e5aec89939f"/><file name="cc_prereg.phtml" hash="5b33eaca19e25153a7bcedee02a6f0a6"/></dir><dir name="hcc"><file name="form.phtml" hash="81ed0746ffbd96d8000b95db7c281d03"/><file name="info.phtml" hash="eb512a6dab0d1396742cddf5c5db1598"/><file name="placeform.phtml" hash="b79869ff4346c230c6214b2bffdbc46c"/></dir><dir name="hps"><file name="form.phtml" hash="81ed0746ffbd96d8000b95db7c281d03"/><file name="info.phtml" hash="4bd99be8a9e08b77618fc2f596d2856a"/></dir><dir name="iframe"><file name="complete.phtml" hash="9190056410f552cb802a85b582127065"/><file name="form.phtml" hash="74abd537d1256778a19dd580d236224f"/><file name="start.phtml" hash="3493cd85bf3b3ca604990bd3d810d14d"/></dir></dir></dir></dir><dir name="layout"><file name="datacash.xml" hash="a2c3bbf2ebdac733509894c37500d948"/></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="en_GB"><file name="DataCash_Dpg.csv" hash="f5d24ae44a0d5f3ac76e74430059152d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DataCash_Payment.xml" hash="7f1d393c458e2287f492fc01dd2f1265"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|