man4x_mondialrelay - Version 1.4.6

Version Notes

Ajoute la possibilité de choisir le format des étiquettes (A4 ou A5)

Download this release

Release Info

Developer Emmanuel Catrysse
Extension man4x_mondialrelay
Version 1.4.6
Comparing to
See all releases


Code changes from version 1.4.5 to 1.4.6

app/code/community/Man4x/MondialRelay/Model/Carrier/Abstract.php CHANGED
@@ -123,7 +123,10 @@ class Man4x_MondialRelay_Model_Carrier_Abstract extends Mage_Shipping_Model_Carr
123
  $_client = new SoapClient(Mage::getStoreConfig('carriers/mondialrelay/url_ws', true));
124
  $_label = $_client->WSI2_GetEtiquettes($_params)->WSI2_GetEtiquettesResult;
125
 
126
- $_result = ('0' == $_label->STAT) ? self::BASE_URL . $_label->URL_PDF_A5 : $_label->STAT;
 
 
 
127
  return $_result;
128
  }
129
 
123
  $_client = new SoapClient(Mage::getStoreConfig('carriers/mondialrelay/url_ws', true));
124
  $_label = $_client->WSI2_GetEtiquettes($_params)->WSI2_GetEtiquettesResult;
125
 
126
+ $_labelsize = Mage::getStoreConfig('carriers/mondialrelay/label_size', true);
127
+ $_result = ('0' == $_label->STAT) ?
128
+ self::BASE_URL . (('A4' == $_labelsize) ? $_label->URL_PDF_A4 : $_label->URL_PDF_A5)
129
+ : $_label->STAT;
130
  return $_result;
131
  }
132
 
app/code/community/Man4x/MondialRelay/Model/Carrier/_notes/dwsync.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" ?>
2
- <dwsync>
3
- <file name="Abstract.php" local="130335471880000000" remote="130335471880000000" testing="0" />
4
- </dwsync>
 
 
 
 
app/code/community/Man4x/MondialRelay/Model/System/Config/Source/Labelsize.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Copyright (c) 2013 Man4x
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
6
+ * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
7
+ * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
+ *
9
+ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
12
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
13
+ * IN THE SOFTWARE.
14
+ *
15
+ * @project Magento Man4x Mondial Relay Module
16
+ * @desc Available values for parcel collection mode for Mondial Relay
17
+ * @author Emmanuel Catrysse (man4x[@]hotmail[.]fr)
18
+ * @license http://www.opensource.org/licenses/MIT The MIT License (MIT)
19
+ */
20
+
21
+ class Man4x_MondialRelay_Model_System_Config_Source_Labelsize {
22
+
23
+ public function toOptionArray()
24
+ {
25
+ $_arr = array(
26
+ array(
27
+ 'value' => 'A4',
28
+ 'label' => Mage::helper('mondialrelay')->__('A4'),
29
+ ),
30
+ array(
31
+ 'value' => 'A5',
32
+ 'label' => Mage::helper('mondialrelay')->__('A5'),
33
+ ),
34
+ );
35
+ return $_arr;
36
+ }
37
+
38
+ }
app/code/community/Man4x/MondialRelay/etc/_notes/dwsync.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" ?>
2
- <dwsync>
3
- <file name="config.xml" local="130309197300000000" remote="130309197300000000" testing="0" />
4
- </dwsync>
 
 
 
 
app/code/community/Man4x/MondialRelay/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Man4x_MondialRelay>
5
- <version>1.4.5</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
@@ -127,6 +127,7 @@
127
  <auto_ws>1</auto_ws>
128
  <collection_mode>CCC</collection_mode>
129
  <display_weight>1</display_weight>
 
130
  <sender_address>EXPEDITEUR
131
  Adresse
132
  Adresse (complément)
2
  <config>
3
  <modules>
4
  <Man4x_MondialRelay>
5
+ <version>1.4.6</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
127
  <auto_ws>1</auto_ws>
128
  <collection_mode>CCC</collection_mode>
129
  <display_weight>1</display_weight>
130
+ <label_size>A4</label_size>
131
  <sender_address>EXPEDITEUR
132
  Adresse
133
  Adresse (complément)
app/code/community/Man4x/MondialRelay/etc/system.xml CHANGED
@@ -84,6 +84,7 @@
84
  <show_in_website>1</show_in_website>
