DHL_Allyouneed - Version 2.6.2

Version Notes

--

Download this release

Release Info

Developer DHL Vertriebs GmbH
Extension DHL_Allyouneed
Version 2.6.2
Comparing to
See all releases


Code changes from version 2.6.1 to 2.6.2

app/code/community/Dhl/MeinPaket/Block/Adminhtml/BestPrice/Grid.php CHANGED
@@ -10,7 +10,21 @@ class Dhl_MeinPaket_Block_Adminhtml_BestPrice_Grid extends Mage_Adminhtml_Block_
10
  }
11
  protected function _prepareCollection() {
12
  $collection = Mage::getModel ( 'meinpaket/bestPrice' )->getCollection ();
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  $this->setCollection ( $collection );
 
14
  return parent::_prepareCollection ();
15
  }
16
  protected function _prepareColumns() {
@@ -20,6 +34,22 @@ class Dhl_MeinPaket_Block_Adminhtml_BestPrice_Grid extends Mage_Adminhtml_Block_
20
  'index' => 'bestprice_id'
21
  ) );
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  $this->addColumn ( 'price', array (
24
  'header' => Mage::helper ( 'meinpaket' )->__ ( 'Price' ),
25
  'type' => 'number',
@@ -67,7 +97,7 @@ class Dhl_MeinPaket_Block_Adminhtml_BestPrice_Grid extends Mage_Adminhtml_Block_
67
  $this->addColumn ( 'created_at', array (
68
  'header' => Mage::helper ( 'meinpaket' )->__ ( 'Created At' ),
69
  'type' => 'datetime',
70
- 'index' => 'created_at'
71
  ) );
72
 
73
  $this->addExportType ( '*/*/exportExcel', Mage::helper ( 'meinpaket' )->__ ( 'Excel XML' ) );
@@ -85,4 +115,4 @@ class Dhl_MeinPaket_Block_Adminhtml_BestPrice_Grid extends Mage_Adminhtml_Block_
85
  '_current' => true
86
  ) );
87
  }
88
- }
10
  }
11
  protected function _prepareCollection() {
12
  $collection = Mage::getModel ( 'meinpaket/bestPrice' )->getCollection ();
13
+
14
+ $entityTypeId = Mage::getModel ( 'eav/entity' )->setType ( 'catalog_product' )->getTypeId ();
15
+ $prodNameAttrId = Mage::getModel ( 'eav/entity_attribute' )->loadByCode ( $entityTypeId, 'name' )->getAttributeId ();
16
+ $collection->getSelect ()->joinLeft ( array (
17
+ 'prod_name' => 'catalog_product_entity'
18
+ ), 'prod_name.entity_id = main_table.product_id', array (
19
+ 'sku'
20
+ ) )->joinLeft ( array (
21
+ 'cpev_name' => 'catalog_product_entity_varchar'
22
+ ), 'cpev_name.entity_id=prod_name.entity_id AND cpev_name.attribute_id=' . $prodNameAttrId . '', array (
23
+ 'name' => 'cpev_name.value'
24
+ ) );
25
+
26
  $this->setCollection ( $collection );
27
+
28
  return parent::_prepareCollection ();
29
  }
30
  protected function _prepareColumns() {
34
  'index' => 'bestprice_id'
35
  ) );
36
 
37
+ $this->addColumn ( 'product_id', array (
38
+ 'header' => Mage::helper ( 'meinpaket' )->__ ( 'Product ID' ),
39
+ 'type' => 'number',
40
+ 'index' => 'product_id'
41
+ ) );
42
+
43
+ $this->addColumn ( 'sku', array (
44
+ 'header' => Mage::helper ( 'meinpaket' )->__ ( 'Sku' ),
45
+ 'index' => 'sku'
46
+ ) );
47
+
48
+ $this->addColumn ( 'name', array (
49
+ 'header' => Mage::helper ( 'meinpaket' )->__ ( 'Name' ),
50
+ 'index' => 'name'
51
+ ) );
52
+
53
  $this->addColumn ( 'price', array (
54
  'header' => Mage::helper ( 'meinpaket' )->__ ( 'Price' ),
55
  'type' => 'number',
97
  $this->addColumn ( 'created_at', array (
98
  'header' => Mage::helper ( 'meinpaket' )->__ ( 'Created At' ),
99
  'type' => 'datetime',
100
+ 'index' => 'created_at'
101
  ) );
102
 
103
  $this->addExportType ( '*/*/exportExcel', Mage::helper ( 'meinpaket' )->__ ( 'Excel XML' ) );
115
  '_current' => true
116
  ) );
117
  }
