Version Notes
Version 1.3.1
Download this release
Release Info
Developer | DataCash |
Extension | Datacash |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- app/code/community/DataCash/Dpg/etc/config.xml +1 -1
- app/design/adminhtml/default/default/template/datacash/hcc/info.phtml +46 -0
- app/design/adminhtml/default/default/template/datacash/hps/info.phtml +46 -0
- app/design/adminhtml/default/default/template/datacash/sales/order/risk.phtml +88 -0
- app/design/adminhtml/default/default/template/datacash/system/config/fieldset/hint.phtml +38 -0
- package.xml +5 -5
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.1</version>
|
6 |
</DataCash_Dpg>
|
7 |
</modules>
|
8 |
<global>
|
app/design/adminhtml/default/default/template/datacash/hcc/info.phtml
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* DataCash
|
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.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@datacash.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade this module to newer
|
18 |
+
* versions in the future. If you wish to customize this module for your
|
19 |
+
* needs please refer to http://testserver.datacash.com/software/download.cgi
|
20 |
+
* for more information.
|
21 |
+
*
|
22 |
+
* @author Alistair Stead
|
23 |
+
* @version $Id$
|
24 |
+
* @copyright DataCash, 11 April, 2011
|
25 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
+
* @package DataCash
|
27 |
+
**/
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @see DataCash_Dpg_Block_Info_Hcc
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
|
34 |
+
|
35 |
+
<?php if ($_specificInfo = $this->getSpecificInformation()):?>
|
36 |
+
<table>
|
37 |
+
<?php foreach ($_specificInfo as $_label => $_value):?>
|
38 |
+
<tr>
|
39 |
+
<td><?php echo $this->escapeHtml($_label)?>:</td>
|
40 |
+
<td><?php echo nl2br(implode($this->getValueAsArray($_value, true), "\n"))?></td>
|
41 |
+
</tr>
|
42 |
+
<?php endforeach; ?>
|
43 |
+
</table>
|
44 |
+
<?php endif;?>
|
45 |
+
|
46 |
+
<?php echo $this->getChildHtml()?>
|
app/design/adminhtml/default/default/template/datacash/hps/info.phtml
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* DataCash
|
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.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@datacash.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade this module to newer
|
18 |
+
* versions in the future. If you wish to customize this module for your
|
19 |
+
* needs please refer to http://testserver.datacash.com/software/download.cgi
|
20 |
+
* for more information.
|
21 |
+
*
|
22 |
+
* @author Alistair Stead
|
23 |
+
* @version $Id$
|
24 |
+
* @copyright DataCash, 11 April, 2011
|
25 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
+
* @package DataCash
|
27 |
+
**/
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @see DataCash_Dpg_Block_Info_Hps
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<?php echo $this->htmlEscape($this->getMethod()->getTitle()) ?>
|
34 |
+
|
35 |
+
<?php if ($_specificInfo = $this->getSpecificInformation()):?>
|
36 |
+
<table>
|
37 |
+
<?php foreach ($_specificInfo as $_label => $_value):?>
|
38 |
+
<tr>
|
39 |
+
<td><?php echo $this->escapeHtml($_label)?>:</td>
|
40 |
+
<td><?php echo nl2br(implode($this->getValueAsArray($_value, true), "\n"))?></td>
|
41 |
+
</tr>
|
42 |
+
<?php endforeach; ?>
|
43 |
+
</table>
|
44 |
+
<?php endif;?>
|
45 |
+
|
46 |
+
<?php echo $this->getChildHtml()?>
|
app/design/adminhtml/default/default/template/datacash/sales/order/risk.phtml
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if ($this->hasRiskData()): ?>
|
2 |
+
<div class="box-left">
|
3 |
+
<div class="entry-edit">
|
4 |
+
<div class="entry-edit-head">
|
5 |
+
<h4 class="icon-head"><?php echo $this->__('DataCash Fraud Check') ?></h4>
|
6 |
+
</div>
|
7 |
+
<fieldset>
|
8 |
+
<?php foreach($this->getRiskData() as $item): ?>
|
9 |
+
<?php $_item = $item->getItem(); ?>
|
10 |
+
<?php if ($item instanceof DataCash_Dpg_Model_Risk_Screening): ?>
|
11 |
+
<strong><?php echo $this->__('Screening Response') ?></strong>
|
12 |
+
<table>
|
13 |
+
<tbody>
|
14 |
+
<tr>
|
15 |
+
<td><?php echo $this->__('Response code:') ?></td>
|
16 |
+
<td><?php echo $_item->getResponseCode() ?></td>
|
17 |
+
</tr>
|
18 |
+
<tr>
|
19 |
+
<td><?php echo $this->__('Response message:') ?></td>
|
20 |
+
<td><?php echo $_item->getResponseMessage() ?></td>
|
21 |
+
</tr>
|
22 |
+
<tr>
|
23 |
+
<td><?php echo $this->__('CPI value:') ?></td>
|
24 |
+
<td><?php echo $_item->getCpiValue() ?></td>
|
25 |
+
</tr>
|
26 |
+
<tr>
|
27 |
+
<td><?php echo $this->__('Transaction ID:') ?></td>
|
28 |
+
<td><?php echo $_item->getTransactionId() ?></td>
|
29 |
+
</tr>
|
30 |
+
<tr>
|
31 |
+
<td><?php echo $this->__('Additional messages:') ?></td>
|
32 |
+
<td>
|
33 |
+
<?php foreach($_item->getAdditionalMessages() as $message): ?>
|
34 |
+
<p><?php echo $message['message'] ?></p>
|
35 |
+
<?php endforeach; ?>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
</tbody>
|
39 |
+
</table>
|
40 |
+
<br />
|
41 |
+
<?php endif; ?>
|
42 |
+
|
43 |
+
<?php if ($item instanceof DataCash_Dpg_Model_Risk_Bankresult): ?>
|
44 |
+
<strong><?php echo $this->__('Bank Response') ?></strong>
|
45 |
+
<table>
|
46 |
+
<tbody>
|
47 |
+
<tr>
|
48 |
+
<td><?php echo $this->__('Response code:') ?></td>
|
49 |
+
<td><?php echo $_item->getResponseCode() ?></td>
|
50 |
+
</tr>
|
51 |
+
<tr>
|
52 |
+
<td><?php echo $this->__('Response message:') ?></td>
|
53 |
+
<td><?php echo $_item->getResponseMessage() ?></td>
|
54 |
+
</tr>
|
55 |
+
<tr>
|
56 |
+
<td><?php echo $this->__('CPI value:') ?></td>
|
57 |
+
<td><?php echo $_item->getCpiValue() ?></td>
|
58 |
+
</tr>
|
59 |
+
<tr>
|
60 |
+
<td><?php echo $this->__('Transaction ID:') ?></td>
|
61 |
+
<td><?php echo $_item->getTransactionId() ?></td>
|
62 |
+
</tr>
|
63 |
+
</tbody>
|
64 |
+
</table>
|
65 |
+
<br />
|
66 |
+
<?php endif; ?>
|
67 |
+
|
68 |
+
<?php if ($item instanceof DataCash_Dpg_Model_Risk_Score): ?>
|
69 |
+
<strong><?php echo $this->__('Score Response') ?></strong>
|
70 |
+
<table>
|
71 |
+
<tbody>
|
72 |
+
<tr>
|
73 |
+
<td><?php echo $this->__('Score:') ?></td>
|
74 |
+
<td><?php echo $_item->getScore() ?></td>
|
75 |
+
</tr>
|
76 |
+
<tr>
|
77 |
+
<td><?php echo $this->__('Recommendation:') ?></td>
|
78 |
+
<td><?php echo $item->getRecommendationDisplay() ?></td>
|
79 |
+
</tr>
|
80 |
+
</tbody>
|
81 |
+
</table>
|
82 |
+
<?php endif; ?>
|
83 |
+
<?php endforeach; ?>
|
84 |
+
</fieldset>
|
85 |
+
</div>
|
86 |
+
</div>
|
87 |
+
<div class="clear"></div>
|
88 |
+
<?php endif; ?>
|
app/design/adminhtml/default/default/template/datacash/system/config/fieldset/hint.phtml
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* DataCash
|
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.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@datacash.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade this module to newer
|
18 |
+
* versions in the future. If you wish to customize this module for your
|
19 |
+
* needs please refer to http://testserver.datacash.com/software/download.cgi
|
20 |
+
* for more information.
|
21 |
+
*
|
22 |
+
* @author Alistair Stead
|
23 |
+
* @version $Id$
|
24 |
+
* @copyright DataCash, 11 April, 2011
|
25 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
+
* @package DataCash
|
27 |
+
**/
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @see DataCash_Dpg_Block_System_Config_Fieldset_Hint
|
31 |
+
*/
|
32 |
+
?>
|
33 |
+
<div class="payment-notice">
|
34 |
+
<br/>
|
35 |
+
<h4>DataCash Payment Processing</h4>
|
36 |
+
<p>DataCash has a single interface that allows organisations to process secure, multi-channel payments anywhere in the world.</p>
|
37 |
+
<p><a traget="blank" href="<?php echo $this->escapeHtml("http://www.datacash.com/") ?>"><?php echo Mage::helper('dpg')->__('View DataCash solutions.')?></a></p>
|
38 |
+
</div>
|
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>2015-
|
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="
|
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.1</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.1</notes>
|
12 |
<authors><author><name>DataCash</name><user>datacash</user><email>support@datacash.com</email></author></authors>
|
13 |
+
<date>2015-06-25</date>
|
14 |
+
<time>06:25:48</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="f64fb44b5e4d21cf5789be5fb404739a"/><file name="Direct.php" hash="71cca949b9d97a9947bff8a2f0b024a7"/><file name="Directprereg.php" hash="1ba0633478037b367bf3f15f091dcdb4"/><file name="Hcc.php" hash="5f0bfa147b92755cddb0243a49e0b6b9"/><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="06fa2fdf10c89d7b9934e723965255af"/><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="74602c7b6f03753d30734ab278dd68ab"/><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>
|