85
  <show_in_store>1</show_in_store>
86
  </auto_ws>
 
87
  <collection_mode translate="label">
88
  <label>Parcels collection mode</label>
89
  <frontend_type>select</frontend_type>
@@ -93,6 +94,7 @@
93
  <show_in_website>1</show_in_website>
94
  <show_in_store>1</show_in_store>
95
  </collection_mode>
 
96
  <collection_pickup translate="label">
97
  <label>Collection pick-up code</label>
98
  <depends>
@@ -105,6 +107,16 @@
105
  <show_in_website>1</show_in_website>
106
  <show_in_store>1</show_in_store>
107
  </collection_pickup>
 
 
 
 
 
 
 
 
 
 
108
  <display_weight translate="label">
109
  <label>Add order weight to shipping method title</label>
110
  <frontend_type>select</frontend_type>
84
  <show_in_website>1</show_in_website>
85
  <show_in_store>1</show_in_store>
86
  </auto_ws>
87
+ <!--
88
  <collection_mode translate="label">
89
  <label>Parcels collection mode</label>
90
  <frontend_type>select</frontend_type>
94
  <show_in_website>1</show_in_website>
95
  <show_in_store>1</show_in_store>
96
  </collection_mode>
97
+
98
  <collection_pickup translate="label">
99
  <label>Collection pick-up code</label>
100
  <depends>
107
  <show_in_website>1</show_in_website>
108
  <show_in_store>1</show_in_store>
109
  </collection_pickup>
110
+ -->
111
+ <label_size translate="label">
112
+ <label>Label size</label>
113
+ <frontend_type>select</frontend_type>
114
+ <source_model>mondialrelay/system_config_source_labelsize</source_model>
115
+ <sort_order>188</sort_order>
116
+ <show_in_default>1</show_in_default>
117
+ <show_in_website>1</show_in_website>
118
+ <show_in_store>1</show_in_store>
119
+ </label_size>
120
  <display_weight translate="label">
121
  <label>Add order weight to shipping method title</label>
122
  <frontend_type>select</frontend_type>
app/locale/en_US/Man4x_MondialRelay.csv CHANGED
@@ -1,6 +1,8 @@
1
  "< ","up to "
2
  "(Tracking Code Reserved)","(Tracking Code Reserved)"
3
  "6 digits. See Mondial Relay website for pick-up codes","6 digits. See <a href='http://www.mondialrelay.fr' target='_blank'>Mondial Relay website</a> for pick-up codes"
 
 
4
  "Access Map","Access Map"
5
  "Active","Active"
6
  "Add order weight to shipping method title","Add order weight to shipping method title"
@@ -119,6 +121,7 @@
119
  "Key (Web service)","Key (Web service)"
120
  "Kilogram","Kilogram"
121
  "Labels Printing","Labels Printing"
 
122
  "Leave 0 to prevent free shipping","Leave 0 to prevent free shipping"
123
  "Leave 0 to use basic table rate","Leave 0 to use basic table rate"
124
  "Map & Opening hours","Map & Opening hours"
1
  "< ","up to "
2
  "(Tracking Code Reserved)","(Tracking Code Reserved)"
3
  "6 digits. See Mondial Relay website for pick-up codes","6 digits. See <a href='http://www.mondialrelay.fr' target='_blank'>Mondial Relay website</a> for pick-up codes"
4
+ "A4","A4"
5
+ "A5","A5"
6
  "Access Map","Access Map"
7
  "Active","Active"
8
  "Add order weight to shipping method title","Add order weight to shipping method title"
121
  "Key (Web service)","Key (Web service)"
122
  "Kilogram","Kilogram"
123
  "Labels Printing","Labels Printing"
124
+ "Label size","Label size"
125
  "Leave 0 to prevent free shipping","Leave 0 to prevent free shipping"
126
  "Leave 0 to use basic table rate","Leave 0 to use basic table rate"
127
  "Map & Opening hours","Map & Opening hours"
app/locale/fr_FR/Man4x_MondialRelay.csv CHANGED
@@ -1,6 +1,8 @@
1
  "< ","jusqu'à "
2
  "(Tracking Code Reserved)","(Réservé Code Tracking)"