118
+ }
app/code/community/Dhl/MeinPaket/Model/Mysql4/BestPrice.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  class Dhl_MeinPaket_Model_Mysql4_BestPrice extends Mage_Core_Model_Mysql4_Abstract {
3
  /**
4
- * Initialize domain model and set primary key
5
  *
6
  * @return void
7
  */
1
  <?php
2
  class Dhl_MeinPaket_Model_Mysql4_BestPrice extends Mage_Core_Model_Mysql4_Abstract {
3
  /**
4
+ * Initialize domain model and set primary key.
5
  *
6
  * @return void
7
  */
app/code/community/Dhl/MeinPaket/etc/config.xml CHANGED
@@ -63,9 +63,8 @@
63
  <default_delivery_time>5</default_delivery_time>
64
  </product_attributes>
65
  <cron>
66
- <product>0 * * * *</product>
67
- <order>*/15 * * * *</order>
68
- <bestprice>15 3 * * *</bestprice>
69
  </cron>
70
  <advanced>
71
  <cycle_product_count>100</cycle_product_count>
63
  <default_delivery_time>5</default_delivery_time>
64
  </product_attributes>
65
  <cron>
66
+ <product>*/15 * * * *</product>
67
+ <bestprice>0 */4 * * *</bestprice>
 
68
  </cron>
69
  <advanced>
70
  <cycle_product_count>100</cycle_product_count>
app/code/community/Dhl/MeinPaketCommon/Model/Xml/Response/DataResponse.php CHANGED
@@ -82,16 +82,16 @@ class Dhl_MeinPaketCommon_Model_Xml_Response_DataResponse extends Dhl_MeinPaketC
82
  $transaction->beginTransaction ();
83
  /* @var $bestPrice Dhl_MeinPaketCommon_Model_Xml_Response_Partial_DataResponse_BestPrice */
84
 
 
 
 
 
 
85
  foreach ( $this->bestPrices as $bestPrice ) {
86
  if (count ( $bestPrice->getCommonErrors () )) {
87
  continue;
88
  }
89
 
90
- $collection = Mage::getModel ( 'meinpaket/bestPrice' )->getCollection ();
91
- foreach ( $collection->getItems () as $price ) {
92
- $price->delete ();
93
- }
94
-
95
  /* @var $bestPriceModel Dhl_MeinPaketCommon_Model_BestPrice */
96
  $bestPriceModel = Mage::getModel ( 'meinpaket/bestPrice' );
97
  $bestPriceModel->setProductId ( $bestPrice->getProductId () );
82
  $transaction->beginTransaction ();
83
  /* @var $bestPrice Dhl_MeinPaketCommon_Model_Xml_Response_Partial_DataResponse_BestPrice */
84
 
85
+ $collection = Mage::getModel ( 'meinpaket/bestPrice' )->getCollection ();
86
+ foreach ( $collection->getItems () as $price ) {
87
+ $price->delete ();
88
+ }
89
+
90
  foreach ( $this->bestPrices as $bestPrice ) {
91
  if (count ( $bestPrice->getCommonErrors () )) {
92
  continue;
93
  }
94
 
 
 
 
 
 
95
  /* @var $bestPriceModel Dhl_MeinPaketCommon_Model_BestPrice */
96
  $bestPriceModel = Mage::getModel ( 'meinpaket/bestPrice' );
97
  $bestPriceModel->setProductId ( $bestPrice->getProductId () );
app/code/community/Dhl/MeinPaketCommon/etc/config.xml CHANGED
@@ -112,8 +112,9 @@
112
  <default_group>1</default_group>
113
  </customer>
114
  <cron>
115
- <async>*/10 * * * *</async>
116
- <cleanup>0 6 * * *</cleanup>
 
117
  </cron>
118
  </meinpaket>
119
  </default>
112
  <default_group>1</default_group>
113
  </customer>
114
  <cron>
115
+ <async>*/15 * * * *</async>
116
+ <cleanup>0 */8 * * *</cleanup>
117
+ <order>*/15 * * * *</order>
118
  </cron>
119
  </meinpaket>
120
  </default>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DHL_Allyouneed</name>
4
- <version>2.6.1</version>
5
  <stability>stable</stability>
6
  <license>--</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>The Extension connects your Magento shop with DHL Allyouneed.</description>
11
  <notes>--</notes>
12
  <authors><author><name>DHL Vertriebs GmbH</name><user>ybmdeutschland</user><email>support@meinpaket.de</email></author></authors>
13
- <date>2016-02-25</date>
14
- <time>16:32:00</time>
15
- <contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="e3818a7ef10534ce30159309ebe3f711"/></dir><file name="Product.php" hash="238c6793960501e61799b7327408790f"/></dir><dir name="BestPrice"><file name="Grid.php" hash="c82331fb3fc74e35aa6541daeba9c539"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="3d5c316f511ca64dfa511f04ac4b4a14"/></dir><dir name="Renderer"><file name="Category.php" hash="7a76bea9952bb91916951d7361472656"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="47f0969b175e1480efe8a97480c169da"/><file name="Index.php" hash="745b3c71e101599fbba7a7fd275362c9"/></dir><file name="LeftMenu.php" hash="b60dea4f9e9a39b663cab89be8e32b97"/><dir name="OrderImport"><file name="Index.php" hash="b45724d6ff1fcda6102b3147f3a66a94"/></dir><dir name="ProductExport"><file name="Export.php" hash="ba11e432eafe4d98693284229bcf16e7"/><file name="Index.php" hash="65cf2306ad93f387f525ec66cec1abee"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="ffb3f688b43cd0c1f457b89c84e68b7f"/><file name="Version.php" hash="476febd9f5d12ac999bdc7a6d646fe20"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51625d92642f77fb5f45a6950e840de7"/><file name="Cron.php" hash="315c11502b6a0927199684047a2f1c73"/><file name="Data.php" hash="da9a067e866242802d77e67b8e319358"/><file name="Order.php" hash="e3dca5761fa8e5e4171a9712b14b5c30"/><file name="Shipment.php" hash="c8764cf370aded8e4d3c55e8c218a879"/></dir><dir name="Model"><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><file name="Category.php" hash="d0f5804e7900915f1c03364b079a7dc5"/><file name="Cron.php" hash="aa1d3eb85718ab35057df743aa04b176"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="7f4b3b49b6e12dadd768aee95e041579"/></dir><dir name="Source"><file name="Carrier.php" hash="089d067ed17b0bd5df6d45600c819e44"/><file name="MeinPaketCategory.php" hash="c2fccb5002954eb03ff1dd429194b00f"/><file name="ProductAttribute.php" hash="337597811d6a7f98286a2a7546557db4"/><file name="ProductSyncMode.php" hash="1c4d5dd89d8ebe242a13646f786dbcdc"/><file name="Taxclass.php" hash="0d132eaf636fc366a585317784a5724b"/><file name="Taxrate.php" hash="5ba78d386436df27b9dd358d576b64d8"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="dcbfbe06f3d0190d5f4a9f0b47973bf2"/><file name="MissingDataException.php" hash="377d6cc783aa6e8973728a77e1e5b8a9"/></dir><dir name="Mysql4"><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="79399000e407b6a22489d0dbfedd6f34"/><dir name="Category"><file name="Collection.php" hash="06fd9a509c1ef252c0b75f6acda1b9eb"/></dir><file name="Category.php" hash="449c4f90fe5e797ca587025c63c745c3"/></dir><file name="Observer.php" hash="3d641b177f7281fa747e437db3838e70"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="dcb6ac810be4d0bb9e426464be91610d"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="6a8952042b65c89685e24b3b503c0d67"/></dir></dir></dir><dir name="Service"><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="bf0c889ce83b0afe084c20f97288370e"/><file name="Result.php" hash="cdebaf351ccd1c7aa285801701d32e7f"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="bc88e3bc48a8a96e45079054290ae68c"/></dir></dir><file name="Export.php" hash="dbda15c27ea64fc80dabf04977d3d016"/></dir><dir name="ProductData"><file name="RequestService.php" hash="381ffeb30499242407bbf88d1eb82141"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="4ddf194a126ce18938610f61fcc1260d"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="fb7fb1630ede6e1a656b63295a9580eb"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Meinpaket"><dir name="Backlog"><file name="ProductController.php" hash="2beaf15d9c7da08e684781da85d6c87f"/></dir><file name="BestPriceController.php" hash="74bb219de2df5876d691a8c6327c67d5"/><file name="CategoryImportController.php" hash="f44dc06f1d1dd61cb5ae8e8e6d8af08a"/><file name="MatchingController.php" hash="35b41e6596871752b34e93f4f68056ca"/><file name="ProductExportController.php" hash="dc397c0999c80d748cdd48bc54d917bf"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="faf0731068709be37b6eb9dd80b797ff"/><file name="config.xml" hash="23b05b8024dab60f04dcd9321dd37409"/><file name="system.xml" hash="9811aedefc5850f9ac82cf1e922fb35a"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="f517a9fbaa8e58738d67fc146f493496"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="b52cd860cbc35cff0f704a033b296cdf"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="199b74750e105a4e215bb268dceeb897"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="70fb260c8a4b10b30ee989b75be88d0f"/><file name="mysql4-upgrade-2.5.0-2.6.0.php" hash="8311439ba499b132a144ca727572803f"/><file name="mysql4-upgrade-2.6.0-2.7.0.php" hash="cc76f3357809e59c74b5a2446cc4e4db"/></dir></dir></dir></dir><dir name="Postpay"><dir><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="887b1a63cd09847ba7ab3392bd4f9602"/></dir><file name="Checkout.php" hash="ec8b0f2764d863f03dec0167617510a6"/><dir name="Payment"><dir name="Form"><file name="Standard.php" hash="6aca4f231c317c45ac1556d39639d84f"/></dir><dir name="Info"><file name="Standard.php" hash="45252ddc1f9ebb332ef75efa5f868432"/></dir></dir></dir><dir name="Helper"><file name="Cron.php" hash="c2391d5d085c31f2650655e8acdbfb97"/><file name="Data.php" hash="418df17f5f760dc47bba8bb815d77c58"/></dir><dir name="Model"><file name="Cart.php" hash="1c72c7a35b1a58d074a097c22f81b080"/><file name="Cron.php" hash="c94e8c1919f96b3c16988ca643da7f71"/><dir name="Mysql4"><dir name="Cart"><file name="Collection.php" hash="3b5150eb69a37a738e3f8494db0f4af1"/></dir><file name="Cart.php" hash="74042698f6fb9f2c7ca054d17f1ff0a2"/></dir><file name="Observer.php" hash="8a9eb2111c0a450e460f10e2b2a721eb"/><dir name="Payment"><dir name="Method"><file name="Express.php" hash="91259cee6e39f7c993a823edbaab4817"/><file name="Standard.php" hash="12d90706187a26494b9dc072821003ee"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ac36d5a7a1988eab4dad69efd472c50f"/></dir></dir></dir><dir name="Service"><dir name="Order"><file name="ImportService.php" hash="38f4942edcb2ddeb9dc7a161149ead3b"/></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="7a0801e7c03be05beb8c38004dea1464"/><file name="NotificationController.php" hash="a6a1c01b219d03f9941af2c4e91a3e85"/><file name="ResponseController.php" hash="a182997c01139ffe2137d6dcb51f34ec"/></dir><dir name="etc"><file name="config.xml" hash="aa1af5fc595e99577293d45d3da2869e"/><file name="system.xml" hash="c42ac176d831392baaff505fddffc652"/></dir><dir name="sql"><dir name="postpay_setup"><file name="mysql4-install-1.0.0.php" hash="8a5f877376e1df9b1a8bde8d4ce70158"/></dir></dir></dir></dir><dir name="MeinPaketCommon"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="3c7549ff52bf47de9558cc14a3008fc2"/></dir><file name="Async.php" hash="b755d5bd1cef59264fd5a2309e07e3ce"/><dir name="Log"><file name="Grid.php" hash="8299f7085d6bdbaad1d19b1ca43eca9d"/></dir><file name="Log.php" hash="36a68e5de0cf7dfb87e3b090c05c1e9c"/><file name="Version.php" hash="28defa5c89727f8c3a877affb55d0443"/></dir></dir><dir name="Helper"><file name="Address.php" hash="def05195630f6f98802481d228b4f25e"/><file name="Attribute.php" hash="905db640dbe49889e273aeb7415b2441"/><file name="Cron.php" hash="c853776f75db4063fc1e6bf247d4e5ab"/><file name="Data.php" hash="6b587eecc5c02fd7523f1127c469d568"/><file name="Order.php" hash="736798b03eefd167e60854ad2e07792b"/><file name="Product.php" hash="43213811a6ba758af79bb4574e90f196"/><file name="Shipment.php" hash="4f62b24147d2998762ca74975e4cc379"/></dir><dir name="Model"><file name="Async.php" hash="3112120abd4ff2773dbcf19dedfd4044"/><dir name="Carrier"><file name="Allyouneed.php" hash="25eaf021d05a89e988c9370f25fd56cf"/><file name="Meinpaket.php" hash="b16814df68414d1fb6e795eadc4d6e83"/></dir><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="3f3d67278be542e42bb882f387c04b67"/><file name="HttpException.php" hash="963bc4b8d30d2996a2a08b4c8aaa6b8f"/><file name="HttpTimeoutException.php" hash="d633742d26c8c5438543c1bbdf5c09bd"/><file name="XmlOverHttp.php" hash="887c9c5de3f323bc8963a06780fcd36f"/></dir><file name="Cron.php" hash="18925c4ea5e36226fc3f370219b3c7d5"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><file name="Carrier.php" hash="33fd2d2163e27a2fc54f8e1b25787998"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="808caf989c24f1146d47fc610be6e131"/><file name="MissingDataException.php" hash="67a06069dcb66c02235f636b6790a62d"/></dir><file name="Log.php" hash="516fc34067f4573d160100d7a975a66c"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="d5f6fbe4a4be75181844eddfbbd557cf"/></dir><file name="Async.php" hash="2120d8c0411c8773853cee4c5925467a"/><dir name="Log"><file name="Collection.php" hash="9bba87a636029d675e1ceda42f96dbc4"/></dir><file name="Log.php" hash="a09be611512f4dc95880e6e00dab93ca"/></dir><file name="Observer.php" hash="6722c636ef4fc9061e9da39ba3dda173"/><dir name="Payment"><dir name="Method"><file name="Allyouneed.php" hash="663bf3c0f796e41a36eed0c277c0af42"/><file name="Meinpaket.php" hash="fdbc24e8330ecbb71243e1f4b5b83bc3"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ce3a02f9c90e0a1f04a6202305c72ff4"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="406fb92c370df8e93aaffacbad56937b"/><file name="Async.php" hash="3722821241353cfd3f7da184ea5cadab"/><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="fd81666a5855ea6b25904e14d498ea20"/></dir><file name="CancellationService.php" hash="a6806a3531b596a729a418688ba51dcc"/><file name="ImportService.php" hash="dbf2b6498b9f3031d41b53b3133d7a28"/><dir name="RefundExportService"><file name="Result.php" hash="dcfd1f479709368b446041674ee445d8"/></dir><file name="RefundExportService.php" hash="7ab8222a77e76517247f7f710d60b590"/><dir name="ShipmentExportService"><file name="Result.php" hash="0ba713e725c87d0bc82321582e3fe776"/></dir><file name="ShipmentExportService.php" hash="3045ed7ffb7f6a1f4c592e49832577f9"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="51438929f66a7efe3541511b6966ea09"/></dir></dir><dir name="System"><file name="MemoryLimiter.php" hash="813d89b8c21834fb911acc8e59be950c"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="d11950e6d4a7b52e3784867e8d8d2230"/><dir name="Validator"><file name="CDATAContent.php" hash="425678e9cf44efee9d884c20e4db1f14"/><file name="Ean.php" hash="7bab4c07ebcbdf3ce9e087ff20976d1a"/><file name="IntGreaterZero.php" hash="682c11f5cf24cafcef61350194a65be1"/><file name="NonEmptyString.php" hash="7075a72eace8e1f8c5bc5b61a5a25231"/><file name="StringMaxLength.php" hash="c19f729ff39b5b6b438635fe9bd9c6bf"/><file name="Url.php" hash="7b1f83a803fd8788ad4b22aaa982d04f"/></dir><file name="ValidatorChain.php" hash="72148d630805652276c446ebef817f47"/><file name="ValidatorInterface.php" hash="df41d71f7970d758b18bf36c2e49f6f1"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="2cf177e53b3b4b54309b9573aab4d646"/><file name="AbstractXmlRequest.php" hash="9a72dc1e6fe6cc1f027d1f339e6bc0f4"/><file name="InvalidXmlException.php" hash="22c021f43b7df35045814cd1ca714968"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="4b17665dfef64f23d366f671a06634e3"/><file name="DataRequest.php" hash="c841bd02a2d20c01fa27315397717ba7"/><file name="DownloadRequest.php" hash="05e941a0db71e679d5e3bce00bd5da8d"/><file name="NotificationRequest.php" hash="dcdc7c28553eccbf6eba95104f1430ff"/><file name="QueryRequest.php" hash="653c70900c92eb76a5aac273cf49f155"/><file name="SubmitCartRequest.php" hash="6e3297eebbfeb13fbe7874431474c528"/><file name="UploadRequest.php" hash="111693655db902b6482649c1fa46ad04"/></dir><dir name="Response"><file name="Abstract.php" hash="f7e963bf5586d26347c4d1a6887a4b79"/><file name="AsynchronousStatusResponse.php" hash="6571d1b3093cd73e7eda7ff940df4453"/><file name="DataResponse.php" hash="672c55dd8e770219eac74214726cb5ef"/><file name="DownloadResponse.php" hash="831f43cece257d44fe65d02304362a8c"/><file name="NotificationResponse.php" hash="be7626da7ef2f744f183228110aabbea"/><dir name="Partial"><file name="Address.php" hash="d9ea71d56eb49fe3a512edd412293922"/><file name="Attribute.php" hash="4c27a169c0c773afde7502d6704ee372"/><file name="Category.php" hash="2b040bd3b89121ba28fef0ae07915915"/><file name="CategoryId.php" hash="09f6b3ecf29c4d3a16d37978efd53b4a"/><dir name="DataResponse"><file name="BestPrice.php" hash="e545a040a9201c3c8a71d4b410dcfc4d"/><file name="Confirmation.php" hash="b93b06d18277c10899535d91c1b71829"/><file name="MerchantData.php" hash="f03d2b35691c4356c43251e3c1c1fd20"/><file name="ProductData.php" hash="ab11140f6a0c4556a558d317651db82b"/><file name="QuotaData.php" hash="feb7180ff8c332decc938c1394ab8018"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="62225a96f3c9ce1047afc3f2c04b44ea"/><file name="Consignment.php" hash="20cb98f68cb94033d7abc5cb29ba47a4"/><file name="Credit.php" hash="7dfa1b551c938bbdbcab3e7f5ca4a86e"/><file name="Return.php" hash="d2538c678241727e3fe996d800da75b1"/></dir><dir name="Order"><file name="ContactData.php" hash="27cd1f6a5f8125352f3c383ab40e18af"/><file name="Entry.php" hash="f925387971c3a4e90bf3a66735f78025"/></dir><file name="Order.php" hash="470ed2a1671600318de784fedc34dbb9"/><file name="ProductId.php" hash="098e038cb611d92a65aa8a305567a2d0"/><file name="VariantConfiguration.php" hash="c3840d3e11cc2cc2c50d1f4f03bca963"/></dir><file name="QueryResponse.php" hash="300bfcfdb7f52380b207b45fede50e8e"/><file name="SubmitCartResponse.php" hash="82743d5832c4a12675796bbbde6f72e0"/><file name="UploadResponse.php" hash="72febd4c94809063f0df96bd32eb0c97"/></dir><file name="XmlBuildException.php" hash="72ee8a17dab2c457bb821cd36bbff689"/><file name="XmlResponseParser.php" hash="94502547e6f7495e708652f72155c020"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Meinpaketcommon"><file name="AsyncController.php" hash="8a7bc982fcdfa959b839e0fc96db806f"/><file name="LogController.php" hash="465f5dfff9e21a1d0d5d7ec02ae5423e"/><file name="OrderImportController.php" hash="a6d656b467545f9884adb1bf2ba576ab"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="27e4abfd28368d0a2e69664fcc744c19"/><file name="config.xml" hash="1f1f4c2fe0b94a3a1c7b498aa2ab074b"/><file name="system.xml" hash="e6e194ead56359c8c3dfad7f2005bec9"/></dir><dir name="sql"><dir name="meinpaketcommon_setup"><file name="mysql4-install-1.0.0.php" hash="619358ad78ac3123511e8d77f11dc39f"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="f44902d977f8aca8e25fd3f716b6d9ab"/><file name="mysql4-upgrade-1.1.1-1.2.0.php" hash="55ef95a239ccc835f3a4cc2de9ae9c5a"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="b2ab0b71945c9849bbabe9cac0280beb"/><file name="Dhl_Postpay.xml" hash="26852f055604828ffca341f7437db998"/><file name="Dhl_MeinPaketCommon.xml" hash="b926a30bca6162be2a951f9fb0f62e00"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="b7c47a9b557e7fae4c5309ed95628ab6"/><file name="dhlmeinpaket-product-export.php" hash="9cfb888cdec7047a488fd68e84f5c495"/><file name="dhlmeinpaket-request-bestprice.php" hash="8bbcdd8eb442861f7e94d44b8db99226"/><file name="dhlmeinpaket-order-import.php" hash="78ed4ffb48e530950bde3818e432b972"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/><file name="postpay.xml" hash="890708f41152cb5326040006a0d13bf1"/><file name="meinpaketcommon.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="postpay"><dir><dir name="checkout"><file name="image.phtml" hash="9283259a1e502907c0ba1c659f4ffe1b"/></dir><dir name="payment"><file name="redirect.phtml" hash="4d6e571020670c2069a2323b54f707ea"/></dir></dir><file name="checkout.phtml" hash="424e3ad9ab6f20dba21412ed9de315e6"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="869a9e19149fb25e4cb41fc67750facd"/><file name="postpay.xml" hash="5bef4c0511b6e60ed9abf1503849809e"/><file name="meinpaketcommon.xml" hash="c9f8a98599b050b01f0f5da8ba9378ab"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="d13ff26ad0f634c732a3baa2f25ddbad"/><file name="tab.phtml" hash="9124f82cd5f7ac58b2b5561381fb25c5"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="dde1fbeacc6fb333206c4c3344774a7f"/><file name="index.phtml" hash="fa21c3dbf009f7a9874196c06679f5fc"/></dir></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="steps.phtml" hash="70a343086b4559dc0e77173d9a799e39"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="b2aa75c347128272a8ebdf4e771c828f"/><file name="Dhl_Postpay.csv" hash="5c803ebc2d02c6272b6b7b05951faba6"/><file name="Dhl_MeinPaketCommon.csv" hash="c7b3ed7c2c3d6b24a9bd66925658a439"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaketcommon"><dir name="images"><file name="1.png" hash="3c2c9a82eb1ba846ba83fff02a7fb89d"/><file name="2.png" hash="ebbbb39b16a74905e9089014dadf27bb"/><file name="3.png" hash="4db863bc8404ba77b12b318d7932ca3d"/><file name="ayn_ger_tuete_produkte_aussen.jpg" hash="18acc68e20f2bc7e9417bb04cb64e2c5"/><file name="dhl_logo_kl.gif" hash="43fdd8c3b923355fdd27070feca49dc7"/><file name="loader.gif" hash="823d2e0f3345c88e9463a38a9c360817"/><file name="shadowtopbg.png" hash="9e274a269dcbe50256d1be49a192a9cd"/></dir><file name="module.css" hash="d477570fa7a981d64d2fdc79af098999"/><file name="module.js" hash="60aec009320033b3c786784934d5cdb2"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DHL_Allyouneed</name>
4
+ <version>2.6.2</version>
5
  <stability>stable</stability>
6
  <license>--</license>
7
  <channel>community</channel>
10
  <description>The Extension connects your Magento shop with DHL Allyouneed.</description>
11
  <notes>--</notes>
12
  <authors><author><name>DHL Vertriebs GmbH</name><user>ybmdeutschland</user><email>support@meinpaket.de</email></author></authors>
13
+ <date>2016-03-01</date>
14
+ <time>16:04:10</time>
15
+ <contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="e3818a7ef10534ce30159309ebe3f711"/></dir><file name="Product.php" hash="238c6793960501e61799b7327408790f"/></dir><dir name="BestPrice"><file name="Grid.php" hash="334f5b14f64f8a2aef2282dc43750ac8"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="3d5c316f511ca64dfa511f04ac4b4a14"/></dir><dir name="Renderer"><file name="Category.php" hash="7a76bea9952bb91916951d7361472656"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="47f0969b175e1480efe8a97480c169da"/><file name="Index.php" hash="745b3c71e101599fbba7a7fd275362c9"/></dir><file name="LeftMenu.php" hash="b60dea4f9e9a39b663cab89be8e32b97"/><dir name="OrderImport"><file name="Index.php" hash="b45724d6ff1fcda6102b3147f3a66a94"/></dir><dir name="ProductExport"><file name="Export.php" hash="ba11e432eafe4d98693284229bcf16e7"/><file name="Index.php" hash="65cf2306ad93f387f525ec66cec1abee"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="ffb3f688b43cd0c1f457b89c84e68b7f"/><file name="Version.php" hash="476febd9f5d12ac999bdc7a6d646fe20"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51625d92642f77fb5f45a6950e840de7"/><file name="Cron.php" hash="315c11502b6a0927199684047a2f1c73"/><file name="Data.php" hash="da9a067e866242802d77e67b8e319358"/><file name="Order.php" hash="e3dca5761fa8e5e4171a9712b14b5c30"/><file name="Shipment.php" hash="c8764cf370aded8e4d3c55e8c218a879"/></dir><dir name="Model"><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><file name="Category.php" hash="d0f5804e7900915f1c03364b079a7dc5"/><file name="Cron.php" hash="aa1d3eb85718ab35057df743aa04b176"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="7f4b3b49b6e12dadd768aee95e041579"/></dir><dir name="Source"><file name="Carrier.php" hash="089d067ed17b0bd5df6d45600c819e44"/><file name="MeinPaketCategory.php" hash="c2fccb5002954eb03ff1dd429194b00f"/><file name="ProductAttribute.php" hash="337597811d6a7f98286a2a7546557db4"/><file name="ProductSyncMode.php" hash="1c4d5dd89d8ebe242a13646f786dbcdc"/><file name="Taxclass.php" hash="0d132eaf636fc366a585317784a5724b"/><file name="Taxrate.php" hash="5ba78d386436df27b9dd358d576b64d8"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="dcbfbe06f3d0190d5f4a9f0b47973bf2"/><file name="MissingDataException.php" hash="377d6cc783aa6e8973728a77e1e5b8a9"/></dir><dir name="Mysql4"><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="a6f721b31ca8c8c68bec237d4ef3b95a"/><dir name="Category"><file name="Collection.php" hash="06fd9a509c1ef252c0b75f6acda1b9eb"/></dir><file name="Category.php" hash="449c4f90fe5e797ca587025c63c745c3"/></dir><file name="Observer.php" hash="3d641b177f7281fa747e437db3838e70"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="dcb6ac810be4d0bb9e426464be91610d"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="6a8952042b65c89685e24b3b503c0d67"/></dir></dir></dir><dir name="Service"><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="bf0c889ce83b0afe084c20f97288370e"/><file name="Result.php" hash="cdebaf351ccd1c7aa285801701d32e7f"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="bc88e3bc48a8a96e45079054290ae68c"/></dir></dir><file name="Export.php" hash="dbda15c27ea64fc80dabf04977d3d016"/></dir><dir name="ProductData"><file name="RequestService.php" hash="381ffeb30499242407bbf88d1eb82141"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="4ddf194a126ce18938610f61fcc1260d"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="fb7fb1630ede6e1a656b63295a9580eb"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Meinpaket"><dir name="Backlog"><file name="ProductController.php" hash="2beaf15d9c7da08e684781da85d6c87f"/></dir><file name="BestPriceController.php" hash="74bb219de2df5876d691a8c6327c67d5"/><file name="CategoryImportController.php" hash="f44dc06f1d1dd61cb5ae8e8e6d8af08a"/><file name="MatchingController.php" hash="35b41e6596871752b34e93f4f68056ca"/><file name="ProductExportController.php" hash="dc397c0999c80d748cdd48bc54d917bf"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="faf0731068709be37b6eb9dd80b797ff"/><file name="config.xml" hash="ee2cdcac4514c34b53d119542931036a"/><file name="system.xml" hash="9811aedefc5850f9ac82cf1e922fb35a"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="f517a9fbaa8e58738d67fc146f493496"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="b52cd860cbc35cff0f704a033b296cdf"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="199b74750e105a4e215bb268dceeb897"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="70fb260c8a4b10b30ee989b75be88d0f"/><file name="mysql4-upgrade-2.5.0-2.6.0.php" hash="8311439ba499b132a144ca727572803f"/><file name="mysql4-upgrade-2.6.0-2.7.0.php" hash="cc76f3357809e59c74b5a2446cc4e4db"/></dir></dir></dir></dir><dir name="Postpay"><dir><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="887b1a63cd09847ba7ab3392bd4f9602"/></dir><file name="Checkout.php" hash="ec8b0f2764d863f03dec0167617510a6"/><dir name="Payment"><dir name="Form"><file name="Standard.php" hash="6aca4f231c317c45ac1556d39639d84f"/></dir><dir name="Info"><file name="Standard.php" hash="45252ddc1f9ebb332ef75efa5f868432"/></dir></dir></dir><dir name="Helper"><file name="Cron.php" hash="c2391d5d085c31f2650655e8acdbfb97"/><file name="Data.php" hash="418df17f5f760dc47bba8bb815d77c58"/></dir><dir name="Model"><file name="Cart.php" hash="1c72c7a35b1a58d074a097c22f81b080"/><file name="Cron.php" hash="c94e8c1919f96b3c16988ca643da7f71"/><dir name="Mysql4"><dir name="Cart"><file name="Collection.php" hash="3b5150eb69a37a738e3f8494db0f4af1"/></dir><file name="Cart.php" hash="74042698f6fb9f2c7ca054d17f1ff0a2"/></dir><file name="Observer.php" hash="8a9eb2111c0a450e460f10e2b2a721eb"/><dir name="Payment"><dir name="Method"><file name="Express.php" hash="91259cee6e39f7c993a823edbaab4817"/><file name="Standard.php" hash="12d90706187a26494b9dc072821003ee"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ac36d5a7a1988eab4dad69efd472c50f"/></dir></dir></dir><dir name="Service"><dir name="Order"><file name="ImportService.php" hash="38f4942edcb2ddeb9dc7a161149ead3b"/></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="7a0801e7c03be05beb8c38004dea1464"/><file name="NotificationController.php" hash="a6a1c01b219d03f9941af2c4e91a3e85"/><file name="ResponseController.php" hash="a182997c01139ffe2137d6dcb51f34ec"/></dir><dir name="etc"><file name="config.xml" hash="aa1af5fc595e99577293d45d3da2869e"/><file name="system.xml" hash="c42ac176d831392baaff505fddffc652"/></dir><dir name="sql"><dir name="postpay_setup"><file name="mysql4-install-1.0.0.php" hash="8a5f877376e1df9b1a8bde8d4ce70158"/></dir></dir></dir></dir><dir name="MeinPaketCommon"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="3c7549ff52bf47de9558cc14a3008fc2"/></dir><file name="Async.php" hash="b755d5bd1cef59264fd5a2309e07e3ce"/><dir name="Log"><file name="Grid.php" hash="8299f7085d6bdbaad1d19b1ca43eca9d"/></dir><file name="Log.php" hash="36a68e5de0cf7dfb87e3b090c05c1e9c"/><file name="Version.php" hash="28defa5c89727f8c3a877affb55d0443"/></dir></dir><dir name="Helper"><file name="Address.php" hash="def05195630f6f98802481d228b4f25e"/><file name="Attribute.php" hash="905db640dbe49889e273aeb7415b2441"/><file name="Cron.php" hash="c853776f75db4063fc1e6bf247d4e5ab"/><file name="Data.php" hash="6b587eecc5c02fd7523f1127c469d568"/><file name="Order.php" hash="736798b03eefd167e60854ad2e07792b"/><file name="Product.php" hash="43213811a6ba758af79bb4574e90f196"/><file name="Shipment.php" hash="4f62b24147d2998762ca74975e4cc379"/></dir><dir name="Model"><file name="Async.php" hash="3112120abd4ff2773dbcf19dedfd4044"/><dir name="Carrier"><file name="Allyouneed.php" hash="25eaf021d05a89e988c9370f25fd56cf"/><file name="Meinpaket.php" hash="b16814df68414d1fb6e795eadc4d6e83"/></dir><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="3f3d67278be542e42bb882f387c04b67"/><file name="HttpException.php" hash="963bc4b8d30d2996a2a08b4c8aaa6b8f"/><file name="HttpTimeoutException.php" hash="d633742d26c8c5438543c1bbdf5c09bd"/><file name="XmlOverHttp.php" hash="887c9c5de3f323bc8963a06780fcd36f"/></dir><file name="Cron.php" hash="18925c4ea5e36226fc3f370219b3c7d5"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><file name="Carrier.php" hash="33fd2d2163e27a2fc54f8e1b25787998"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="808caf989c24f1146d47fc610be6e131"/><file name="MissingDataException.php" hash="67a06069dcb66c02235f636b6790a62d"/></dir><file name="Log.php" hash="516fc34067f4573d160100d7a975a66c"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="d5f6fbe4a4be75181844eddfbbd557cf"/></dir><file name="Async.php" hash="2120d8c0411c8773853cee4c5925467a"/><dir name="Log"><file name="Collection.php" hash="9bba87a636029d675e1ceda42f96dbc4"/></dir><file name="Log.php" hash="a09be611512f4dc95880e6e00dab93ca"/></dir><file name="Observer.php" hash="6722c636ef4fc9061e9da39ba3dda173"/><dir name="Payment"><dir name="Method"><file name="Allyouneed.php" hash="663bf3c0f796e41a36eed0c277c0af42"/><file name="Meinpaket.php" hash="fdbc24e8330ecbb71243e1f4b5b83bc3"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="ce3a02f9c90e0a1f04a6202305c72ff4"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="406fb92c370df8e93aaffacbad56937b"/><file name="Async.php" hash="3722821241353cfd3f7da184ea5cadab"/><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="fd81666a5855ea6b25904e14d498ea20"/></dir><file name="CancellationService.php" hash="a6806a3531b596a729a418688ba51dcc"/><file name="ImportService.php" hash="dbf2b6498b9f3031d41b53b3133d7a28"/><dir name="RefundExportService"><file name="Result.php" hash="dcfd1f479709368b446041674ee445d8"/></dir><file name="RefundExportService.php" hash="7ab8222a77e76517247f7f710d60b590"/><dir name="ShipmentExportService"><file name="Result.php" hash="0ba713e725c87d0bc82321582e3fe776"/></dir><file name="ShipmentExportService.php" hash="3045ed7ffb7f6a1f4c592e49832577f9"/></dir><dir name="Result"><file name="Abstract.php" hash="c7d84905431b651779dc1011f246983b"/><file name="Upload.php" hash="51438929f66a7efe3541511b6966ea09"/></dir></dir><dir name="System"><file name="MemoryLimiter.php" hash="813d89b8c21834fb911acc8e59be950c"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="d11950e6d4a7b52e3784867e8d8d2230"/><dir name="Validator"><file name="CDATAContent.php" hash="425678e9cf44efee9d884c20e4db1f14"/><file name="Ean.php" hash="7bab4c07ebcbdf3ce9e087ff20976d1a"/><file name="IntGreaterZero.php" hash="682c11f5cf24cafcef61350194a65be1"/><file name="NonEmptyString.php" hash="7075a72eace8e1f8c5bc5b61a5a25231"/><file name="StringMaxLength.php" hash="c19f729ff39b5b6b438635fe9bd9c6bf"/><file name="Url.php" hash="7b1f83a803fd8788ad4b22aaa982d04f"/></dir><file name="ValidatorChain.php" hash="72148d630805652276c446ebef817f47"/><file name="ValidatorInterface.php" hash="df41d71f7970d758b18bf36c2e49f6f1"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="2cf177e53b3b4b54309b9573aab4d646"/><file name="AbstractXmlRequest.php" hash="9a72dc1e6fe6cc1f027d1f339e6bc0f4"/><file name="InvalidXmlException.php" hash="22c021f43b7df35045814cd1ca714968"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="4b17665dfef64f23d366f671a06634e3"/><file name="DataRequest.php" hash="c841bd02a2d20c01fa27315397717ba7"/><file name="DownloadRequest.php" hash="05e941a0db71e679d5e3bce00bd5da8d"/><file name="NotificationRequest.php" hash="dcdc7c28553eccbf6eba95104f1430ff"/><file name="QueryRequest.php" hash="653c70900c92eb76a5aac273cf49f155"/><file name="SubmitCartRequest.php" hash="6e3297eebbfeb13fbe7874431474c528"/><file name="UploadRequest.php" hash="111693655db902b6482649c1fa46ad04"/></dir><dir name="Response"><file name="Abstract.php" hash="f7e963bf5586d26347c4d1a6887a4b79"/><file name="AsynchronousStatusResponse.php" hash="6571d1b3093cd73e7eda7ff940df4453"/><file name="DataResponse.php" hash="a85820eec00ceafc6aeaaf102960ba0d"/><file name="DownloadResponse.php" hash="831f43cece257d44fe65d02304362a8c"/><file name="NotificationResponse.php" hash="be7626da7ef2f744f183228110aabbea"/><dir name="Partial"><file name="Address.php" hash="d9ea71d56eb49fe3a512edd412293922"/><file name="Attribute.php" hash="4c27a169c0c773afde7502d6704ee372"/><file name="Category.php" hash="2b040bd3b89121ba28fef0ae07915915"/><file name="CategoryId.php" hash="09f6b3ecf29c4d3a16d37978efd53b4a"/><dir name="DataResponse"><file name="BestPrice.php" hash="e545a040a9201c3c8a71d4b410dcfc4d"/><file name="Confirmation.php" hash="b93b06d18277c10899535d91c1b71829"/><file name="MerchantData.php" hash="f03d2b35691c4356c43251e3c1c1fd20"/><file name="ProductData.php" hash="ab11140f6a0c4556a558d317651db82b"/><file name="QuotaData.php" hash="feb7180ff8c332decc938c1394ab8018"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="62225a96f3c9ce1047afc3f2c04b44ea"/><file name="Consignment.php" hash="20cb98f68cb94033d7abc5cb29ba47a4"/><file name="Credit.php" hash="7dfa1b551c938bbdbcab3e7f5ca4a86e"/><file name="Return.php" hash="d2538c678241727e3fe996d800da75b1"/></dir><dir name="Order"><file name="ContactData.php" hash="27cd1f6a5f8125352f3c383ab40e18af"/><file name="Entry.php" hash="f925387971c3a4e90bf3a66735f78025"/></dir><file name="Order.php" hash="470ed2a1671600318de784fedc34dbb9"/><file name="ProductId.php" hash="098e038cb611d92a65aa8a305567a2d0"/><file name="VariantConfiguration.php" hash="c3840d3e11cc2cc2c50d1f4f03bca963"/></dir><file name="QueryResponse.php" hash="300bfcfdb7f52380b207b45fede50e8e"/><file name="SubmitCartResponse.php" hash="82743d5832c4a12675796bbbde6f72e0"/><file name="UploadResponse.php" hash="72febd4c94809063f0df96bd32eb0c97"/></dir><file name="XmlBuildException.php" hash="72ee8a17dab2c457bb821cd36bbff689"/><file name="XmlResponseParser.php" hash="94502547e6f7495e708652f72155c020"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Meinpaketcommon"><file name="AsyncController.php" hash="8a7bc982fcdfa959b839e0fc96db806f"/><file name="LogController.php" hash="465f5dfff9e21a1d0d5d7ec02ae5423e"/><file name="OrderImportController.php" hash="a6d656b467545f9884adb1bf2ba576ab"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="27e4abfd28368d0a2e69664fcc744c19"/><file name="config.xml" hash="f62cdcad95d359de95f51b513ec7758f"/><file name="system.xml" hash="e6e194ead56359c8c3dfad7f2005bec9"/></dir><dir name="sql"><dir name="meinpaketcommon_setup"><file name="mysql4-install-1.0.0.php" hash="619358ad78ac3123511e8d77f11dc39f"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="f44902d977f8aca8e25fd3f716b6d9ab"/><file name="mysql4-upgrade-1.1.1-1.2.0.php" hash="55ef95a239ccc835f3a4cc2de9ae9c5a"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="b2ab0b71945c9849bbabe9cac0280beb"/><file name="Dhl_Postpay.xml" hash="26852f055604828ffca341f7437db998"/><file name="Dhl_MeinPaketCommon.xml" hash="b926a30bca6162be2a951f9fb0f62e00"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="b7c47a9b557e7fae4c5309ed95628ab6"/><file name="dhlmeinpaket-product-export.php" hash="9cfb888cdec7047a488fd68e84f5c495"/><file name="dhlmeinpaket-request-bestprice.php" hash="8bbcdd8eb442861f7e94d44b8db99226"/><file name="dhlmeinpaket-order-import.php" hash="78ed4ffb48e530950bde3818e432b972"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/><file name="postpay.xml" hash="890708f41152cb5326040006a0d13bf1"/><file name="meinpaketcommon.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="postpay"><dir><dir name="checkout"><file name="image.phtml" hash="9283259a1e502907c0ba1c659f4ffe1b"/></dir><dir name="payment"><file name="redirect.phtml" hash="4d6e571020670c2069a2323b54f707ea"/></dir></dir><file name="checkout.phtml" hash="424e3ad9ab6f20dba21412ed9de315e6"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="869a9e19149fb25e4cb41fc67750facd"/><file name="postpay.xml" hash="5bef4c0511b6e60ed9abf1503849809e"/><file name="meinpaketcommon.xml" hash="c9f8a98599b050b01f0f5da8ba9378ab"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="d13ff26ad0f634c732a3baa2f25ddbad"/><file name="tab.phtml" hash="9124f82cd5f7ac58b2b5561381fb25c5"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="dde1fbeacc6fb333206c4c3344774a7f"/><file name="index.phtml" hash="fa21c3dbf009f7a9874196c06679f5fc"/></dir></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="steps.phtml" hash="70a343086b4559dc0e77173d9a799e39"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="b2aa75c347128272a8ebdf4e771c828f"/><file name="Dhl_Postpay.csv" hash="5c803ebc2d02c6272b6b7b05951faba6"/><file name="Dhl_MeinPaketCommon.csv" hash="c7b3ed7c2c3d6b24a9bd66925658a439"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaketcommon"><dir name="images"><file name="1.png" hash="3c2c9a82eb1ba846ba83fff02a7fb89d"/><file name="2.png" hash="ebbbb39b16a74905e9089014dadf27bb"/><file name="3.png" hash="4db863bc8404ba77b12b318d7932ca3d"/><file name="ayn_ger_tuete_produkte_aussen.jpg" hash="18acc68e20f2bc7e9417bb04cb64e2c5"/><file name="dhl_logo_kl.gif" hash="43fdd8c3b923355fdd27070feca49dc7"/><file name="loader.gif" hash="823d2e0f3345c88e9463a38a9c360817"/><file name="shadowtopbg.png" hash="9e274a269dcbe50256d1be49a192a9cd"/></dir><file name="module.css" hash="d477570fa7a981d64d2fdc79af098999"/><file name="module.js" hash="60aec009320033b3c786784934d5cdb2"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>