Version Notes
* HC-159 Version information in configuration
* HC-165 Accepted cipher methods
Download this release
Release Info
Developer | Sandor Czettner |
Extension | HC_PayByFinance |
Version | 1.0.3.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.3.4 to 1.0.3.5
- app/code/local/HC/PayByFinance/Block/Adminhtml/Version.php +96 -0
- app/code/local/HC/PayByFinance/Model/Post/Abstract.php +13 -1
- app/code/local/HC/PayByFinance/etc/system.xml +7 -0
- app/design/adminhtml/default/default/template/paybyfinance/version.phtml +8 -0
- app/design/frontend/base/default/layout/paybyfinance.xml +21 -0
- app/design/frontend/base/default/template/checkout/{cart.phtml → cart-pbf.phtml} +0 -0
- app/design/frontend/base/default/template/checkout/cart/{totals.phtml → totals-pbf.phtml} +0 -0
- app/design/frontend/base/default/template/checkout/onepage/review/{info.phtml → info-pbf.phtml} +0 -0
- app/design/frontend/base/default/template/checkout/onepage/review/{totals.phtml → totals-pbf.phtml} +0 -0
- package.xml +7 -6
app/code/local/HC/PayByFinance/Block/Adminhtml/Version.php
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Hitachi Capital Pay By Finance
|
4 |
+
*
|
5 |
+
* Hitachi Capital Pay By Finance Extension
|
6 |
+
*
|
7 |
+
* PHP version >= 5.3.*
|
8 |
+
*
|
9 |
+
* @category HC
|
10 |
+
* @package PayByFinance
|
11 |
+
* @author Healthy Websites <support@healthywebsites.co.uk>
|
12 |
+
* @copyright 2014 Healthy Websites
|
13 |
+
* @license http://www.gnu.org/copyleft/gpl.html GPL License
|
14 |
+
* @link http://www.healthywebsites.co.uk/
|
15 |
+
*
|
16 |
+
*/
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Version information to be displayed on the configuration
|
20 |
+
*
|
21 |
+
* @uses Mage_Adminhtml_Block_Template
|
22 |
+
*
|
23 |
+
* @category HC
|
24 |
+
* @package PayByFinance
|
25 |
+
* @author Healthy Websites <support@healthywebsites.co.uk>
|
26 |
+
* @license http://www.gnu.org/copyleft/gpl.html GPL License
|
27 |
+
* @link http://www.healthywebsites.co.uk/
|
28 |
+
*/
|
29 |
+
class HC_PayByFinance_Block_Adminhtml_Version extends Mage_Adminhtml_Block_Template
|
30 |
+
{
|
31 |
+
const PATCH_LEVEL = 5;
|
32 |
+
|
33 |
+
protected $_template = "paybyfinance/version.phtml";
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Render fieldset html
|
37 |
+
*
|
38 |
+
* @param Varien_Data_Form_Element_Abstract $element Element
|
39 |
+
*
|
40 |
+
* @return string
|
41 |
+
*/
|
42 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
43 |
+
{
|
44 |
+
return $this->toHtml();
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Get module version
|
49 |
+
*
|
50 |
+
* @return string Module version
|
51 |
+
*/
|
52 |
+
private function getVersion()
|
53 |
+
{
|
54 |
+
$ver = Mage::getConfig()->getNode('modules/HC_PayByFinance/version');
|
55 |
+
$ver .= '.'.self::PATCH_LEVEL;
|
56 |
+
return $ver;
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Get module version html
|
61 |
+
*
|
62 |
+
* @return string Module version as html
|
63 |
+
*/
|
64 |
+
public function getVersionHtml()
|
65 |
+
{
|
66 |
+
$res = '';
|
67 |
+
$ver = $this->getVersion();
|
68 |
+
$res .= '<h3>Hitachi Capital Pay By Finance ' . $ver . '</h3>';
|
69 |
+
|
70 |
+
$modules = (array) Mage::getConfig()->getNode('modules')->children();
|
71 |
+
if (array_key_exists('Enterprise_Enterprise', $modules)) {
|
72 |
+
$aux = 'Enterprise Edition';
|
73 |
+
$saux = 'EE';
|
74 |
+
} else {
|
75 |
+
$aux = 'Community Edition';
|
76 |
+
$saux = 'CD';
|
77 |
+
}
|
78 |
+
$mageVersion = Mage::getVersion();
|
79 |
+
$mage = "Magento {$aux} {$mageVersion}";
|
80 |
+
|
81 |
+
$id = $saux . $mageVersion . '_' . $ver;
|
82 |
+
$hash = substr(md5($id), 0, 12);
|
83 |
+
|
84 |
+
$res .= '<h4>' . $mage .'</h4>';
|
85 |
+
|
86 |
+
$res .= '<p>';
|
87 |
+
$res .= 'Support reference: ' . $hash;
|
88 |
+
$res .= '<br/><a href="mailto:support@healthywebsites.co.uk?subject=Support&body='
|
89 |
+
. $id . '%20ref:%20' . $hash . '%0D%0ADO NOT REMOVE THE ABOVE LINE'
|
90 |
+
. '">Email support</a>';
|
91 |
+
$res .= '</p>';
|
92 |
+
|
93 |
+
return $res;
|
94 |
+
}
|
95 |
+
|
96 |
+
}
|
app/code/local/HC/PayByFinance/Model/Post/Abstract.php
CHANGED
@@ -31,7 +31,19 @@ abstract class HC_PayByFinance_Model_Post_Abstract extends Mage_Core_Model_Abstr
|
|
31 |
private $_pbfInformation;
|
32 |
|
33 |
private $_ciphers = array(
|
34 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
);
|
36 |
|
37 |
/**
|
31 |
private $_pbfInformation;
|
32 |
|
33 |
private $_ciphers = array(
|
34 |
+
'ECDHE-RSA-AES256-GCM-SHA384',
|
35 |
+
'ECDHE-RSA-AES256-SHA384',
|
36 |
+
'ECDHE-RSA-AES256-SHA',
|
37 |
+
'AES256-GCM-SHA384',
|
38 |
+
'AES256-SHA256',
|
39 |
+
'AES256-SHA',
|
40 |
+
'DES-CBC3-SHA',
|
41 |
+
'ECDHE-RSA-AES128-GCM-SHA256',
|
42 |
+
'ECDHE-RSA-AES128-SHA256',
|
43 |
+
'ECDHE-RSA-AES128-SHA',
|
44 |
+
'AES128-GCM-SHA256',
|
45 |
+
'AES128-SHA256',
|
46 |
+
'AES128-SHA',
|
47 |
);
|
48 |
|
49 |
/**
|
app/code/local/HC/PayByFinance/etc/system.xml
CHANGED
@@ -10,6 +10,13 @@
|
|
10 |
<show_in_website>1</show_in_website>
|
11 |
<show_in_store>1</show_in_store>
|
12 |
<groups>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<general>
|
14 |
<label>General</label>
|
15 |
<show_in_default>1</show_in_default>
|
10 |
<show_in_website>1</show_in_website>
|
11 |
<show_in_store>1</show_in_store>
|
12 |
<groups>
|
13 |
+
<hint>
|
14 |
+
<frontend_model>paybyfinance/adminhtml_version</frontend_model>
|
15 |
+
<sort_order>0</sort_order>
|
16 |
+
<show_in_default>1</show_in_default>
|
17 |
+
<show_in_website>1</show_in_website>
|
18 |
+
<show_in_store>1</show_in_store>
|
19 |
+
</hint>
|
20 |
<general>
|
21 |
<label>General</label>
|
22 |
<show_in_default>1</show_in_default>
|
app/design/adminhtml/default/default/template/paybyfinance/version.phtml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @see Ebizmarts_SagePaySuite_Block_Adminhtml_System_Config_Fieldset_Hint
|
4 |
+
*/
|
5 |
+
?>
|
6 |
+
<div class="paybyfinance-config-version" style="background: #e0e0e9; border: 1px solid #6f8992; margin-bottom: 10px; padding: 10px;">
|
7 |
+
<?php echo $this->getVersionHtml(); ?>
|
8 |
+
</div>
|
app/design/frontend/base/default/layout/paybyfinance.xml
CHANGED
@@ -1,6 +1,27 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<layout>
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
<default>
|
5 |
<reference name="head">
|
6 |
<action method="addCss"><link>css/paybyfinance.css</link></action>
|
1 |
<?xml version="1.0"?>
|
2 |
<layout>
|
3 |
|
4 |
+
<!-- Add this to your template in order to enable PBF template modifications -->
|
5 |
+
<!-- Or check the referenced templates and add the changes to your template -->
|
6 |
+
<!-- If you have any problems with the templates, comment out this section -->
|
7 |
+
<checkout_cart_index>
|
8 |
+
<reference name="checkout.cart">
|
9 |
+
<action method="setCartTemplate"><value>checkout/cart-pbf.phtml</value></action>
|
10 |
+
</reference>
|
11 |
+
<reference name="checkout.cart.totals">
|
12 |
+
<action method="setTemplate"><template>checkout/cart/totals-pbf.phtml</template></action>
|
13 |
+
</reference>
|
14 |
+
</checkout_cart_index>
|
15 |
+
<checkout_onepage_review>
|
16 |
+
<reference name="root">
|
17 |
+
<action method="setTemplate"><template>checkout/onepage/review/info-pbf.phtml</template></action>
|
18 |
+
</reference>
|
19 |
+
<reference name="checkout.onepage.review.info.totals">
|
20 |
+
<action method="setTemplate"><template>checkout/onepage/review/totals-pbf.phtml</template></action>
|
21 |
+
</reference>
|
22 |
+
</checkout_onepage_review>
|
23 |
+
<!-- / If you have any problems with the templates, comment out this section -->
|
24 |
+
|
25 |
<default>
|
26 |
<reference name="head">
|
27 |
<action method="addCss"><link>css/paybyfinance.css</link></action>
|
app/design/frontend/base/default/template/checkout/{cart.phtml → cart-pbf.phtml}
RENAMED
File without changes
|
app/design/frontend/base/default/template/checkout/cart/{totals.phtml → totals-pbf.phtml}
RENAMED
File without changes
|
app/design/frontend/base/default/template/checkout/onepage/review/{info.phtml → info-pbf.phtml}
RENAMED
File without changes
|
app/design/frontend/base/default/template/checkout/onepage/review/{totals.phtml → totals-pbf.phtml}
RENAMED
File without changes
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>HC_PayByFinance</name>
|
4 |
-
<version>1.0.3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.healthywebsites.co.uk/license.html">Healthy Websites</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Hitachi Capital Pay By Finance</summary>
|
10 |
<description>Hitachi Capital Pay By Finance</description>
|
11 |
-
<notes> * HC-
|
|
|
12 |
<authors><author><name>Sandor Czettner</name><user>MAG000003395</user><email>support@healthywebsites.co.uk</email></author><author><name>Alistair Macneil</name><user>MAG000006529</user><email>support@healthywebsites.co.uk</email></author><author><name>Rhuaridh Clark</name><user>MAG002562063</user><email>support@healthywebsites.co.uk</email></author></authors>
|
13 |
-
<date>2015-03-
|
14 |
-
<time>14:
|
15 |
-
<contents><target name="magelocal"><dir><dir name="HC"><dir name="PayByFinance"><dir name="Block"><dir name="Adminhtml"><dir name="Paybyfinance"><file name="Redirect.php" hash="e833b66126df043c3c82ddad731b72ee"/><dir name="Service"><dir name="Edit"><file name="Form.php" hash="83c8b9c20619ba8754c4ff589b9a93d8"/><dir name="Tab"><file name="Form.php" hash="b1cc9b35c4504f12d75e5fd05c286ceb"/></dir><file name="Tabs.php" hash="563cd0546a62114f4ce0ad226dcbd284"/></dir><file name="Edit.php" hash="6c27682856959920a054c5e46f9e6202"/><file name="Grid.php" hash="3b1decef1063f3f4dc6220b1d770ac34"/></dir><file name="Service.php" hash="863a6adb6aa194f80ef85eff35b835fc"/></dir
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.4.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>HC_PayByFinance</name>
|
4 |
+
<version>1.0.3.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.healthywebsites.co.uk/license.html">Healthy Websites</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Hitachi Capital Pay By Finance</summary>
|
10 |
<description>Hitachi Capital Pay By Finance</description>
|
11 |
+
<notes> * HC-159 Version information in configuration
|
12 |
+
* HC-165 Accepted cipher methods</notes>
|
13 |
<authors><author><name>Sandor Czettner</name><user>MAG000003395</user><email>support@healthywebsites.co.uk</email></author><author><name>Alistair Macneil</name><user>MAG000006529</user><email>support@healthywebsites.co.uk</email></author><author><name>Rhuaridh Clark</name><user>MAG002562063</user><email>support@healthywebsites.co.uk</email></author></authors>
|
14 |
+
<date>2015-03-31</date>
|
15 |
+
<time>14:02:00</time>
|
16 |
+
<contents><target name="magelocal"><dir><dir name="HC"><dir name="PayByFinance"><dir name="Block"><dir name="Adminhtml"><dir name="Paybyfinance"><file name="Redirect.php" hash="e833b66126df043c3c82ddad731b72ee"/><dir name="Service"><dir name="Edit"><file name="Form.php" hash="83c8b9c20619ba8754c4ff589b9a93d8"/><dir name="Tab"><file name="Form.php" hash="b1cc9b35c4504f12d75e5fd05c286ceb"/></dir><file name="Tabs.php" hash="563cd0546a62114f4ce0ad226dcbd284"/></dir><file name="Edit.php" hash="6c27682856959920a054c5e46f9e6202"/><file name="Grid.php" hash="3b1decef1063f3f4dc6220b1d770ac34"/></dir><file name="Service.php" hash="863a6adb6aa194f80ef85eff35b835fc"/></dir><file name="Version.php" hash="5a468f33e17d7d3d4086ccc62afa68d7"/></dir><dir name="Checkout"><file name="Redirect.php" hash="d666ffdae5d127c041d72af7a4125222"/></dir><dir name="Sales"><dir name="Order"><file name="Totals.php" hash="32f03e3a7529b91e41ed203b67b1a776"/></dir></dir><file name="Selector.php" hash="e5a43cbc50858ce6ba9e3695c2a53251"/><file name="Status.php" hash="e2cfd097569fdb0dbf4f6f56ce282181"/></dir><dir name="Helper"><file name="Cart.php" hash="02314da8f564f015698ea0c640a2412a"/><file name="Checkout.php" hash="ace804f10a6673cb89d7621cd0f56a3b"/><file name="Data.php" hash="17c4567187d366d5943441b974d48ab5"/><file name="Notification.php" hash="92e04e043b2eced9f6159f8817d0d7fa"/></dir><dir name="Model"><file name="Calculator.php" hash="7c86b984569f07616005ea3fa5748eb3"/><dir name="Config"><dir name="Source"><dir name="Catalog"><dir name="Product"><file name="Finance.php" hash="ff556af6968a9ddc48313446f117a161"/><file name="Type.php" hash="497f87f6e6f8ff94e6308436e8c23339"/></dir></dir><dir name="Cms"><file name="Block.php" hash="6f27ccfc9ed421b4e329fcb1aa898d7e"/></dir><file name="Connectionmode.php" hash="2b37d9563a3a1721b3aa9e1400866e6c"/><file name="Type.php" hash="3fe934255019556ddc6ed4fe3f485dea"/></dir></dir><file name="Log.php" hash="6565186d165b38aa4513dc15b9f88fc9"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="e3886eeb186a92c8ec81fc7fd03b4c38"/></dir><file name="Log.php" hash="7444e07d1d77554ae82e9900fb8a7e4c"/><dir name="Service"><file name="Collection.php" hash="2fdccc0f53a2e038fe46d18c667df818"/></dir><file name="Service.php" hash="846486c8584eab5656a54961cd2da208"/></dir><file name="Observer.php" hash="fccb8c4e4a752e6b1b2af800cae5f220"/><dir name="Paypal"><dir name="Api"><file name="Nvp.php" hash="b9716601482ba2f95b092b272b0a719f"/></dir><dir name="Hostedpro"><file name="Request.php" hash="609a2f59d5135c98d65a7bf57e6765ef"/></dir></dir><dir name="PaypalUk"><dir name="Api"><file name="Nvp.php" hash="86649f5e35d9c766055ca9bfc50d74ee"/></dir></dir><dir name="Post"><file name="Abstract.php" hash="8f3130d405916573deecdd4572e74ece"/><file name="Live.php" hash="b0c86feedfee4fa7ad2f0a681f3f8074"/><file name="Simulation.php" hash="27a113919d0e7e121a2d09aa4842acad"/><file name="Test.php" hash="0c6a8e53162c4fc8d267f4151d1a5b97"/><file name="Unittest.php" hash="1cf9d2280c568e5b1bf540c15a796bef"/></dir><file name="Post.php" hash="b5396f260e9fb59ffb001fff2f0858fd"/><dir name="Resource"><file name="Setup.php" hash="c9b783bd9bef1ceeb1cc649e91ef3b9a"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Financeamount.php" hash="f6fc2d9bedb7e6748ef06fafb3bd7b10"/></dir><dir name="Invoice"><file name="Financeamount.php" hash="7f652017f58594cb9fa0a3348d49ad15"/></dir></dir><dir name="Quote"><file name="Financeamount.php" hash="87f684a300050432b1b9ad7c265a19f4"/><file name="Totalcost.php" hash="edc6e156abba2c8bd3a3d48671694e95"/></dir></dir><file name="Service.php" hash="2043375b0586e18bcdfe98ed579770a8"/><file name="Session.php" hash="705be3666220145cbbd78fff158ddf71"/><file name="Sessionobserver.php" hash="4ac76db4f11990e1426de6c60abb7639"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paybyfinance"><file name="RedirectController.php" hash="12a6b1951a07fa5d50fcf38a6fb3d57e"/><file name="ServiceController.php" hash="e0354ea82610cb3821a91fa89c8aeb2b"/></dir></dir><file name="CheckoutController.php" hash="1b26b2b1933471445ccf48bf5977e2c5"/><file name="NotificationController.php" hash="2ae082f6a856187268dd7bea4cd8ddad"/><file name="SelectorController.php" hash="8d55176bbd5787b9981e60f96cf8254a"/><file name="SessionController.php" hash="ea6f58e8a3f024e2d55c8b363c6448fd"/><file name="StatusController.php" hash="f017c622790033a9c928debdd5c94427"/></dir><dir name="etc"><file name="adminhtml.xml" hash="216df222a5f5d9fdcf29c238cfd78bd5"/><file name="config.xml" hash="5c1fce29b38aa19402f923c033be31fd"/><file name="system.xml" hash="28c240d36d67c0f8d4df44ad7744b37b"/></dir><dir name="sql"><dir name="paybyfinance_setup"><dir name="html"><file name="abandoned.html" hash="424f900dbddc267f7dac72e67752df25"/><file name="accepted.html" hash="5a12318275410a8bf62d7508422d9503"/><file name="declined.html" hash="bd3e7565c3d98645629d9f6274e4bf24"/><file name="error.html" hash="4a448b052f101b2648dfe84423ad1313"/><file name="information.html" hash="b364458ba3d9ad7579fa4935e3449b46"/><file name="page-finance-options.html" hash="d6786a27e4bf82a73e3134df0f98888b"/><file name="referred.html" hash="5955befddbb2e274f350ba71458b6151"/></dir><file name="mysql4-install-1.0.3.php" hash="7ddff316dc5a2b55470afd63d7adffff"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="ebbf4e768317754347893a4ed6b624e2"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="6424964cd6c10967ee6eb1f6db558a63"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paybyfinance"><file name="form.phtml" hash="6f583d5629e39fe564d4b86535242c7a"/><dir><dir name="sales"><dir name="order"><file name="totals.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir><file name="selector-no.phtml" hash="b54c570f68254a2e879464a0b761c7db"/><file name="selector.phtml" hash="96cb46b21fd5edb89c3de05bbfcab493"/><file name="status.phtml" hash="9e02cb668c470d72612bccc09e34c51a"/></dir><dir name="checkout"><dir name="cart"><file name="totals-pbf.phtml" hash="f14878e618aa3c8943f3728128aadaa6"/></dir><dir name="onepage"><dir name="review"><file name="info-pbf.phtml" hash="e4c7c70c798f1956ae7aaa5c09114fab"/><file name="totals-pbf.phtml" hash="f26e488359433c3814a1cd416006869a"/></dir></dir><file name="cart-pbf.phtml" hash="9f6b1873ed02e5e2ae1966e3e5a1910d"/></dir></dir><dir name="layout"><file name="paybyfinance.xml" hash="9daac883c68fb411cc0ddf3a629086ff"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="paybyfinance.xml" hash="6dd419ed31a10c3fc409a5a58f89fe01"/></dir><dir name="template"><dir name="paybyfinance"><file name="history.phtml" hash="31fbbbb8477717175da3de1e9fe98f54"/><file name="redirect.phtml" hash="90e7aa306768f5aac337300848c04e6a"/><file name="version.phtml" hash="09a8f416156d853ecc47b24a15744563"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="paybyfinance"><file name="checkout.js" hash="21051d8691dd773427d3e761403896ab"/><file name="functions.js" hash="98c27381b3f7eaeaa845271dbe763f05"/><file name="slider.js" hash="453a7468c528377d4b0db03848a62f93"/></dir></dir><dir name="css"><file name="paybyfinance.css" hash="25d02dc5cf228662c30d908d7c2f1356"/><file name="paybyfinance-ie8.css" hash="a6be9c7af8b95300bc62e4fe9ef252ac"/></dir><dir name="images"><dir name="paybyfinance"><file name="bullet.png" hash="ea2baab34b2eb7d0aacb7a67d5b080f1"/><file name="pointer-toggle.png" hash="e661d42aed7a5562f75828312c7a635a"/><file name="pointer.png" hash="68c58b28d6ebd77d415f8666c301a199"/><file name="progress.png" hash="6d46a109cc9e38a663678918142d89f2"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="HC_PayByFinance.xml" hash="ff9284d6a9b1c132d6b6c25352cfd134"/></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
+
<dependencies><required><php><min>5.4.25</min><max>5.6.7</max></php></required></dependencies>
|
19 |
</package>
|