Version Notes
Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fontis_Australia |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.2
- app/code/community/Fontis/Australia/Helper/Bpay.php +2 -2
- app/code/community/Fontis/Australia/Model/Payment/Bpay.php +5 -0
- app/code/community/Fontis/Australia/Model/Payment/Directdeposit.php +5 -0
- app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php +3 -1
- app/code/community/Fontis/Australia/etc/config.xml +1 -1
- app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/form.phtml +1 -1
- app/design/frontend/default/default/template/fontis/australia/postcode.phtml.~1~ +128 -0
- package.xml +4 -4
app/code/community/Fontis/Australia/Helper/Bpay.php
CHANGED
@@ -30,7 +30,7 @@ class Fontis_Australia_Helper_Bpay extends Mage_Core_Helper_Abstract
|
|
30 |
|
31 |
$output = '
|
32 |
<div id="bpay" style="border: 2px solid rgb(16, 32, 75); margin: 0px; padding: 6px; width: 238px; font-family: Arial,Helvetica,sans-serif; background-color: rgb(255, 255, 255);">
|
33 |
-
<div class="bpayLogo" style="border: 2px solid rgb(20, 44, 97); width: 51px; height 87px; float: left;">
|
34 |
<img src="' . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN) . 'frontend/default/default/images/fontis/bpay.png' . '" height="82" width="51">
|
35 |
</div>
|
36 |
<div class="customerReferenceBox" style="border: 2px solid rgb(20, 44, 97); padding: 0px 8px; height: 87px; width: 158px; margin-left: 60px; margin-bottom: 4px;">
|
@@ -48,7 +48,7 @@ class Fontis_Australia_Helper_Bpay extends Mage_Core_Helper_Abstract
|
|
48 |
} else {
|
49 |
$output .= '<div>
|
50 |
<p class="billerTextHeading" style="font-size: 11px; text-transform: capitalize; color: rgb(20, 44, 97); white-space: nowrap; line-height: 20px; font-weight: bold;">Telephone & Internet Banking — BPAY®</p>
|
51 |
-
<p class="billerText" style="font-size: 11px; color: rgb(20, 44, 97);">Contact your bank or financial institution to make this payment from your cheque, savings, debit
|
52 |
</div>';
|
53 |
}
|
54 |
|
30 |
|
31 |
$output = '
|
32 |
<div id="bpay" style="border: 2px solid rgb(16, 32, 75); margin: 0px; padding: 6px; width: 238px; font-family: Arial,Helvetica,sans-serif; background-color: rgb(255, 255, 255);">
|
33 |
+
<div class="bpayLogo" style="border: 2px solid rgb(20, 44, 97); width: 51px; height: 87px; float: left;">
|
34 |
<img src="' . Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN) . 'frontend/default/default/images/fontis/bpay.png' . '" height="82" width="51">
|
35 |
</div>
|
36 |
<div class="customerReferenceBox" style="border: 2px solid rgb(20, 44, 97); padding: 0px 8px; height: 87px; width: 158px; margin-left: 60px; margin-bottom: 4px;">
|
48 |
} else {
|
49 |
$output .= '<div>
|
50 |
<p class="billerTextHeading" style="font-size: 11px; text-transform: capitalize; color: rgb(20, 44, 97); white-space: nowrap; line-height: 20px; font-weight: bold;">Telephone & Internet Banking — BPAY®</p>
|
51 |
+
<p class="billerText" style="font-size: 11px; color: rgb(20, 44, 97);">Contact your bank or financial institution to make this payment from your cheque, savings, debit or transaction account. More info: www.bpay.com.au</p>
|
52 |
</div>';
|
53 |
}
|
54 |
|
app/code/community/Fontis/Australia/Model/Payment/Bpay.php
CHANGED
@@ -35,6 +35,11 @@ class Fontis_Australia_Model_Payment_Bpay extends Mage_Payment_Model_Method_Abst
|
|
35 |
|
36 |
public function isAvailable($quote = null)
|
37 |
{
|
|
|
|
|
|
|
|
|
|
|
38 |
$groupAccess = $this->getConfigData('customer_group_access');
|
39 |
$group = $this->getConfigData('customer_group');
|
40 |
|
35 |
|
36 |
public function isAvailable($quote = null)
|
37 |
{
|
38 |
+
if($this->getConfigData('active') == 0)
|
39 |
+
{
|
40 |
+
return false;
|
41 |
+
}
|
42 |
+
|
43 |
$groupAccess = $this->getConfigData('customer_group_access');
|
44 |
$group = $this->getConfigData('customer_group');
|
45 |
|
app/code/community/Fontis/Australia/Model/Payment/Directdeposit.php
CHANGED
@@ -36,6 +36,11 @@ class Fontis_Australia_Model_Payment_Directdeposit extends Mage_Payment_Model_Me
|
|
36 |
|
37 |
public function isAvailable($quote = null)
|
38 |
{
|
|
|
|
|
|
|
|
|
|
|
39 |
$groupAccess = $this->getConfigData('customer_group_access');
|
40 |
$group = $this->getConfigData('customer_group');
|
41 |
|
36 |
|
37 |
public function isAvailable($quote = null)
|
38 |
{
|
39 |
+
if($this->getConfigData('active') == 0)
|
40 |
+
{
|
41 |
+
return false;
|
42 |
+
}
|
43 |
+
|
44 |
$groupAccess = $this->getConfigData('customer_group_access');
|
45 |
$group = $this->getConfigData('customer_group');
|
46 |
|
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php
CHANGED
@@ -39,7 +39,7 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
|
|
39 |
* @return Mage_Shipping_Model_Rate_Result
|
40 |
*/
|
41 |
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
42 |
-
{
|
43 |
// Check if this method is active
|
44 |
if (!$this->getConfigFlag('active'))
|
45 |
{
|
@@ -252,6 +252,8 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
|
|
252 |
}
|
253 |
|
254 |
}
|
|
|
|
|
255 |
|
256 |
return $result;
|
257 |
}
|
39 |
* @return Mage_Shipping_Model_Rate_Result
|
40 |
*/
|
41 |
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
42 |
+
{
|
43 |
// Check if this method is active
|
44 |
if (!$this->getConfigFlag('active'))
|
45 |
{
|
252 |
}
|
253 |
|
254 |
}
|
255 |
+
|
256 |
+
Mage::log(print_r($result->asArray(), true), null, 'rates.log');
|
257 |
|
258 |
return $result;
|
259 |
}
|
app/code/community/Fontis/Australia/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Fontis_Australia>
|
26 |
-
<version>2.0</version>
|
27 |
<depends>
|
28 |
<Mage_Shipping />
|
29 |
<Mage_Payment />
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Fontis_Australia>
|
26 |
+
<version>2.0.2</version>
|
27 |
<depends>
|
28 |
<Mage_Shipping />
|
29 |
<Mage_Payment />
|
app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/form.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*/
|
21 |
?>
|
22 |
<fieldset class="form-list">
|
23 |
-
<ul id="payment_form_
|
24 |
<li>
|
25 |
<div class="input-box">
|
26 |
<?php if ($this->getMethod()->getAccountName()): ?>
|
20 |
*/
|
21 |
?>
|
22 |
<fieldset class="form-list">
|
23 |
+
<ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none">
|
24 |
<li>
|
25 |
<div class="input-box">
|
26 |
<?php if ($this->getMethod()->getAccountName()): ?>
|
app/design/frontend/default/default/template/fontis/australia/postcode.phtml.~1~
ADDED
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Fontis Australia Extension
|
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.txt.
|
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 license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Fontis
|
16 |
+
* @package Fontis_Australia
|
17 |
+
* @author Chris Norton
|
18 |
+
* @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
?>
|
22 |
+
<script type="text/javascript">
|
23 |
+
|
24 |
+
// Create and insert the div that will hold the list of autocomplete items. This
|
25 |
+
// is added to the DOM immediately following the #city field.
|
26 |
+
var autocomplete_city = new Element('div', { id: 'autocomplete_city', 'class': 'search-autocomplete' });
|
27 |
+
|
28 |
+
function updateAddress(text, item) {
|
29 |
+
// Update state and postcode fields
|
30 |
+
var id = item.id;
|
31 |
+
var tokens = id.split('-');
|
32 |
+
|
33 |
+
// Assume item at index 1 is region_id, item at index 3 is postcode
|
34 |
+
$('region_id').value = tokens[1];
|
35 |
+
$('zip').value = tokens[3];
|
36 |
+
}
|
37 |
+
|
38 |
+
if($('city')) {
|
39 |
+
function updateAddress(text, item) {
|
40 |
+
// Update state and postcode fields
|
41 |
+
var id = item.id;
|
42 |
+
var tokens = id.split('-');
|
43 |
+
|
44 |
+
// Assume item at index 1 is region_id, item at index 3 is postcode
|
45 |
+
$('region_id').value = tokens[1];
|
46 |
+
$('zip').value = tokens[3];
|
47 |
+
}
|
48 |
+
|
49 |
+
$('city').parentNode.appendChild(autocomplete_city);
|
50 |
+
|
51 |
+
// Create the autocompleter and assign it to a variable for future use.
|
52 |
+
var completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
53 |
+
afterUpdateElement: updateAddress,
|
54 |
+
minChars: 2,
|
55 |
+
parameters: 'country=' + $F('country')
|
56 |
+
});
|
57 |
+
|
58 |
+
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
59 |
+
$('country').observe('change', function() {
|
60 |
+
completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
61 |
+
afterUpdateElement: updateAddress,
|
62 |
+
minChars: 2,
|
63 |
+
parameters: 'country=' + $F('country')
|
64 |
+
});
|
65 |
+
});
|
66 |
+
}
|
67 |
+
|
68 |
+
if($('billing:city')) {
|
69 |
+
function updateAddress(text, item) {
|
70 |
+
// Update state and postcode fields
|
71 |
+
var id = item.id;
|
72 |
+
var tokens = id.split('-');
|
73 |
+
|
74 |
+
// Assume item at index 1 is region_id, item at index 3 is postcode
|
75 |
+
$('billing:region_id').value = tokens[1];
|
76 |
+
$('billing:postcode').value = tokens[3];
|
77 |
+
}
|
78 |
+
|
79 |
+
$('billing:city').parentNode.appendChild(autocomplete_city);
|
80 |
+
|
81 |
+
// Create the autocompleter and assign it to a variable for future use.
|
82 |
+
var completer = new Ajax.Autocompleter("billing:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
83 |
+
afterUpdateElement: updateAddress,
|
84 |
+
minChars: 2,
|
85 |
+
parameters: 'country=' + $F('billing:country_id')
|
86 |
+
});
|
87 |
+
|
88 |
+
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
89 |
+
$('billing:country_id').observe('change', function() {
|
90 |
+
completer = new Ajax.Autocompleter("billing:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
91 |
+
afterUpdateElement: updateAddress,
|
92 |
+
minChars: 2,
|
93 |
+
parameters: 'country=' + $F('billing:country_id')
|
94 |
+
});
|
95 |
+
});
|
96 |
+
}
|
97 |
+
|
98 |
+
|
99 |
+
if($('shipping:city')) {
|
100 |
+
function updateAddress(text, item) {
|
101 |
+
// Update state and postcode fields
|
102 |
+
var id = item.id;
|
103 |
+
var tokens = id.split('-');
|
104 |
+
|
105 |
+
// Assume item at index 1 is region_id, item at index 3 is postcode
|
106 |
+
$('shipping:region_id').value = tokens[1];
|
107 |
+
$('shipping:postcode').value = tokens[3];
|
108 |
+
}
|
109 |
+
|
110 |
+
$('shipping:city').parentNode.appendChild(autocomplete_city);
|
111 |
+
|
112 |
+
// Create the autocompleter and assign it to a variable for future use.
|
113 |
+
var completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
114 |
+
afterUpdateElement: updateAddress,
|
115 |
+
minChars: 2,
|
116 |
+
parameters: 'country=' + $F('shipping:country_id')
|
117 |
+
});
|
118 |
+
|
119 |
+
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
120 |
+
$('shipping:country_id').observe('change', function() {
|
121 |
+
completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
122 |
+
afterUpdateElement: updateAddress,
|
123 |
+
minChars: 2,
|
124 |
+
parameters: 'country=' + $F('shipping:country_id')
|
125 |
+
});
|
126 |
+
});
|
127 |
+
}
|
128 |
+
</script>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_Australia</name>
|
4 |
-
<version>2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
|
11 |
<notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).</notes>
|
12 |
<authors><author><name>Chris Norton</name><user>auto-converted</user><email>chris.norton@fontis.com.au</email></author><author><name>Lloyd Hazlett</name><user>auto-converted</user><email>hazzard43@fastmail.fm</email></author><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
-
<date>2010-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash="d33f99fc5dfc156de09254e95a2c82eb"/></dir><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="3895f9afa025444eb9a1cdc38582069d"/><file name="info.phtml" hash="47d1e0cc3ae676dff49990eba0ac4608"/><file name="success.phtml" hash="115a1710b1f3b0ef3ecf0b957651bb43"/></dir><dir name="directdeposit"><file name="form.phtml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_Australia</name>
|
4 |
+
<version>2.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
|
11 |
<notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).</notes>
|
12 |
<authors><author><name>Chris Norton</name><user>auto-converted</user><email>chris.norton@fontis.com.au</email></author><author><name>Lloyd Hazlett</name><user>auto-converted</user><email>hazzard43@fastmail.fm</email></author><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
+
<date>2010-03-08</date>
|
14 |
+
<time>11:59:36</time>
|
15 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash="d33f99fc5dfc156de09254e95a2c82eb"/></dir><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="3895f9afa025444eb9a1cdc38582069d"/><file name="info.phtml" hash="47d1e0cc3ae676dff49990eba0ac4608"/><file name="success.phtml" hash="115a1710b1f3b0ef3ecf0b957651bb43"/></dir><dir name="directdeposit"><file name="form.phtml" hash="8cf9d09e42ba30206aabf01a3ec38239"/><file name="info.phtml" hash="8bc98b2fd1d1943f17d2831a67c97db3"/><file name="success.phtml" hash="0545f8c3c9d37a2045a20f442991e8d7"/></dir></dir><file name="postcode-checkout.phtml" hash="51867acd43c4f8c982ab1fea103a579f"/><file name="postcode.phtml" hash="b0d7bfa170c7ca3bd4a256f0404d7189"/><file name="postcode.phtml.~1~" hash="85dbbd2b416f85f230dcce12e52cb397"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Fontis"><dir name="Australia"><dir name="Block"><dir name="Bpay"><file name="Form.php" hash="958e11d14d7c87054a68d34b60c498d6"/><file name="Info.php" hash="a28f40be3c76637eb43ba80c61031512"/><file name="Info.php.~1~" hash="0261fa159baac6974b936a29ceffa727"/></dir><dir name="Directdeposit"><file name="Form.php" hash="13589d5d85499678bdc62fde04107095"/><file name="Info.php" hash="0f31ac7451127c87813c823423a9057b"/></dir><file name="Autocomplete.php" hash="4f33f809dae969781ead580b13e9bd3a"/><file name="Myshopping.php" hash="1e9b9149a867136f541b765d54ba402b"/><file name="Shopbot.php" hash="fca48ea13a60bdd1b207913f536bce45"/></dir><dir name="controllers"><file name="AjaxController.php" hash="5fb086e3236446b6a6f10f4c78eb3fcb"/></dir><dir name="etc"><file name="config.xml" hash="ebd3a449304c2bf90c07f53b09297196"/><file name="system.xml" hash="bfcebc05a66fb2d2c0b4f13ebae6fc7a"/></dir><dir name="Helper"><file name="Bpay.php" hash="a2565444f18b28e70c8d29f802297057"/><file name="Data.php" hash="e493486d7a5ccd5589d99d08b136b819"/></dir><dir name="Model"><dir name="Config"><file name="CustomerGroupAccess.php" hash="e531a8049b9a877e01c2b806b065dbef"/><file name="CustomerGroups.php" hash="8014e56b1141cb9bbb63f807ec1c87a5"/></dir><dir name="Getprice"><file name="Child.php" hash="806d1d3f4b9508e7a982ebdcb4d9faf7"/><file name="Cron.php" hash="024e036fb8772b085bc7ca48bed7f605"/></dir><dir name="Myshopping"><file name="Child.php" hash="b1cb41cdf36352e9d1d6dec0dbeedc9f"/><file name="Cron.php" hash="92021f539e06231715f4639c98f08d9a"/></dir><dir name="Mysql4"><dir name="Shipping"><dir name="Carrier"><dir name="Eparcel"><file name="Collection.php" hash="87f450c6b318060b83e7d7d0662cdf50"/></dir><file name="Eparcel.php" hash="9614eed4296b17a429db745c289d42cf"/></dir></dir></dir><dir name="Payment"><file name="Bpay.php" hash="b60d9a61b06b100164fff49fc5113f71"/><file name="Directdeposit.php" hash="c80ba74494bfeea040dc2bf942cec5f0"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Australiapost.php" hash="ef6d97f094751f282d1895023b8c0c5d"/><file name="Eparcel.php" hash="b65cd938b27b4666e22b6833ca738226"/></dir><dir name="Config"><file name="Eparcel.php" hash="8c754cdc86316dbee53db68f0e2652bc"/><file name="Eparcelcondition.php" hash="b8cc830ab6e0e397d32bf574f60b0500"/><file name="Weightunits.php" hash="e13ba9de393ae67420f863d4008c3c72"/></dir></dir><dir name="Shopbot"><file name="Child.php" hash="9c87db1130bdcb1333f9412864191c0a"/><file name="Cron.php" hash="a4d5cbdb1a21257fe9977ff6da43f2d6"/><file name="Cron.php~" hash="edaaa2e9c31e3eb32600476b9bdd83c0"/></dir><dir name="Tax"><file name="Gst.php" hash="d7e024971dab498e80de8c957d2911f2"/></dir></dir><dir name="sql"><dir name="australia_setup"><file name="mysql4-install-0.7.0.php" hash="f475b13bb5319599c4a852cfb8788f9a"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="9a381c07ec9ee53e2ffaa7ea7da4559d"/><file name="postcodes.txt" hash="21083a0f94e200259c9b4540666b251e"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="fontis"><file name="bpay.png" hash="481c9ee07049203aca13d6d2c2948cf7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fontis_Australia.xml" hash="a60b83cf1b1b449a16fe09da16342a4d"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|