Fruugo_Integration - Version 1.0.3

Version Notes

- Use a custom payment method named "Fruugo Payment Method" for Fruugo orders

Download this release

Release Info

Developer inoutput.io
Extension Fruugo_Integration
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

app/code/community/Fruugo/Integration/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/Helper/Defines.php CHANGED
@@ -25,4 +25,5 @@ class Fruugo_Integration_Helper_Defines extends Mage_Core_Helper_Abstract
25
  const FRUUGO_ORDERS_ENDPOINT = 'https://www.fruugo.com/orders';
26
  const FRUUGO_COUNTRIES_ENDPOINT = 'http://mintegproxy.fruugo.net/feeds/FruugoCountriesXML.xml';
27
  const FRUUGO_COUNTRIES_FILE_NAME = 'fruugo_countries.json';
 
28
  }
25
  const FRUUGO_ORDERS_ENDPOINT = 'https://www.fruugo.com/orders';
26
  const FRUUGO_COUNTRIES_ENDPOINT = 'http://mintegproxy.fruugo.net/feeds/FruugoCountriesXML.xml';
27
  const FRUUGO_COUNTRIES_FILE_NAME = 'fruugo_countries.json';
28
+ const FRUUGO_PAYMENT_METHOD = 'fruugopayment';
29
  }
app/code/community/Fruugo/Integration/Helper/OrdersFeedProcessor.php CHANGED
@@ -205,7 +205,7 @@ class Fruugo_Integration_OrdersFeedProcessor extends Mage_Core_Helper_Abstract
205
  $shippingAddress = $quote->getShippingAddress()->addData($addressData);
206
 
207
  // set payment method
208
- $paymentMethod = Mage::getStoreConfig('integration_options/orders_options/payment_method');
209
  $shippingAddress->setCollectShippingRates(true)->collectShippingRates()
210
  ->setShippingMethod('flatrate_flatrate')->setPaymentMethod($paymentMethod);
211
  $quote->getPayment()->importData(array('method' => $paymentMethod));
205
  $shippingAddress = $quote->getShippingAddress()->addData($addressData);
206
 
207
  // set payment method
208
+ $paymentMethod = Fruugo_Integration_Helper_Defines::FRUUGO_PAYMENT_METHOD;
209
  $shippingAddress->setCollectShippingRates(true)->collectShippingRates()
210
  ->setShippingMethod('flatrate_flatrate')->setPaymentMethod($paymentMethod);
211
  $quote->getPayment()->importData(array('method' => $paymentMethod));
app/code/community/Fruugo/Integration/Model/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/Model/Adminhtml/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/Model/Adminhtml/System/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/Model/Adminhtml/System/Config/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/Model/{Adminhtml/System/Config/Source/OrderPaymentMethod.php → Payment.php} RENAMED
@@ -20,27 +20,9 @@
20
  * If not, see <http://www.gnu.org/licenses/>.
21
  */
22
 
23
- /**
24
- * Used in creating options for Fruugo product descritption type
25
- *
26
- */
27
- class Fruugo_Integration_Model_Adminhtml_System_Config_Source_OrderPaymentMethod
28
  {
29
- /**
30
- * Options getter
31
- *
32
- * @return array
33
- */
34
- public function toOptionArray()
35
- {
36
- $paymentMethods = array();
37
- $allActivePaymentMethods = Mage::getModel('payment/config')->getActiveMethods();
38
-
39
- foreach ($allActivePaymentMethods as $key => $value) {
40
- $label = $paymentTitle = Mage::getStoreConfig('payment/'.$key.'/title');
41
- array_push($paymentMethods, array('value' => $key, 'label' => $label));
42
- }
43
-
44
- return $paymentMethods;
45
- }
46
  }
20
  * If not, see <http://www.gnu.org/licenses/>.
21
  */
22
 