3
  "6 digits. See Mondial Relay website for pick-up codes","Code à 6 chiffres. Consultez <a href='http://www.mondialrelay.fr' target='_blank'>le site de Mondial Relay</a> pour déterminer celui-ci."
 
 
4
  "Access Map","Plan d'accès"
5
  "Active","Activé"
6
  "Add order weight to shipping method title","Ajout du poids de la commande à la méthode d'expédition"
@@ -119,6 +121,7 @@
119
  "Key (Web service)","Clé (Web Service)"
120
  "Kilogram","Kilogramme"
121
  "Labels Printing","Impression des étiquettes"
 
122
  "Leave 0 to prevent free shipping","Laisser à 0 pour ne pas accorder de franco de port"
123
  "Leave 0 to use basic table rate","Laisser à 0 pour utiliser la grille standard de tarification"
124
  "Map & Opening hours","[Info]"
1
  "< ","jusqu'à "
2
  "(Tracking Code Reserved)","(Réservé Code Tracking)"
3
  "6 digits. See Mondial Relay website for pick-up codes","Code à 6 chiffres. Consultez <a href='http://www.mondialrelay.fr' target='_blank'>le site de Mondial Relay</a> pour déterminer celui-ci."
4
+ "A4","A4"
5
+ "A5","A5"
6
  "Access Map","Plan d'accès"
7
  "Active","Activé"
8
  "Add order weight to shipping method title","Ajout du poids de la commande à la méthode d'expédition"
121
  "Key (Web service)","Clé (Web Service)"
122
  "Kilogram","Kilogramme"
123
  "Labels Printing","Impression des étiquettes"
124
+ "Label size","Format des étiquettes"
125
  "Leave 0 to prevent free shipping","Laisser à 0 pour ne pas accorder de franco de port"
126
  "Leave 0 to use basic table rate","Laisser à 0 pour utiliser la grille standard de tarification"
127
  "Map & Opening hours","[Info]"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>man4x_mondialrelay</name>
4
- <version>1.4.5</version>
5
  <stability>stable</stability>
6
  <license>Massachusetts Institute of Technology License (MITL)</license>
7
  <channel>community</channel>
@@ -13,12 +13,11 @@ WARNING: this module is not compatible with MondialRelay_Pointsrelais unless man
13
  ------------------------------------------------------------&#xD;
14
  (FR) Ce module a &#xE9;t&#xE9; inspir&#xE9; par le module MondialRelay_Pointsrelais disponible sur Magento Connect dans le but de corriger certaines limitations de ce dernier (exp&#xE9;ditions par lot, s&#xE9;lection des points relais sur carte ou par liste, interception des erreurs d'enregistrement...)&#xD;
15
  ATTENTION: ce module n'est pas compatible en l'&#xE9;tat avec le module MondialRelay_Pointsrelais (voir documentation).</description>
16
- <notes>Corrige l'impossibilit&#xE9; de proc&#xE9;der &#xE0; l'exp&#xE9;dition de certaines commandes. Plus pr&#xE9;cis&#xE9;ment, correction du message "Erreur Num&#xE9;ro de client enseigne invalide" qui s'av&#xE9;rait survenir lorsque le patronyme du destinataire &#xE9;tait "trop" long (Merci &#xE0; Julien - heureusement qui y'en a qui suivent ^^ - et, surtout, &#xE0; Mondial Relay pour sa documentation technique tr&#xE8;s fiable et, de mani&#xE8;re g&#xE9;n&#xE9;rale, pour leur collaboration de tous les instants)&#xD;
17
- Corrige l'impossibilit&#xE9; de s&#xE9;lectionner les points relais (oui, c'est f&#xE2;cheux) dans le cas o&#xF9; Mondial Relay est la seule m&#xE9;thode d'exp&#xE9;dition est param&#xE9;tr&#xE9;e.</notes>
18
  <authors><author><name>Emmanuel Catrysse</name><user>Peppermay</user><email>man4x@hotmail.fr</email></author></authors>
