Version Notes
Add additional payment fees to payment methods
Download this release
Release Info
Developer | Fly Webservices |
Extension | flywebdesign_paypalfee |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.1
app/code/local/FlyWebdesign/PaypalFee/Helper/Data.php
CHANGED
@@ -17,8 +17,14 @@ class FlyWebdesign_PaypalFee_Helper_Data extends Mage_Core_Helper_Abstract
|
|
17 |
$address = $quote->isVirtual() ? $quote->getBillingAddress() : $quote->getShippingAddress();
|
18 |
|
19 |
if (preg_match("/paypal/i", strval($code))) {
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
else {
|
24 |
$chargeType = Mage::getStoreConfig('payment/'.strval($code).'/charge_type');
|
17 |
$address = $quote->isVirtual() ? $quote->getBillingAddress() : $quote->getShippingAddress();
|
18 |
|
19 |
if (preg_match("/paypal/i", strval($code))) {
|
20 |
+
if(Mage::getStoreConfig('payment/paypal_payment_solutions/charge_type')){
|
21 |
+
// Magento 1.7.0.2 and higher
|
22 |
+
$chargeType = Mage::getStoreConfig('payment/paypal_payment_solutions/charge_type');
|
23 |
+
$chargeValue = Mage::getStoreConfig('payment/paypal_payment_solutions/charge_value');
|
24 |
+
} else {
|
25 |
+
$chargeType = Mage::getStoreConfig('paypal/account/charge_type');
|
26 |
+
$chargeValue = Mage::getStoreConfig('paypal/account/charge_value');
|
27 |
+
}
|
28 |
}
|
29 |
else {
|
30 |
$chargeType = Mage::getStoreConfig('payment/'.strval($code).'/charge_type');
|
app/code/local/FlyWebdesign/PaypalFee/Model/Paypal/Cart.php
CHANGED
@@ -18,10 +18,15 @@ class FlyWebdesign_PaypalFee_Model_Paypal_Cart extends Mage_Paypal_Model_Cart
|
|
18 |
end($this->_items);
|
19 |
$lastRegularItemKey = key($this->_items);
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
// regular totals
|
27 |
$shippingDescription = '';
|
18 |
end($this->_items);
|
19 |
$lastRegularItemKey = key($this->_items);
|
20 |
|
21 |
+
if(Mage::getStoreConfig('payment/paypal_payment_solutions/charge_type')){
|
22 |
+
// Magento 1.7.0.2 and higher
|
23 |
+
$chargeType = Mage::getStoreConfig('payment/paypal_payment_solutions/charge_type');
|
24 |
+
$chargeValue = Mage::getStoreConfig('payment/paypal_payment_solutions/charge_value');
|
25 |
+
} else {
|
26 |
+
// Extra fee - added 21-4-12
|
27 |
+
$chargeType = Mage::getStoreConfig('paypal/account/charge_type');
|
28 |
+
$chargeValue = Mage::getStoreConfig('paypal/account/charge_value');
|
29 |
+
}
|
30 |
|
31 |
// regular totals
|
32 |
$shippingDescription = '';
|
app/code/local/FlyWebdesign/PaypalFee/etc/system.xml
CHANGED
@@ -1,220 +1,223 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<config>
|
3 |
-
<sections>
|
4 |
-
<payment>
|
5 |
-
<groups>
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
<
|
11 |
-
<
|
12 |
-
<
|
13 |
-
<
|
14 |
-
<
|
15 |
-
<
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
<
|
20 |
-
<
|
21 |
-
<
|
22 |
-
<
|
23 |
-
<
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
<
|
32 |
-
<
|
33 |
-
<
|
34 |
-
<
|
35 |
-
<
|
36 |
-
<
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
<
|
41 |
-
<
|
42 |
-
<
|
43 |
-
<
|
44 |
-
<
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
<
|
53 |
-
<
|
54 |
-
<
|
55 |
-
<
|
56 |
-
<
|
57 |
-
<
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
<
|
62 |
-
<
|
63 |
-
<
|
64 |
-
<
|
65 |
-
<
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
<
|
74 |
-
<
|
75 |
-
<
|
76 |
-
<
|
77 |
-
<
|
78 |
-
<
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
<
|
83 |
-
<
|
84 |
-
<
|
85 |
-
<
|
86 |
-
<
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
<
|
95 |
-
<
|
96 |
-
<
|
97 |
-
<
|
98 |
-
<
|
99 |
-
<
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
<
|
104 |
-
<
|
105 |
-
<
|
106 |
-
<
|
107 |
-
<
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
<
|
116 |
-
<
|
117 |
-
<
|
118 |
-
<
|
119 |
-
<
|
120 |
-
<
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
<
|
125 |
-
<
|
126 |
-
<
|
127 |
-
<
|
128 |
-
<
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
<
|
137 |
-
<
|
138 |
-
<
|
139 |
-
<
|
140 |
-
<
|
141 |
-
<
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
<
|
146 |
-
<
|
147 |
-
<
|
148 |
-
<
|
149 |
-
<
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
<
|
161 |
-
<
|
162 |
-
<
|
163 |
-
<
|
164 |
-
|
165 |
-
|
166 |
-
<
|
167 |
-
|
168 |
-
|
169 |
-
<
|
170 |
-
<
|
171 |
-
<
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
<
|
186 |
-
<
|
187 |
-
<
|
188 |
-
<
|
189 |
-
|
190 |
-
|
191 |
-
<
|
192 |
-
|
193 |
-
|
194 |
-
<
|
195 |
-
<
|
196 |
-
<
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
<
|
212 |
-
<
|
213 |
-
<
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
|
|
|
|
|
|
220 |
</config>
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<sections>
|
4 |
+
<payment>
|
5 |
+
<groups>
|
6 |
+
<ccsave translate="label">
|
7 |
+
<fields>
|
8 |
+
<charge_type translate="label">
|
9 |
+
<label>Payment Charge Type</label>
|
10 |
+
<frontend_type>select</frontend_type>
|
11 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
12 |
+
<sort_order>200</sort_order>
|
13 |
+
<show_in_default>1</show_in_default>
|
14 |
+
<show_in_website>1</show_in_website>
|
15 |
+
<show_in_store>0</show_in_store>
|
16 |
+
</charge_type>
|
17 |
+
<charge_value translate="label">
|
18 |
+
<label>Payment Charge</label>
|
19 |
+
<frontend_type>text</frontend_type>
|
20 |
+
<sort_order>201</sort_order>
|
21 |
+
<show_in_default>1</show_in_default>
|
22 |
+
<show_in_website>1</show_in_website>
|
23 |
+
<show_in_store>0</show_in_store>
|
24 |
+
</charge_value>
|
25 |
+
</fields>
|
26 |
+
</ccsave>
|
27 |
+
<checkmo translate="label">
|
28 |
+
<fields>
|
29 |
+
<charge_type translate="label">
|
30 |
+
<label>Payment Charge Type</label>
|
31 |
+
<frontend_type>select</frontend_type>
|
32 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
33 |
+
<sort_order>200</sort_order>
|
34 |
+
<show_in_default>1</show_in_default>
|
35 |
+
<show_in_website>1</show_in_website>
|
36 |
+
<show_in_store>0</show_in_store>
|
37 |
+
</charge_type>
|
38 |
+
<charge_value translate="label">
|
39 |
+
<label>Payment Charge</label>
|
40 |
+
<frontend_type>text</frontend_type>
|
41 |
+
<sort_order>201</sort_order>
|
42 |
+
<show_in_default>1</show_in_default>
|
43 |
+
<show_in_website>1</show_in_website>
|
44 |
+
<show_in_store>0</show_in_store>
|
45 |
+
</charge_value>
|
46 |
+
</fields>
|
47 |
+
</checkmo>
|
48 |
+
<free translate="label">
|
49 |
+
<fields>
|
50 |
+
<charge_type translate="label">
|
51 |
+
<label>Payment Charge Type</label>
|
52 |
+
<frontend_type>select</frontend_type>
|
53 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
54 |
+
<sort_order>200</sort_order>
|
55 |
+
<show_in_default>1</show_in_default>
|
56 |
+
<show_in_website>1</show_in_website>
|
57 |
+
<show_in_store>0</show_in_store>
|
58 |
+
</charge_type>
|
59 |
+
<charge_value translate="label">
|
60 |
+
<label>Payment Charge</label>
|
61 |
+
<frontend_type>text</frontend_type>
|
62 |
+
<sort_order>201</sort_order>
|
63 |
+
<show_in_default>1</show_in_default>
|
64 |
+
<show_in_website>1</show_in_website>
|
65 |
+
<show_in_store>0</show_in_store>
|
66 |
+
</charge_value>
|
67 |
+
</fields>
|
68 |
+
</free>
|
69 |
+
<purchaseorder translate="label">
|
70 |
+
<fields>
|
71 |
+
<charge_type translate="label">
|
72 |
+
<label>Payment Charge Type</label>
|
73 |
+
<frontend_type>select</frontend_type>
|
74 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
75 |
+
<sort_order>200</sort_order>
|
76 |
+
<show_in_default>1</show_in_default>
|
77 |
+
<show_in_website>1</show_in_website>
|
78 |
+
<show_in_store>0</show_in_store>
|
79 |
+
</charge_type>
|
80 |
+
<charge_value translate="label">
|
81 |
+
<label>Payment Charge</label>
|
82 |
+
<frontend_type>text</frontend_type>
|
83 |
+
<sort_order>201</sort_order>
|
84 |
+
<show_in_default>1</show_in_default>
|
85 |
+
<show_in_website>1</show_in_website>
|
86 |
+
<show_in_store>0</show_in_store>
|
87 |
+
</charge_value>
|
88 |
+
</fields>
|
89 |
+
</purchaseorder>
|
90 |
+
<otp translate="label">
|
91 |
+
<fields>
|
92 |
+
<charge_type translate="label">
|
93 |
+
<label>Payment Charge Type</label>
|
94 |
+
<frontend_type>select</frontend_type>
|
95 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
96 |
+
<sort_order>200</sort_order>
|
97 |
+
<show_in_default>1</show_in_default>
|
98 |
+
<show_in_website>1</show_in_website>
|
99 |
+
<show_in_store>0</show_in_store>
|
100 |
+
</charge_type>
|
101 |
+
<charge_value translate="label">
|
102 |
+
<label>Payment Charge</label>
|
103 |
+
<frontend_type>text</frontend_type>
|
104 |
+
<sort_order>201</sort_order>
|
105 |
+
<show_in_default>1</show_in_default>
|
106 |
+
<show_in_website>1</show_in_website>
|
107 |
+
<show_in_store>0</show_in_store>
|
108 |
+
</charge_value>
|
109 |
+
</fields>
|
110 |
+
</otp>
|
111 |
+
<cashondelivery translate="label">
|
112 |
+
<fields>
|
113 |
+
<charge_type translate="label">
|
114 |
+
<label>Payment Charge Type</label>
|
115 |
+
<frontend_type>select</frontend_type>
|
116 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
117 |
+
<sort_order>200</sort_order>
|
118 |
+
<show_in_default>1</show_in_default>
|
119 |
+
<show_in_website>1</show_in_website>
|
120 |
+
<show_in_store>0</show_in_store>
|
121 |
+
</charge_type>
|
122 |
+
<charge_value translate="label">
|
123 |
+
<label>Payment Charge</label>
|
124 |
+
<frontend_type>text</frontend_type>
|
125 |
+
<sort_order>201</sort_order>
|
126 |
+
<show_in_default>1</show_in_default>
|
127 |
+
<show_in_website>1</show_in_website>
|
128 |
+
<show_in_store>0</show_in_store>
|
129 |
+
</charge_value>
|
130 |
+
</fields>
|
131 |
+
</cashondelivery>
|
132 |
+
<authorizenet translate="label">
|
133 |
+
<fields>
|
134 |
+
<charge_type translate="label">
|
135 |
+
<label>Payment Charge Type</label>
|
136 |
+
<frontend_type>select</frontend_type>
|
137 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
138 |
+
<sort_order>200</sort_order>
|
139 |
+
<show_in_default>1</show_in_default>
|
140 |
+
<show_in_website>1</show_in_website>
|
141 |
+
<show_in_store>0</show_in_store>
|
142 |
+
</charge_type>
|
143 |
+
<charge_value translate="label">
|
144 |
+
<label>Payment Charge</label>
|
145 |
+
<frontend_type>text</frontend_type>
|
146 |
+
<sort_order>201</sort_order>
|
147 |
+
<show_in_default>1</show_in_default>
|
148 |
+
<show_in_website>1</show_in_website>
|
149 |
+
<show_in_store>0</show_in_store>
|
150 |
+
</charge_value>
|
151 |
+
</fields>
|
152 |
+
</authorizenet>
|
153 |
+
</groups>
|
154 |
+
</payment>
|
155 |
+
<payment>
|
156 |
+
<groups>
|
157 |
+
<paypal_payment_solutions>
|
158 |
+
<fields>
|
159 |
+
<charge_type translate="label">
|
160 |
+
<label>Payment Charge Type</label>
|
161 |
+
<frontend_type>select</frontend_type>
|
162 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
163 |
+
<sort_order>200</sort_order>
|
164 |
+
<show_in_default>1</show_in_default>
|
165 |
+
<show_in_website>1</show_in_website>
|
166 |
+
<show_in_store>0</show_in_store>
|
167 |
+
</charge_type>
|
168 |
+
<charge_value translate="label">
|
169 |
+
<label>Payment Charge</label>
|
170 |
+
<frontend_type>text</frontend_type>
|
171 |
+
<sort_order>201</sort_order>
|
172 |
+
<show_in_default>1</show_in_default>
|
173 |
+
<show_in_website>1</show_in_website>
|
174 |
+
<show_in_store>0</show_in_store>
|
175 |
+
</charge_value>
|
176 |
+
</fields>
|
177 |
+
</paypal_payment_solutions>
|
178 |
+
</groups>
|
179 |
+
</payment>
|
180 |
+
<paypal>
|
181 |
+
<groups>
|
182 |
+
<account>
|
183 |
+
<fields>
|
184 |
+
<charge_type translate="label">
|
185 |
+
<label>Payment Charge Type</label>
|
186 |
+
<frontend_type>select</frontend_type>
|
187 |
+
<source_model>paymentcharge/system_config_source_chargetype</source_model>
|
188 |
+
<sort_order>200</sort_order>
|
189 |
+
<show_in_default>1</show_in_default>
|
190 |
+
<show_in_website>1</show_in_website>
|
191 |
+
<show_in_store>0</show_in_store>
|
192 |
+
</charge_type>
|
193 |
+
<charge_value translate="label">
|
194 |
+
<label>Payment Charge</label>
|
195 |
+
<frontend_type>text</frontend_type>
|
196 |
+
<sort_order>201</sort_order>
|
197 |
+
<show_in_default>1</show_in_default>
|
198 |
+
<show_in_website>1</show_in_website>
|
199 |
+
<show_in_store>0</show_in_store>
|
200 |
+
</charge_value>
|
201 |
+
</fields>
|
202 |
+
</account>
|
203 |
+
</groups>
|
204 |
+
</paypal>
|
205 |
+
<sales>
|
206 |
+
<groups>
|
207 |
+
<totals_sort translate="label" module="sales">
|
208 |
+
<tab>sales</tab>
|
209 |
+
<fields>
|
210 |
+
<payment_charge translate="label">
|
211 |
+
<label>Payment Charge</label>
|
212 |
+
<frontend_type>text</frontend_type>
|
213 |
+
<sort_order>3</sort_order>
|
214 |
+
<show_in_default>1</show_in_default>
|
215 |
+
<show_in_website>1</show_in_website>
|
216 |
+
<show_in_store>0</show_in_store>
|
217 |
+
</payment_charge>
|
218 |
+
</fields>
|
219 |
+
</totals_sort>
|
220 |
+
</groups>
|
221 |
+
</sales>
|
222 |
+
</sections>
|
223 |
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>flywebdesign_paypalfee</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -14,9 +14,9 @@ It provides the functionality to set different payment fee/charge for all paymen
|
|
14 |
In the backend you can fill in a fixed price or percentage of the subtotal to add to the amount the customer has to pay.</description>
|
15 |
<notes>Add additional payment fees to payment methods</notes>
|
16 |
<authors><author><name>Fly Webdesign</name><user>flyweb</user><email>info@flywebdesign.nl</email></author></authors>
|
17 |
-
<date>2012-
|
18 |
-
<time>09:
|
19 |
-
<contents><target name="mageetc"><dir name="modules"><file name="FlyWebdesign_PaypalFee.xml" hash="c07031f7f9da066befc127abc8c766f8"/></dir></target><target name="magelocal"><dir name="FlyWebdesign"><dir name="PaypalFee"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="99ccd5759d9070540bfba617f637b2d8"/></dir><dir name="Invoice"><file name="Totals.php" hash="2b0e3ee138df4503062e3a6645cd8bc1"/></dir><file name="Totals.php" hash="3bbb080ce185a4102345bca3e73c1583"/></dir><file name="Totals.php" hash="2a91e0feadf1e7f25ba2f8d01cbb8b4d"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="e37228644674a2f0950b34bd61dcc675"/></dir><dir name="Invoice"><file name="Totals.php" hash="4d81572c4b68ba0b7ee1c4f38e59022e"/></dir><file name="Totals.php" hash="f2a13692a95ca921af9cd1f090731835"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="b33e0d07880993c95c3457115943fe5c"/><file name="system.xml" hash="
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>flywebdesign_paypalfee</name>
|
4 |
+
<version>0.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
14 |
In the backend you can fill in a fixed price or percentage of the subtotal to add to the amount the customer has to pay.</description>
|
15 |
<notes>Add additional payment fees to payment methods</notes>
|
16 |
<authors><author><name>Fly Webdesign</name><user>flyweb</user><email>info@flywebdesign.nl</email></author></authors>
|
17 |
+
<date>2012-08-22</date>
|
18 |
+
<time>09:15:10</time>
|
19 |
+
<contents><target name="mageetc"><dir name="modules"><file name="FlyWebdesign_PaypalFee.xml" hash="c07031f7f9da066befc127abc8c766f8"/></dir></target><target name="magelocal"><dir name="FlyWebdesign"><dir name="PaypalFee"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="99ccd5759d9070540bfba617f637b2d8"/></dir><dir name="Invoice"><file name="Totals.php" hash="2b0e3ee138df4503062e3a6645cd8bc1"/></dir><file name="Totals.php" hash="3bbb080ce185a4102345bca3e73c1583"/></dir><file name="Totals.php" hash="2a91e0feadf1e7f25ba2f8d01cbb8b4d"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="e37228644674a2f0950b34bd61dcc675"/></dir><dir name="Invoice"><file name="Totals.php" hash="4d81572c4b68ba0b7ee1c4f38e59022e"/></dir><file name="Totals.php" hash="f2a13692a95ca921af9cd1f090731835"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="b33e0d07880993c95c3457115943fe5c"/><file name="system.xml" hash="cf05881d5a1dfe470ecbe5394738fc8d"/></dir><dir name="Helper"><file name="Data.php" hash="779a54809ee04904be5baedeca294524"/></dir><dir name="Model"><dir name="Paypal"><file name="Cart.php" hash="292c82a59f52447e67837f478818b8d9"/></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Paymentcharge.php" hash="5e8be36c3c91891dd5b9d3a4ebeef1c8"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Paymentcharge.php" hash="dce4cb36f08cb7e1146d25d9dcb5f7f5"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Paymentcharge.php" hash="517eee927f1ac8ca4f082f14e52e46f4"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Chargetype.php" hash="4c281a3c37d64567946829cbadf1d905"/></dir></dir></dir></dir><dir name="sql"><dir name="paymentcharge_setup"><file name="mysql4-install-0.1.0.php" hash="8135c131114d352519c92b44b10dfb45"/></dir></dir></dir></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|