23
+ class Fruugo_Integration_Model_Payment extends Mage_Payment_Model_Method_Abstract
 
 
 
 
24
  {
25
+ protected $_code = Fruugo_Integration_Helper_Defines::FRUUGO_PAYMENT_METHOD;
26
+ protected $_canUseCheckout = false;
27
+ protected $_canUseForMultishipping = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
app/code/community/Fruugo/Integration/data/.DS_Store ADDED
Binary file
app/code/community/Fruugo/Integration/design/adminhtml/default/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/design/adminhtml/default/default/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/design/adminhtml/default/default/template/.DS_Store CHANGED
Binary file
app/code/community/Fruugo/Integration/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Fruugo_Integration>
27
- <version>1.0.2</version> <!-- Version number of your module -->
28
  </Fruugo_Integration>
29
  </modules>
30
  <global>
@@ -133,6 +133,14 @@
133
  </acl>
134
  </adminhtml>
135
  <default>
 
 
 
 
 
 
 
 
136
  <integration_options>
137
  <products_options>
138
  <export_frequency>12</export_frequency>
@@ -140,7 +148,6 @@
140
  </products_options>
141
  <orders_options>
142
  <fetch_frequency>4</fetch_frequency>
143
- <payment_method>checkmo</payment_method>
144
  </orders_options>
145
  </integration_options>
146
  </default>
24
  <config>
25
  <modules>
26
  <Fruugo_Integration>
27
+ <version>1.0.3</version> <!-- Version number of your module -->
28
  </Fruugo_Integration>
29
  </modules>
30
  <global>
133
  </acl>
134
  </adminhtml>
135
  <default>
136
+ <payment>
137
+ <fruugopayment>
138
+ <active>1</active>
139
+ <model>integration/Payment</model>
140
+ <title>Fruugo Payment Method</title>
141
+ </fruugopayment>
142
+ </payment>
143
+
144
  <integration_options>
145
  <products_options>
146
  <export_frequency>12</export_frequency>
148
  </products_options>
149
  <orders_options>
150
  <fetch_frequency>4</fetch_frequency>
 
151
  </orders_options>
152
  </integration_options>
153
  </default>
app/code/community/Fruugo/Integration/etc/system.xml CHANGED
@@ -29,6 +29,37 @@
29
  </integration>
30
  </tabs>
31
  <sections>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  <integration_options translate="label" module="integration">
33
  <label>Integration Options</label>
34
  <tab>integration</tab>
@@ -117,16 +148,6 @@
117
  <show_in_store>1</show_in_store>
118
  <comment>Set intervals of fetching orders from Fruugo</comment>
119
  </fetch_frequency>
120
- <payment_method translate="label">
121
- <label>Payment Method</label>
122
- <frontend_type>select</frontend_type>
123
- <source_model>Fruugo_Integration_Model_Adminhtml_System_Config_Source_OrderPaymentMethod</source_model>
124
- <sort_order>40</sort_order>
125
- <show_in_default>1</show_in_default>
126
- <show_in_website>1</show_in_website>
127
- <show_in_store>1</show_in_store>
128
- <comment>Choose payment method for Fruugo order</comment>
129
- </payment_method>
130
  <dev_mode translate="label">
131
  <label>Enable Development Mode</label>
132
  <frontend_type>select</frontend_type>
@@ -161,4 +182,4 @@
161
  </groups>
162
  </integration_options>
163
  </sections>
164
- </config>
29
  </integration>
30
  </tabs>
31
  <sections>
32
+ <payment>
33
+ <groups>
34
+ <fruugopayment translate="label">
35
+ <label>Fruugo Payment Method</label>
36
+ <sort_order>100</sort_order>
37
+ <show_in_default>0</show_in_default>
38
+ <show_in_website>0</show_in_website>
39
+ <show_in_store>0</show_in_store>
40
+ <fields>
41
+ <active translate="label">
42
+ <label>Enabled</label>
43
+ <frontend_type>select</frontend_type>
44
+ <source_model>adminhtml/system_config_source_yesno</source_model>
45
+ <sort_order>1</sort_order>
46
+ <show_in_default>0</show_in_default>
47
+ <show_in_website>0</show_in_website>
48
+ <show_in_store>0</show_in_store>
49
+ </active>
50
+ <title translate="label">
51
+ <label>Title</label>
52
+ <frontend_type>text</frontend_type>
53
+ <sort_order>3</sort_order>
54
+ <show_in_default>0</show_in_default>
55
+ <show_in_website>0</show_in_website>
56
+ <show_in_store>0</show_in_store>
57
+ </title>
58
+ </fields>
59
+ </fruugopayment>
60
+ </groups>
61
+ </payment>
62
+
63
  <integration_options translate="label" module="integration">
64
  <label>Integration Options</label>
65
  <tab>integration</tab>
148
  <show_in_store>1</show_in_store>
149
  <comment>Set intervals of fetching orders from Fruugo</comment>
150
  </fetch_frequency>
 
 
 
 
 
 
 
 
 
 
151
  <dev_mode translate="label">
152
  <label>Enable Development Mode</label>
153
  <frontend_type>select</frontend_type>
182
  </groups>
183
  </integration_options>
184
  </sections>
185
+ </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fruugo_Integration</name>
4
- <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/">GNU</license>
7
  <channel>community</channel>
@@ -14,11 +14,11 @@ This plugin mainly performs two tasks:&#xD;
14
  - Generate products xml feed from Magento periodically on a specified frequency.&#xD;
15
  &#xD;
16
  - Read from Fruugo Rrders API periodically on a specified frequency, and notifies Magento order events to Fruugo Orders API.</description>
17
- <notes>- Fixed error with method call inside empty() prior to php 5.4</notes>
18
  <authors><author><name>inoutput.io</name><user>inoutput</user><email>support@inoutput.io</email></author><author><name>fruugo.com</name><user>Fruugo</user><email>support@fruugo.com</email></author></authors>
19
- <date>2015-08-14</date>
20
- <time>13:26:23</time>
21
- <contents><target name="magecommunity"><dir name="Fruugo"><dir name="Integration"><dir name="Block"><dir name="Catalog"><dir name="Product"><file name="Tab.php" hash="412d5a38c07f78fd56e3509809038008"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="c0c814fd19a01064c6737a7a33f53c0a"/></dir><file name="Refreshcountriesbutton.php" hash="5a7e3af708dd470725981ec187b2c07d"/><dir name="Sales"><dir name="Order"><dir name="View"><file name="Tabs.php" hash="d98faeeede3c06d5f28f8f9731438314"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="55b80dc008f359a78148ef0fc1722049"/></dir><file name=".DS_Store" hash="bbae86b9af10fdcbf50c8644074ed58c"/></dir><file name=".DS_Store" hash="26d674cc95490ff01df42facb067195e"/></dir><dir name="Helper"><file name="ConfigLoader.php" hash="f930d687b44fe0a3a9e70383e0500a7c"/><file name="Data.php" hash="866fe8e1ea50749218d6efcab8454f28"/><file name="Defines.php" hash="038845512a7e052d1a78ff7bae8d5223"/><file name="FruugoCountriesSeeder.php" hash="68949469a1b1ce6a605fccd132e9e3c0"/><file name="Logger.php" hash="ac482415c8c1bc6643c81779f3d580c7"/><file name="OrdersFeedProcessor.php" hash="22169b8147c5f0f550fbadcfd685c886"/><file name="ProductsFeedGenerator.php" hash="925303775a6a70f68e9b3467b9a4861b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><file name="OrderCron.php" hash="8187697b999171b8940be7e5306a3bc7"/><file name="ProductCron.php" hash="a8bdd62ad14cdb85d9ef0ae2b85cecad"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Source"><file name="Hour.php" hash="fab1337425532af32cf8642b8b244930"/><file name="OrderPaymentMethod.php" hash="e6099a75b7b90b0f2ec23cc67adc88f9"/><file name="ProductDescriptionType.php" hash="578f3cec24605d376d4014cf1e38d8cd"/></dir><file name=".DS_Store" hash="31b6ce4b49f1589852adb4fb6ee80e6d"/></dir><file name=".DS_Store" hash="782e716ac0ede1e358eef842ea11a6e7"/></dir><file name=".DS_Store" hash="8d9a68bec4c8fd63565202d10541e71b"/></dir><file name="Countries.php" hash="a23378525c616fd87c5589933aec48c6"/><file name="CronJobObserver.php" hash="e8ddc80c37a3ef2b4ce025879f04e7c0"/><file name="Observer.php" hash="1e16ebea05d59b472cc9f279965cd17e"/><dir name="Resource"><dir name="Countries"><file name="Collection.php" hash="618a95f1535d4c63724a2f7eaebf6c2b"/></dir><file name="Countries.php" hash="dc3da7aec3c3472a4ccd73e2b2f255f0"/><dir name="Shipment"><file name="Collection.php" hash="66d038f890e36403f9ffb2e283e88daf"/></dir><file name="Shipment.php" hash="d8c13444ba5089cf606241f2c7c9a87d"/></dir><file name="Shipment.php" hash="23b1c0b4bc4e29cb137c9b3819723a63"/><file name=".DS_Store" hash="8d9d24e0109f860450c1177ba6d2c349"/></dir><dir name="controllers"><file name="OrdersController.php" hash="a2d9d2f4c916c376f146cfccecb4110d"/><file name="PackinglistController.php" hash="d76ac40e81f51635a073fb20492883f8"/><file name="ProductsController.php" hash="4bdd77b2e4c536eaa0a4c3c108871bf2"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name=".gitignore" hash="acd4f929fc2eebc0a25a1b7a06b4f56f"/></dir><dir name="data"><dir name="fruugo_attributes_setup"><file name="data-install-0.1.1.php" hash="73a6210fdb6c5a2edfa0222a6a239e9a"/></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="integration.xml" hash="3f173b27f9f483c00b33b713c0bad737"/></dir><dir name="template"><dir name="integration"><dir name="catalog"><dir name="product"><file name="fruugo-allowed-countries.phtml" hash="066098b4583e6bd3882c01645bd9ed1d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="40954a645387438ecf1cfd83dd604862"/></dir><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="packinglist.phtml" hash="9ec64369d5c23043976b08573f3435dd"/></dir><file name=".DS_Store" hash="d26113bef03e4a93d3b16a9aacd87cfc"/></dir><file name=".DS_Store" hash="96bd4b45d72afef63db9e4ca6973ea7a"/></dir><file name=".DS_Store" hash="6ab1f047e942f2d939c7cccba9d7b5cf"/></dir><file name=".DS_Store" hash="5e3b5dca196bbd2c9702ade45af32abd"/></dir><file name=".DS_Store" hash="fad9ab44b9e0c3aec3b58257268bd566"/></dir><file name=".DS_Store" hash="7191a6af595e7b7a276ff09ac9998bc4"/></dir><file name=".DS_Store" hash="f7fd69a83e00bf9d44f673e709c83394"/></dir><file name=".DS_Store" hash="3d0d0b6a6dd6a3990a86b24a0e6799f4"/></dir><file name=".DS_Store" hash="466e7eaa43e0d7602b4cf93b7e8e7c85"/></dir><dir name="etc"><file name="config.xml" hash="e12d0805503ead6bbefc8689951b7c2b"/><file name="system.xml" hash="4b71753bf9baf263bd30b463c97c434f"/></dir><dir name="sql"><dir name="fruugo_attributes_setup"><file name="install-0.1.1.php" hash="326629d7305e3c3b20aaf8d97de1f17b"/></dir></dir><file name=".DS_Store" hash="2019420bbb5a661af36e8491407a297d"/><file name=".gitignore" hash="f0cb20b35e2469e9e9617f658ed452a5"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="integration.xml" hash="3f173b27f9f483c00b33b713c0bad737"/></dir><dir name="template"><dir name="integration"><dir name="catalog"><dir name="product"><file name="fruugo-allowed-countries.phtml" hash="066098b4583e6bd3882c01645bd9ed1d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="40954a645387438ecf1cfd83dd604862"/></dir><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="packinglist.phtml" hash="9ec64369d5c23043976b08573f3435dd"/></dir><file name=".DS_Store" hash="d26113bef03e4a93d3b16a9aacd87cfc"/></dir><file name=".DS_Store" hash="96bd4b45d72afef63db9e4ca6973ea7a"/></dir><file name=".DS_Store" hash="6ab1f047e942f2d939c7cccba9d7b5cf"/></dir><file name=".DS_Store" hash="5e3b5dca196bbd2c9702ade45af32abd"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fruugo_Integration.xml" hash="b01dcb5088d487517bd87af216d6d7c8"/></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.4.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.8</min><max/></package></required></dependencies>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fruugo_Integration</name>
4
+ <version>1.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/">GNU</license>
7
  <channel>community</channel>
14
  - Generate products xml feed from Magento periodically on a specified frequency.&#xD;
15
  &#xD;
16
  - Read from Fruugo Rrders API periodically on a specified frequency, and notifies Magento order events to Fruugo Orders API.</description>
17
+ <notes>- Use a custom payment method named "Fruugo Payment Method" for Fruugo orders</notes>
18
  <authors><author><name>inoutput.io</name><user>inoutput</user><email>support@inoutput.io</email></author><author><name>fruugo.com</name><user>Fruugo</user><email>support@fruugo.com</email></author></authors>
19
+ <date>2015-09-29</date>
20
+ <time>06:31:23</time>
21
+ <contents><target name="magecommunity"><dir name="Fruugo"><dir name="Integration"><dir name="Block"><dir name="Catalog"><dir name="Product"><file name="Tab.php" hash="412d5a38c07f78fd56e3509809038008"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="c0c814fd19a01064c6737a7a33f53c0a"/></dir><file name="Refreshcountriesbutton.php" hash="5a7e3af708dd470725981ec187b2c07d"/><dir name="Sales"><dir name="Order"><dir name="View"><file name="Tabs.php" hash="d98faeeede3c06d5f28f8f9731438314"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="55b80dc008f359a78148ef0fc1722049"/></dir><file name=".DS_Store" hash="bbae86b9af10fdcbf50c8644074ed58c"/></dir><file name=".DS_Store" hash="26d674cc95490ff01df42facb067195e"/></dir><dir name="Helper"><file name="ConfigLoader.php" hash="f930d687b44fe0a3a9e70383e0500a7c"/><file name="Data.php" hash="866fe8e1ea50749218d6efcab8454f28"/><file name="Defines.php" hash="a97616fe105332db06292c68eabecdf1"/><file name="FruugoCountriesSeeder.php" hash="68949469a1b1ce6a605fccd132e9e3c0"/><file name="Logger.php" hash="ac482415c8c1bc6643c81779f3d580c7"/><file name="OrdersFeedProcessor.php" hash="9e78e9e84c14f54d137c1da3c7502166"/><file name="ProductsFeedGenerator.php" hash="925303775a6a70f68e9b3467b9a4861b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><file name="OrderCron.php" hash="8187697b999171b8940be7e5306a3bc7"/><file name="ProductCron.php" hash="a8bdd62ad14cdb85d9ef0ae2b85cecad"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Source"><file name="Hour.php" hash="fab1337425532af32cf8642b8b244930"/><file name="ProductDescriptionType.php" hash="578f3cec24605d376d4014cf1e38d8cd"/></dir><file name=".DS_Store" hash="d20a4947c565c165a828059468e40615"/></dir><file name=".DS_Store" hash="9edeb8e2463be37d84dbbb69544fcf33"/></dir><file name=".DS_Store" hash="2429e61ffca453f96749fe4e336e1aa6"/></dir><file name="Countries.php" hash="a23378525c616fd87c5589933aec48c6"/><file name="CronJobObserver.php" hash="e8ddc80c37a3ef2b4ce025879f04e7c0"/><file name="Observer.php" hash="1e16ebea05d59b472cc9f279965cd17e"/><file name="Payment.php" hash="4e7d2d72e7662ea71c178d85c9b9bd6c"/><dir name="Resource"><dir name="Countries"><file name="Collection.php" hash="618a95f1535d4c63724a2f7eaebf6c2b"/></dir><file name="Countries.php" hash="dc3da7aec3c3472a4ccd73e2b2f255f0"/><dir name="Shipment"><file name="Collection.php" hash="66d038f890e36403f9ffb2e283e88daf"/></dir><file name="Shipment.php" hash="d8c13444ba5089cf606241f2c7c9a87d"/></dir><file name="Shipment.php" hash="23b1c0b4bc4e29cb137c9b3819723a63"/><file name=".DS_Store" hash="79784d7aed8dd8e37e943705186d586f"/></dir><dir name="controllers"><file name="OrdersController.php" hash="a2d9d2f4c916c376f146cfccecb4110d"/><file name="PackinglistController.php" hash="d76ac40e81f51635a073fb20492883f8"/><file name="ProductsController.php" hash="4bdd77b2e4c536eaa0a4c3c108871bf2"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name=".gitignore" hash="acd4f929fc2eebc0a25a1b7a06b4f56f"/></dir><dir name="data"><dir name="fruugo_attributes_setup"><file name="data-install-0.1.1.php" hash="73a6210fdb6c5a2edfa0222a6a239e9a"/></dir><file name=".DS_Store" hash="cd195b6eaf08907f8b960d088eb658ec"/></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="integration.xml" hash="3f173b27f9f483c00b33b713c0bad737"/></dir><dir name="template"><dir name="integration"><dir name="catalog"><dir name="product"><file name="fruugo-allowed-countries.phtml" hash="066098b4583e6bd3882c01645bd9ed1d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="40954a645387438ecf1cfd83dd604862"/></dir><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="packinglist.phtml" hash="9ec64369d5c23043976b08573f3435dd"/></dir><file name=".DS_Store" hash="d26113bef03e4a93d3b16a9aacd87cfc"/></dir><file name=".DS_Store" hash="96bd4b45d72afef63db9e4ca6973ea7a"/></dir><file name=".DS_Store" hash="6ab1f047e942f2d939c7cccba9d7b5cf"/></dir><file name=".DS_Store" hash="5e3b5dca196bbd2c9702ade45af32abd"/></dir><file name=".DS_Store" hash="8140bb817e4002386b236a695bbe7526"/></dir><file name=".DS_Store" hash="0553606a64967b5a5e9465482611d59e"/></dir><file name=".DS_Store" hash="3e9bb37c55f91d8adc5fc6c5179e5981"/></dir><file name=".DS_Store" hash="3d0d0b6a6dd6a3990a86b24a0e6799f4"/></dir><file name=".DS_Store" hash="466e7eaa43e0d7602b4cf93b7e8e7c85"/></dir><dir name="etc"><file name="config.xml" hash="b425577e9ba3816d20f4f3f795a16737"/><file name="system.xml" hash="23f4aed73b504d8b2d9dcca61af44fa6"/></dir><dir name="sql"><dir name="fruugo_attributes_setup"><file name="install-0.1.1.php" hash="326629d7305e3c3b20aaf8d97de1f17b"/></dir></dir><file name=".DS_Store" hash="096e2df4172403f529526a3db0fc066b"/><file name=".gitignore" hash="f0cb20b35e2469e9e9617f658ed452a5"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="integration.xml" hash="3f173b27f9f483c00b33b713c0bad737"/></dir><dir name="template"><dir name="integration"><dir name="catalog"><dir name="product"><file name="fruugo-allowed-countries.phtml" hash="066098b4583e6bd3882c01645bd9ed1d"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="40954a645387438ecf1cfd83dd604862"/></dir><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><file name="packinglist.phtml" hash="9ec64369d5c23043976b08573f3435dd"/></dir><file name=".DS_Store" hash="d26113bef03e4a93d3b16a9aacd87cfc"/></dir><file name=".DS_Store" hash="96bd4b45d72afef63db9e4ca6973ea7a"/></dir><file name=".DS_Store" hash="6ab1f047e942f2d939c7cccba9d7b5cf"/></dir><file name=".DS_Store" hash="5e3b5dca196bbd2c9702ade45af32abd"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fruugo_Integration.xml" hash="b01dcb5088d487517bd87af216d6d7c8"/></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.4.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.8</min><max/></package></required></dependencies>
24
  </package>