19
- <date>2014-05-07</date>
20
- <time>19:11:25</time>
21
- <contents><target name="magecommunity"><dir name="Man4x"><dir name="MondialRelay"><dir name="Block"><dir name="Checkout"><file name="Pickupinfo.php" hash="b774e5e1cca5083c9a84745670a74570"/><file name="Pickuppopup.php" hash="c53b342e9204420d786d8b4fc3650d20"/><file name="Shippingmethods.php" hash="90341019c54dbf5d8e1d5cad5f78c39c"/></dir><dir name="Sales"><dir name="Labelprinting"><file name="Grid.php" hash="1a65b8aa1c348dc5e9a6023892d79723"/></dir><file name="Labelprinting.php" hash="81ebc053dc63066e0a80b24c40f2e13d"/><dir name="Massshipping"><file name="Grid.php" hash="d8fb048cae771ce4e68af7e99da4600b"/></dir><file name="Massshipping.php" hash="7c07785430761c0dbfb774e03787fe2e"/></dir></dir><dir name="Helper"><file name="Data.php" hash="14fc41549fecddbf58b6526bc61748c9"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="9b34af84c59ac65b5ca9f96743c558eb"/><file name="Home.php" hash="1e995970559481c69b92d3de35b929c2"/><file name="Pickup.php" hash="49b54427377802f572aa3b40f0e10c5a"/><dir name="_notes"><file name="dwsync.xml" hash="a494e9d4cf1e2a9cae531cd64db0144e"/></dir></dir><file name="Observer.php" hash="34ed3366f06eb39b58f6016593ee66d1"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Collectionmode.php" hash="42afabe9e62a9ece2b5eb35d0e0883fc"/><file name="Condition.php" hash="e33f3bc3382d364d081ddd7aeaf88554"/><file name="Weightunit.php" hash="57ffe1e480b53851363b5b2a190b3d6d"/></dir><dir name="Validation"><file name="Senderaddress.php" hash="fc948ec1b7b0e8fb78d7e2bfcdee1cbb"/><file name="Tablerate.php" hash="d19a6de215b020bb2ad1f8cd3017b4d5"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="21397051d1e5ecd38b36468c7991a9ec"/><dir name="Sales"><file name="ShippingController.php" hash="d1d78f0b02edf964677700268e4e4062"/></dir></dir><dir name="doc"><file name="guide_man4x_mondialrelay_1_4_0_fr.pdf" hash="c1cba4b3f469096c935268377a932ef2"/></dir><dir name="etc"><dir name="_notes"><file name="dwsync.xml" hash="080663fcb4b12277da7e534655358e9c"/></dir><file name="adminhtml.xml" hash="8c62dc7ecb883783e2e65d46a60b154f"/><file name="config.xml" hash="9c327fc289e86cca941a0b2f0e95897b"/><file name="system.xml" hash="e6af84a3a6b40a3920a54b308cd03c78"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="Man4x_MondialRelay.xml" hash="eaf0e0972f6ab93544fdd8a6ca45a244"/></dir><dir name="template"><dir name="Man4x_MondialRelay"><dir name="paypalexpress"><file name="shippingmethods.phtml" hash="a21211142621711e3a62311a15e583b3"/></dir><file name="pickupinfo.phtml" hash="2dc3181d30a0aa6fd025efed6125e105"/><file name="pickuppopup.phtml" hash="6e5a7e48e007b3e5003ce3dc92b75782"/><file name="shippingmethods.phtml" hash="788c47fc00df61100ebed1d9f8cfd877"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Man4x_MondialRelay.xml" hash="cbf764631c906fbf3b9bcee94199d078"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Man4x_MondialRelay.csv" hash="a67c688d803084ae05cbbfb8df0d806e"/></dir><dir name="fr_FR"><file name="Man4x_MondialRelay.csv" hash="1a64300dfa05e8a4f4f12ed55cce7723"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="Man4x_MondialRelay.css" hash="5d5d0a2daee798a4d8ea5f921c0b8bd4"/></dir><dir name="images"><dir name="Man4x_MondialRelay"><file name="btn_details.png" hash="39a00ac148c2e3dc44bd42670ee74c5b"/><file name="btn_search.png" hash="56fb89eea54a9804059dcd146dfaaadd"/><file name="close_icon.png" hash="f8422d11f273f2690226160682d80f10"/><file name="logo_mondialrelay.gif" hash="95bc996ef1c8fce2b8cc7b0b864d6f52"/><file name="logo_mondialrelay_20.gif" hash="ac7ca03f8638455ce33dd8ca9c17c475"/><file name="mondialrelay_ajax_loading.gif" hash="ef4b7ef99db4254577aac23fff5ff50b"/><file name="mondialrelay_ajax_loading_50x55.gif" hash="b260ebcedb57b84557917ecc748469ff"/><file name="mondialrelay_mapicon.png" hash="42af394899f3cb4dee42dacea2acb5b5"/><file name="mondialrelay_mapicon_1.png" hash="3511c130456b2458d79479d45795905d"/><file name="mondialrelay_mapicon_10.png" hash="69b080af207b00e483cf5d8f777f97c1"/><file name="mondialrelay_mapicon_2.png" hash="77c3d618194755e5a010af27dd41f0fa"/><file name="mondialrelay_mapicon_3.png" hash="1a7f0e3de53a15fcf941ae3c525eb933"/><file name="mondialrelay_mapicon_4.png" hash="c4cc20ceddec609055b4ba475d1ce97a"/><file name="mondialrelay_mapicon_5.png" hash="facfda8086ddfecc7994114c32c64a06"/><file name="mondialrelay_mapicon_6.png" hash="f0f599ec3b987ee47ae00faf8cb220f0"/><file name="mondialrelay_mapicon_7.png" hash="0d37a31e4efaf6262a4e752955904c69"/><file name="mondialrelay_mapicon_8.png" hash="46254dd13dfc515edc66281f708f2f26"/><file name="mondialrelay_mapicon_9.png" hash="304700bc1fa27f97e5b45e5b8bba593f"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.0.0</min><max>5.5.3</max></php></required></dependencies>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>man4x_mondialrelay</name>
4
+ <version>1.4.6</version>
5
  <stability>stable</stability>
6
  <license>Massachusetts Institute of Technology License (MITL)</license>
7
  <channel>community</channel>
13
  ------------------------------------------------------------&#xD;
14
  (FR) Ce module a &#xE9;t&#xE9; inspir&#xE9; par le module MondialRelay_Pointsrelais disponible sur Magento Connect dans le but de corriger certaines limitations de ce dernier (exp&#xE9;ditions par lot, s&#xE9;lection des points relais sur carte ou par liste, interception des erreurs d'enregistrement...)&#xD;
15
  ATTENTION: ce module n'est pas compatible en l'&#xE9;tat avec le module MondialRelay_Pointsrelais (voir documentation).</description>
16
+ <notes>Ajoute la possibilit&#xE9; de choisir le format des &#xE9;tiquettes (A4 ou A5)</notes>
 
17
  <authors><author><name>Emmanuel Catrysse</name><user>Peppermay</user><email>man4x@hotmail.fr</email></author></authors>
18
+ <date>2014-05-23</date>
19
+ <time>17:43:59</time>
20
+ <contents><target name="magecommunity"><dir name="Man4x"><dir name="MondialRelay"><dir name="Block"><dir name="Checkout"><file name="Pickupinfo.php" hash="b774e5e1cca5083c9a84745670a74570"/><file name="Pickuppopup.php" hash="c53b342e9204420d786d8b4fc3650d20"/><file name="Shippingmethods.php" hash="90341019c54dbf5d8e1d5cad5f78c39c"/></dir><dir name="Sales"><dir name="Labelprinting"><file name="Grid.php" hash="1a65b8aa1c348dc5e9a6023892d79723"/></dir><file name="Labelprinting.php" hash="81ebc053dc63066e0a80b24c40f2e13d"/><dir name="Massshipping"><file name="Grid.php" hash="d8fb048cae771ce4e68af7e99da4600b"/></dir><file name="Massshipping.php" hash="7c07785430761c0dbfb774e03787fe2e"/></dir></dir><dir name="Helper"><file name="Data.php" hash="14fc41549fecddbf58b6526bc61748c9"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="74ce0d4d8491db39f82a9c32dbb8823f"/><file name="Home.php" hash="1e995970559481c69b92d3de35b929c2"/><file name="Pickup.php" hash="49b54427377802f572aa3b40f0e10c5a"/></dir><file name="Observer.php" hash="34ed3366f06eb39b58f6016593ee66d1"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Collectionmode.php" hash="42afabe9e62a9ece2b5eb35d0e0883fc"/><file name="Condition.php" hash="e33f3bc3382d364d081ddd7aeaf88554"/><file name="Labelsize.php" hash="435cf8428f8504fc6a0c333cefa8bd9f"/><file name="Weightunit.php" hash="57ffe1e480b53851363b5b2a190b3d6d"/></dir><dir name="Validation"><file name="Senderaddress.php" hash="fc948ec1b7b0e8fb78d7e2bfcdee1cbb"/><file name="Tablerate.php" hash="d19a6de215b020bb2ad1f8cd3017b4d5"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="21397051d1e5ecd38b36468c7991a9ec"/><dir name="Sales"><file name="ShippingController.php" hash="d1d78f0b02edf964677700268e4e4062"/></dir></dir><dir name="doc"><file name="guide_man4x_mondialrelay_1_4_0_fr.pdf" hash="c1cba4b3f469096c935268377a932ef2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8c62dc7ecb883783e2e65d46a60b154f"/><file name="config.xml" hash="3887d12e5731a75b2c553e809c3a1ec8"/><file name="system.xml" hash="5d78847ced51d7fe95ffd1e307c8020b"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="Man4x_MondialRelay.xml" hash="eaf0e0972f6ab93544fdd8a6ca45a244"/></dir><dir name="template"><dir name="Man4x_MondialRelay"><dir name="paypalexpress"><file name="shippingmethods.phtml" hash="a21211142621711e3a62311a15e583b3"/></dir><file name="pickupinfo.phtml" hash="2dc3181d30a0aa6fd025efed6125e105"/><file name="pickuppopup.phtml" hash="6e5a7e48e007b3e5003ce3dc92b75782"/><file name="shippingmethods.phtml" hash="788c47fc00df61100ebed1d9f8cfd877"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Man4x_MondialRelay.xml" hash="cbf764631c906fbf3b9bcee94199d078"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Man4x_MondialRelay.csv" hash="ab590599de2b3f18ec66d91cc93ad67d"/></dir><dir name="fr_FR"><file name="Man4x_MondialRelay.csv" hash="5ea22157c5d6428120721b1f84add914"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="Man4x_MondialRelay.css" hash="5d5d0a2daee798a4d8ea5f921c0b8bd4"/></dir><dir name="images"><dir name="Man4x_MondialRelay"><file name="btn_details.png" hash="39a00ac148c2e3dc44bd42670ee74c5b"/><file name="btn_search.png" hash="56fb89eea54a9804059dcd146dfaaadd"/><file name="close_icon.png" hash="f8422d11f273f2690226160682d80f10"/><file name="logo_mondialrelay.gif" hash="95bc996ef1c8fce2b8cc7b0b864d6f52"/><file name="logo_mondialrelay_20.gif" hash="ac7ca03f8638455ce33dd8ca9c17c475"/><file name="mondialrelay_ajax_loading.gif" hash="ef4b7ef99db4254577aac23fff5ff50b"/><file name="mondialrelay_ajax_loading_50x55.gif" hash="b260ebcedb57b84557917ecc748469ff"/><file name="mondialrelay_mapicon.png" hash="42af394899f3cb4dee42dacea2acb5b5"/><file name="mondialrelay_mapicon_1.png" hash="3511c130456b2458d79479d45795905d"/><file name="mondialrelay_mapicon_10.png" hash="69b080af207b00e483cf5d8f777f97c1"/><file name="mondialrelay_mapicon_2.png" hash="77c3d618194755e5a010af27dd41f0fa"/><file name="mondialrelay_mapicon_3.png" hash="1a7f0e3de53a15fcf941ae3c525eb933"/><file name="mondialrelay_mapicon_4.png" hash="c4cc20ceddec609055b4ba475d1ce97a"/><file name="mondialrelay_mapicon_5.png" hash="facfda8086ddfecc7994114c32c64a06"/><file name="mondialrelay_mapicon_6.png" hash="f0f599ec3b987ee47ae00faf8cb220f0"/><file name="mondialrelay_mapicon_7.png" hash="0d37a31e4efaf6262a4e752955904c69"/><file name="mondialrelay_mapicon_8.png" hash="46254dd13dfc515edc66281f708f2f26"/><file name="mondialrelay_mapicon_9.png" hash="304700bc1fa27f97e5b45e5b8bba593f"/></dir></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.0.0</min><max>5.5.3</max></php></required></dependencies>
23
  </package>