Innobyte_EmagMarketplace - Version 1.0.4

Version Notes

-

Download this release

Release Info

Developer Florin Mihai Savici
Extension Innobyte_EmagMarketplace
Version 1.0.4
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.4

README.md CHANGED
@@ -206,3 +206,10 @@ New payment methods added for eMAG(visible only in admin):
206
  ### 6. Install
207
  - Copy files / folders (design/skin files should be put in the default theme of your current package)
208
  - Refresh your cache, log out from admin and log back in.
 
 
 
 
 
 
 
206
  ### 6. Install
207
  - Copy files / folders (design/skin files should be put in the default theme of your current package)
208
  - Refresh your cache, log out from admin and log back in.
209
+
210
+
211
+ ### CHANGE LOG
212
+ - 1.0.1 - Cron config bug fix
213
+ - 1.0.2 - Added status filter to order synchronizing cron
214
+ - 1.0.3 - Fix for eMAG order field checks while synchronizing
215
+ - 1.0.4 - Product synchronization - commission type bug fix
app/code/local/Innobyte/EmagMarketplace/Block/Adminhtml/Sales/Order/Create/Billing/Method/Form.php CHANGED
@@ -28,7 +28,7 @@ class Innobyte_EmagMarketplace_Block_Adminhtml_Sales_Order_Create_Billing_Method
28
  foreach ($methods as $key => $method) {
29
  if (
30
  (!$this->getQuote()->getEmagOrderId() && strpos($method->getCode(), 'emag') !== false)
31
- || $method->getCode() == 'emag_unknown'
32
  ) {
33
  unset($methods[$key]);
34
  } elseif ($this->getQuote()->getEmagOrderId() && strpos($method->getCode(), 'emag') === false) {
28
  foreach ($methods as $key => $method) {
29
  if (
30
  (!$this->getQuote()->getEmagOrderId() && strpos($method->getCode(), 'emag') !== false)
31
+ || $method->getCode() == Innobyte_EmagMarketplace_Model_Payment_Method_Unknown::EMAG_UNKNOWN
32
  ) {
33
  unset($methods[$key]);
34
  } elseif ($this->getQuote()->getEmagOrderId() && strpos($method->getCode(), 'emag') === false) {
app/code/local/Innobyte/EmagMarketplace/Model/Api/Product.php CHANGED
@@ -470,12 +470,10 @@ class Innobyte_EmagMarketplace_Model_Api_Product
470
  ),
471
  ),
472
  'commission' => array(
473
- array(
474
- 'type' => $commissionType,
475
- 'value' => $emagProduct->getCommissionValue(),
476
- ),
477
  ),
478
- 'warranty' => intval($emagProduct->getWarranty()),
479
  );
480
 
481
  $helper = Mage::helper('innobyte_emag_marketplace');
470
  ),
471
  ),
472
  'commission' => array(
473
+ 'type' => $commissionType,
474
+ 'value' => $emagProduct->getCommissionValue(),
 
 
475
  ),
476
+ 'warranty' => intval($emagProduct->getWarranty())
477
  );
478
 
479
  $helper = Mage::helper('innobyte_emag_marketplace');
app/code/local/Innobyte/EmagMarketplace/Model/Api/Response.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * eMAG api respose.
4
  *
@@ -6,7 +7,6 @@
6
  * @package Innobyte_EmagMarketplace
7
  * @author Bogdan Constantinescu <bogdan.constantinescu@innobyte.com>
8
  */
9
-
10
  class Innobyte_EmagMarketplace_Model_Api_Response
11
  {
12
  /**
@@ -29,9 +29,8 @@ class Innobyte_EmagMarketplace_Model_Api_Response
29
  * @var array|int
30
  */
31
  protected $_results;
32
-
33
-
34
-
35
  /**
36
  * Constructor. initializes sttuffs.
37
  *
@@ -62,11 +61,12 @@ class Innobyte_EmagMarketplace_Model_Api_Response
62
  'Invalid api response format. "results" is missing.'
63
  );
64
  }
65
- if (!is_array($apiResponse['results'])
66
- && !is_numeric($apiResponse['results'])) {
67
- throw new Innobyte_EmagMarketplace_Exception(
68
- 'Invalid api response format. "results" has invalid format.'
69
- );
 
70
  }
71
  $this->_isError = (bool)$apiResponse['isError'];
72
  $this->_messages = $apiResponse['messages'];
1
  <?php
2
+
3
  /**
4
  * eMAG api respose.
5
  *
7
  * @package Innobyte_EmagMarketplace
8
  * @author Bogdan Constantinescu <bogdan.constantinescu@innobyte.com>
9
  */
 
10
  class Innobyte_EmagMarketplace_Model_Api_Response
11
  {
12
  /**
29
  * @var array|int
30
  */
31
  protected $_results;
32
+
33
+
 
34
  /**
35
  * Constructor. initializes sttuffs.
36
  *
61
  'Invalid api response format. "results" is missing.'
62
  );
63
  }
64
+ if (!is_array($apiResponse['results'])) {
65
+ if (!is_numeric($apiResponse['results']) && !is_bool($apiResponse['results'])) {
66
+ throw new Innobyte_EmagMarketplace_Exception(
67
+ 'Invalid api response format. "results" has invalid format.'
68
+ );
69
+ }
70
  }
71
  $this->_isError = (bool)$apiResponse['isError'];
72
  $this->_messages = $apiResponse['messages'];
app/code/local/Innobyte/EmagMarketplace/Model/Cron.php CHANGED
@@ -131,7 +131,14 @@ class Innobyte_EmagMarketplace_Model_Cron extends Mage_Core_Model_Abstract
131
  true
132
  );
133
 
134
- $api = $this->getOrderApiModel()->setStoreId($store->getId());
 
 
 
 
 
 
 
135
 
136
  /** @var $response Innobyte_EmagMarketplace_Model_Api_Response */
137
  $response = $api->count();
@@ -154,6 +161,11 @@ class Innobyte_EmagMarketplace_Model_Cron extends Mage_Core_Model_Abstract
154
  $response = $this->getOrderApiModel()
155
  ->setStoreId($store->getId())
156
  ->setCurrentPage($currentPage)
 
 
 
 
 
157
  ->read();
158
 
159
  if (!$this->_processEmagOrders($store, $response)) {
131
  true
132
  );
133
 
134
+ $api = $this->getOrderApiModel()
135
+ ->setStoreId($store->getId())
136
+ ->setData(
137
+ array(
138
+ 'status' => Innobyte_EmagMarketplace_Model_Order_Convert_Abstract::EMAG_STATUS_NEW
139
+ )
140
+ );
141
+
142
 
143
  /** @var $response Innobyte_EmagMarketplace_Model_Api_Response */
144
  $response = $api->count();
161
  $response = $this->getOrderApiModel()
162
  ->setStoreId($store->getId())
163
  ->setCurrentPage($currentPage)
164
+ ->setData(
165
+ array(
166
+ 'status' => Innobyte_EmagMarketplace_Model_Order_Convert_Abstract::EMAG_STATUS_NEW
167
+ )
168
+ )
169
  ->read();
170
 
171
  if (!$this->_processEmagOrders($store, $response)) {
app/code/local/Innobyte/EmagMarketplace/Model/Order/Convert/Emag.php CHANGED
@@ -96,7 +96,7 @@ class Innobyte_EmagMarketplace_Model_Order_Convert_Emag
96
  public function getEmagOrder($key = null)
97
  {
98
  if ($key) {
99
- if (!isset($this->_emagOrder[$key])) {
100
  throw new Innobyte_EmagMarketplace_Exception(
101
  $this->getHelper()->__(
102
  'Order property "%s" not found!', $key
@@ -218,7 +218,6 @@ class Innobyte_EmagMarketplace_Model_Order_Convert_Emag
218
  $transaction->addCommitCallback(array($order, 'save'));
219
  $transaction->save();
220
 
221
- //TODO: uncomment below line in final version; used to acknowledge order
222
  $this->acknowledgeEmagOrder($this->getOrder());
223
 
224
  } catch (Innobyte_EmagMarketplace_Exception $e) {
@@ -615,9 +614,9 @@ class Innobyte_EmagMarketplace_Model_Order_Convert_Emag
615
 
616
  $grandTotal = $this->getOrder()->getGrandTotal() + $shippingAmount;
617
  $baseGrandTotal = $this->getOrder()->getBaseGrandTotal() + $baseShippingAmount;
618
-
619
  $rateResult = Mage::getModel('innobyte_emag_marketplace/shipping_carrier_emag')
620
- ->collectRates(null);
621
  if (is_object($rateResult)) {
622
  $rate = current($rateResult->getAllRates());
623
  }
96
  public function getEmagOrder($key = null)
97
  {
98
  if ($key) {
99
+ if (!array_key_exists($key, $this->_emagOrder)) {
100
  throw new Innobyte_EmagMarketplace_Exception(
101
  $this->getHelper()->__(
102
  'Order property "%s" not found!', $key
218
  $transaction->addCommitCallback(array($order, 'save'));
219
  $transaction->save();
220
 
 
221
  $this->acknowledgeEmagOrder($this->getOrder());
222
 
223
  } catch (Innobyte_EmagMarketplace_Exception $e) {
614
 
615
  $grandTotal = $this->getOrder()->getGrandTotal() + $shippingAmount;
616
  $baseGrandTotal = $this->getOrder()->getBaseGrandTotal() + $baseShippingAmount;
617
+
618
  $rateResult = Mage::getModel('innobyte_emag_marketplace/shipping_carrier_emag')
619
+ ->collectRates(null);
620
  if (is_object($rateResult)) {
621
  $rate = current($rateResult->getAllRates());
622
  }
app/code/local/Innobyte/EmagMarketplace/etc/config.xml CHANGED
@@ -1,7 +1,7 @@
1
  <config>
2
  <modules>
3
  <Innobyte_EmagMarketplace>
4
- <version>1.0.1</version>
5
  </Innobyte_EmagMarketplace>
6
  </modules>
7
  <global>
1
  <config>
2
  <modules>
3
  <Innobyte_EmagMarketplace>
4
+ <version>1.0.4</version>
5
  </Innobyte_EmagMarketplace>
6
  </modules>
7
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Innobyte_EmagMarketplace</name>
4
- <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license>Innobyte License</license>
7
  <channel>community</channel>
@@ -11,9 +11,9 @@
11
  eMAG Marketplace integration extension by Innobyte helps Magento store owners publish their products on eMAG Marketplace and build up their reputation.</description>
12
  <notes>-</notes>
13
  <authors><author><name>Florin Mihai Savici</name><user>innobyte</user><email>management@innobyte.com</email></author></authors>
14
- <date>2015-05-15</date>
15
- <time>12:02:25</time>
16
- <contents><target name="magelocal"><dir name="Innobyte"><dir name="EmagMarketplace"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="EmagMarketplace.php" hash="84d28e6371a85f378038e5412158ebb3"/></dir></dir><file name="Edit.php" hash="56121505211aee840a3f896283b3cd05"/></dir></dir><dir name="Category"><file name="Grid.php" hash="17d5e61840283e320e455796b063b85b"/></dir><file name="Category.php" hash="b28cf6ff81b68b26299ea2d94f19ef1e"/><dir name="Form"><dir name="Element"><file name="Barcodes.php" hash="029b5cabf48a1475378ff9ec83242c72"/><file name="File.php" hash="2d19999b0bf01b33e07a1667e89bc5c3"/></dir><dir name="Field"><file name="LocalityId.php" hash="fda3d9e04a2aab30d3affcc377770571"/></dir></dir><dir name="Locality"><file name="Grid.php" hash="9d3c565f261f93d6b38d196be6b9fa20"/></dir><file name="Locality.php" hash="244d56f08dbfcb14924c6dc3607a12c3"/><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Billing"><dir name="Method"><file name="Form.php" hash="5c2d94f37317d23ab35292d5a9b55a85"/></dir></dir><dir name="Items"><file name="Grid.php" hash="c58d1f3342f10014fd8cf2b9fa2a7380"/></dir><dir name="Shipping"><dir name="Method"><file name="Form.php" hash="c6596c59ebfb7b7e73ab06da32c7adf5"/></dir></dir><dir name="Totals"><file name="Voucher.php" hash="547dbfe0c4107d8a041cd35d0d0358d5"/></dir></dir><dir name="View"><file name="Comment.php" hash="39a50c5d6ecf9622523f0948f7d1052a"/><dir name="Invoice"><file name="Popup.php" hash="e936b3a67ad5f4bd41cb3458978973e3"/><dir name="Upload"><file name="Form.php" hash="08661772c4b2d4dad04ac41b1bc6f2b0"/></dir><file name="Upload.php" hash="e7d9468ab75a4da81ad947ee35ea99aa"/></dir></dir></dir></dir><dir name="Vat"><file name="Grid.php" hash="6cf11cb0e2568052512dcd9af8a47416"/></dir><file name="Vat.php" hash="af6380f2b1a91540a85717d8f7cc024c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6729a41a90e4152ce08a63f1c4fe02db"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="04fa602912f05d53f76839a7057b27f1"/><file name="Awb.php" hash="7427827fe386c1fd48c47698d076cada"/><file name="Category.php" hash="abcaa037eca294794c7586a9324c7874"/><file name="Locality.php" hash="9229328cbd3387cfa41e3be79b79de87"/><file name="Order.php" hash="5dd5599ae6747cbe7912b47b78a9754a"/><file name="Product.php" hash="c374eb24fd7ac133195937fef8d9bb57"/><file name="Response.php" hash="4efb4046012f2a8eab44c0b0583fe5a0"/><file name="Vat.php" hash="1dadec377d4b25cad027b6299ece0f78"/></dir><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="e57ab404faa3111b1e379e83e3ef2a5e"/></dir></dir><dir name="Category"><file name="Characteristic.php" hash="c861ac8bb0485228056139ec2a5b2b1b"/><file name="Familytype.php" hash="c6ac762fa2f20261774c02490a157226"/></dir><file name="Category.php" hash="ebaf767fa33ad5af408286614dd20ef0"/><file name="Cron.php" hash="17626f9660cf080d536605bfe0d246a2"/><dir name="Customer"><file name="Attributes.php" hash="04866547213ce95f7c2caa5d426ba681"/><file name="Form.php" hash="259c8eba0ff64f7aa2559f46f9bd0bd4"/></dir><dir name="Invoice"><dir name="Pdf"><dir name="Total"><file name="Voucher.php" hash="e92be3b9b90677f0ff7ede6721eab3bc"/></dir></dir></dir><dir name="Locality"><file name="Flag.php" hash="a4e04313b24d2f32e9a7c101b7a3ebf4"/></dir><file name="Locality.php" hash="9eebf51b580234af3279d22801368c24"/><dir name="Order"><dir name="Convert"><file name="Abstract.php" hash="7d487712955771f834bd2daaaaf891d4"/><dir name="Emag"><file name="Update.php" hash="1140b2b3b114f24ec31b619e8d2d9501"/></dir><file name="Emag.php" hash="fe123ac85757769d2a1ef58854a39cfd"/><file name="Magento.php" hash="735502541dfab539c8b306bc2f8f991e"/></dir></dir><dir name="Payment"><dir name="Method"><file name="Banktransfer.php" hash="de16ae6d2bfbe44efae91de5cb51c9c9"/><file name="Cashondelivery.php" hash="31d5608e9b4c2e47b03b70d922114ee1"/><file name="Cc.php" hash="054e75f54dbdb92dd92c79cc69e6006a"/><file name="Unknown.php" hash="c2bfa3c318a5d14867589a6d162d3014"/></dir></dir><file name="Product.php" hash="c8c910e60151bb1bb22c40ebaf12bc75"/><dir name="Resource"><dir name="Category"><dir name="Characteristic"><file name="Collection.php" hash="199a72bfe17fc978980cc466df2e6bf1"/></dir><file name="Characteristic.php" hash="a6a7f440c274a8dc70e21601461faa43"/><file name="Collection.php" hash="58380ccc531ad65837eda3d1ec326279"/><dir name="Familytype"><file name="Collection.php" hash="b51fb1747d1c563605801a52cddbc807"/></dir><file name="Familytype.php" hash="252f23169c78af34f1101c5c1ef00429"/></dir><file name="Category.php" hash="d0b00b7a79d42b1c8264215af8f6f25d"/><dir name="Locality"><file name="Collection.php" hash="919d2ec66fde1bfdfdba7a4351ec6e5b"/></dir><file name="Locality.php" hash="984483f1f254c773dc03f84e7ecfc842"/><dir name="Product"><file name="Collection.php" hash="2b269b788215822b1e836f1685eef1c6"/></dir><file name="Product.php" hash="8086bddef12d45e3b700e64f7a5154cd"/><dir name="Sales"><file name="Abstract.php" hash="4e28e8cea40a92c8551b9bb61fcc9168"/><dir name="Address"><file name="Abstract.php" hash="c95b407223fec1067ea66080fdf10677"/></dir><dir name="Invoice"><file name="Collection.php" hash="be9a2e37e986174327d4e532175a1a98"/></dir><file name="Invoice.php" hash="729574058005ed24ac39da04366d6c51"/><dir name="Item"><file name="Abstract.php" hash="a750e4cfcb85af0781047fa917e78d5c"/></dir><dir name="Order"><file name="Address.php" hash="ded5c157ac93c958d2c8149e97ab7b8a"/><dir name="Item"><file name="Collection.php" hash="cc749faeb2b194bab19c8b2f6657bf23"/></dir><file name="Item.php" hash="192143c67ae67ce77d5a69c07edc5f11"/><dir name="Voucher"><file name="Collection.php" hash="1e99b2c9e29eae6a7ae58d2f56acd01d"/></dir><file name="Voucher.php" hash="307aba5c74dbcd3a99ba37f8f0c72df2"/></dir><file name="Order.php" hash="f560e8f1bf96e2e6a41a692d5fb6c024"/><dir name="Quote"><file name="Address.php" hash="dd2ed7664775fe2d017a62e99f185b8b"/><dir name="Voucher"><file name="Collection.php" hash="d92263c78194131f1f93b965309dea04"/></dir><file name="Voucher.php" hash="75da1101f5ef453b6f796a127120b0d2"/></dir><file name="Quote.php" hash="2e451c02bd215c279a39f33156e464e4"/><dir name="Voucher"><file name="Abstract.php" hash="c4c39040b36e50120a227b6e39138fa5"/></dir></dir><dir name="Vat"><file name="Collection.php" hash="960899654592afb847d3bbf08a812d4d"/></dir><file name="Vat.php" hash="bd96a9809e1732c0192835443474a41b"/></dir><dir name="Sales"><file name="Abstract.php" hash="a631cb89d8d3f1613e332573330539e8"/><dir name="Address"><file name="Abstract.php" hash="ba8a438491d2b5de442bee67541594d0"/></dir><file name="Invoice.php" hash="70a156a393c81c2704e510af89e13631"/><dir name="Item"><file name="Abstract.php" hash="d308f8ad6b1aeaa1eade7c7457ab0ef4"/></dir><file name="Observer.php" hash="08f7c72a45db4b2ef17652b8ad6aa5ed"/><dir name="Order"><file name="Address.php" hash="60ae8af915f7ef591a99ce963ace9c70"/><dir name="Creditmemo"><file name="Total.php" hash="2ae049c6b5d3e97b2df36c532eaf1079"/></dir><dir name="Invoice"><file name="Total.php" hash="a0749ac2cdaef5242f90e377cfb22094"/></dir><file name="Item.php" hash="56fd503ed25e09569b4b220f1ed828cd"/><file name="Status.php" hash="2cc44f61150581a931c76a7224402724"/><file name="Voucher.php" hash="bde2d05e031f136aaf59478b842d68e6"/></dir><file name="Order.php" hash="e345960b8361cf62e57f4e10cbc890a1"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Voucher.php" hash="360834496dd8e6ba2f2ebe5481cb5357"/></dir></dir><file name="Address.php" hash="9e8e4ee7aa202b4940e1d532205db098"/><file name="Voucher.php" hash="e1364b975930aa4bc13fb5d4348ceb55"/></dir><file name="Quote.php" hash="30ad86af4d35ecb361feda0892f1ad78"/><dir name="Voucher"><file name="Abstract.php" hash="5db452297c71ba7cb2452347e8950131"/></dir></dir><dir name="Shipping"><dir name="Carrier"><file name="Emag.php" hash="70808be244b81ac6829e87a4a6e3349c"/></dir></dir><dir name="Source"><file name="Category.php" hash="1c23985bd28e00317bf9b85b6ec10741"/><file name="CommissionTypes.php" hash="e7c14db1490db8b4b9c0413d4f4f40aa"/><dir name="Customer"><dir name="Address"><dir name="Attributes"><file name="Legalentity.php" hash="996caae77c6a7cf32e92343ab5a0ab4e"/></dir></dir></dir><file name="FamilyType.php" hash="170f2cdc201c2e0d41adfaefa5309840"/><file name="OfferStatus.php" hash="0d08ef9e0379014e97f732b3ebd3bb71"/><file name="Vat.php" hash="74fc94ccf2fc63fb22697e44f610a9c7"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Prefix"><file name="Abstract.php" hash="18fbf03dc6505be1cfb260cde745b953"/><file name="Creditmemo.php" hash="adc1566bb71632f033ef90fcd2c7fc81"/><file name="Invoice.php" hash="369df8e80686fc436864bba9ec1f96bd"/></dir></dir></dir></dir><file name="Vat.php" hash="6f8024e5bfc76ccd1c827d81bda48d25"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Emag"><file name="CategoryController.php" hash="e42dd195c112b1d2230ff805abed16f3"/><file name="LocalityController.php" hash="181dd7289b8c45b377e3a696470ee7df"/><file name="ProductController.php" hash="4b2e8dcdcc2d41b9d7256e339defbb39"/><file name="VatController.php" hash="16f558732b4fa7a2bb08b7583816b017"/><file name="VoucherController.php" hash="19bf0a8a753c171447b8bf98069ad26f"/></dir><dir name="Sales"><dir name="Invoice"><file name="UploadController.php" hash="888399443eb8b0f28c91e698b34d9f0e"/></dir><file name="OrderController.php" hash="b502d7b8b7a2fa59c1c9ac32cbfe41fb"/></dir></dir><file name="InvoiceController.php" hash="8df75fd59d862afaaa7675d7831b9202"/></dir><dir name="data"><dir name="innobyte_emag_marketplace_setup"><file name="data-install-1.0.0.php" hash="e5d5342a60398c63955fe537b63699e3"/></dir></dir><dir name="docs"><file name="eMAG Markeplace API documentation v3.6.docx" hash="e5cf25307fc1111c12d2e10825aff517"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aea476a16999dabe7c929151a86493a7"/><file name="config.xml" hash="f6a2e37bf14ee7d1bb77982d3b8fd21d"/><file name="jstranslator.xml" hash="2bad6817b7f348bcba8048d2c44004f3"/><file name="system.xml" hash="0776627962229b463003f7d4fa9325af"/></dir><dir name="sql"><dir name="innobyte_emag_marketplace_setup"><file name="install-1.0.0.php" hash="ea105ca65a3328b3e7228a630583b7ce"/></dir></dir></dir><file name="Exception.php" hash="8dd468af95b0bc4dedb6563e962f06e4"/></dir><dir name="Core"><dir><dir name="Block"><file name="Shop.php" hash="9fb4bf22cb95f3de1c62fdcf699d06b5"/><dir name="System"><dir name="Config"><file name="Button.php" hash="cb37bfd01290995adbe71e12afaf0871"/><dir name="Form"><dir name="Fieldset"><file name="Extensions.php" hash="5d026a00ef966334874c14aa66bacc29"/><file name="Shop.php" hash="3f888c968145b6969a252e4d54605bce"/></dir><dir name="Renderer"><file name="Field.php" hash="933192bb4da4eb0ba4b69deceec3c4a8"/><file name="Website.php" hash="779612dbd02ccd216ecc295fb6f00485"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Config.php" hash="9cf989d6077f4f6d896c7969fb70e4f3"/><file name="Data.php" hash="8e46d8fddeab5556b075d9dd24902233"/><file name="Versions.php" hash="3e7125101f4c191d53f01deb2a1dfe16"/></dir><dir name="Model"><file name="Data.php" hash="f82288d94a83518737e28a1f2addb2ec"/><file name="Debug.php" hash="92223602c9d3d907bc13b57294f6d390"/><file name="Feed.php" hash="ce1f5b9c91a5e248c2baefdbfbdb89d0"/><dir name="Source"><dir name="Config"><file name="Enabledisable.php" hash="b9a4230779dd6f1f89d87c9a9dc2417f"/></dir><dir name="Feed"><file name="Type.php" hash="1fd10cc387061e08661faa540d5bb64e"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="f9647f277d74e473970fa67e6e1465f3"/></dir></dir><dir name="etc"><file name="config.xml" hash="6b6bcccfd131be35210c716ae75e747e"/><file name="system.xml" hash="2d15facb3d7ada2e74940eb90fe41afd"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Innobyte_EmagMarketplace.xml" hash="da8e2a8d64721eb5d9f512fe72fa1dde"/><file name="Innobyte_Core.xml" hash="0f11fbe094b94c3fd2233e8e96aa972d"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="innobyte"><file name="emag_marketplace.xml" hash="1233947fb7451a46a922d48c7a3f2ffd"/><file name="core.xml" hash="93f1070ea6bdbf4d84e7892a5ac0f400"/></dir></dir><dir name="template"><dir name="innobyte"><dir name="emag_marketplace"><dir><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><file name="emag_marketplace_form_after.phtml" hash="d5c2f3121179ff57ec656b3f118b9767"/></dir></dir><file name="edit.phtml" hash="eecad18f7709d130032067d24739c7ee"/></dir></dir><dir name="sales"><dir name="order"><dir name="create"><dir name="form"><file name="address.phtml" hash="a9b386c72699305a98393b5cd0d74943"/></dir><dir name="items"><file name="grid.phtml" hash="d38172cd6a2336ea908a811e4add9eee"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="83231a4b5f764ce9ba0a025e923133a8"/></dir></dir><dir name="totals"><file name="voucher.phtml" hash="cad64614d2d39235749d609acfaa0d7e"/></dir></dir><dir name="shipment"><dir name="packaging"><file name="popup.phtml" hash="23745250ff3dd4097c2db02724da86a5"/></dir></dir><file name="totals.phtml" hash="75721998e3b54102f00e5811035c5635"/><dir name="view"><file name="comment.phtml" hash="077590b70fdca143bdacdf6417eafe59"/><dir name="invoice"><file name="popup.phtml" hash="3e66f62b99db17b25508cb2ea5d98d75"/></dir><dir name="tab"><file name="info.phtml" hash="cb3cb174b4cc53b2f027133fac258603"/></dir></dir></dir></dir></dir><file name="city-autocomplete.phtml" hash="d65cdd8eb3da972acd5d1034d9d6fb5c"/></dir><dir name="core"><file name="button.phtml" hash="69d0764414ca2f5479fa33cb959938ff"/><dir><dir name="debugger_email"><file name="cron.phtml" hash="579efa83212bc5c40040661bfa5f6f85"/><file name="disabled_extensions.phtml" hash="c3ad7a6601ec3e0728f7e8f0b6f954a7"/><file name="general.phtml" hash="55f57190f950090953dced36f29327bc"/><file name="inno_config_data.phtml" hash="404e799ac17b746af9b839cf5355cd2e"/><file name="inno_extensions.phtml" hash="f3f2cdc4de54d9fd0bbc16662b8b9130"/><file name="rewrites.phtml" hash="4d5ef250221d78738b517805376593be"/></dir></dir><file name="shop.phtml" hash="c01bda6de32abd29133e21314464a378"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Innobyte_EmagMarketplace.csv" hash="90af690df55103cacfae3a8785eab751"/><dir name="template"><dir name="email"><dir name="innobyte"><dir name="emag_marketplace"><file name="errors.html" hash="3ee9c66da915736970df64fd9997b134"/></dir><dir name="core"><file name="debug.html" hash="d676f5c3000f50f8ff1253be2a550ff1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="innobyte"><dir name="emag_marketplace"><file name="style.css" hash="5848cd48fb6ad98ab5ce7017b2893187"/></dir></dir></dir><dir name="images"><dir name="innobyte"><dir name="emag_marketplace"><file name="pdf_icon.png" hash="28cdd201144351e73035a9a0e87873c0"/><file name="trash.png" hash="50967defe5ec53849432c8aa9088a0f4"/></dir><dir name="core"><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="icon-enabled.png" hash="5fa7c06b312cbea3675e844686e434af"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/></dir></dir></dir><dir name="js"><dir name="innobyte"><dir name="emag_marketplace"><file name="category.js" hash="93e14d1fd6ead1dc89bd61cde22cb3be"/><file name="locality.js" hash="fd0d491529f49caeca258805dd6da7e0"/><file name="packaging.js" hash="2f7f4b636461a2d9ddfbb84690726a66"/><file name="product.js" hash="6475229cd509c55c63f676297f4579d3"/><dir><dir name="protolicius"><file name="README.rdoc" hash="94cf4a315a18d6a7e2b4a16081001549"/><file name="event.simulate.js" hash="ff2cb029b4f6579bbf7caec22d4d07ee"/></dir></dir><file name="vat.js" hash="93d3ff86c70a2e4297bcd1e7fbd62cf0"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="innobyte"><dir name="core"><file name="init.js" hash="48517ed746f15553e7adc8f86983f51f"/></dir></dir></dir><dir name="."><file name="README.md" hash="8505df682967237157bb1b5973796393"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Innobyte_EmagMarketplace</name>
4
+ <version>1.0.4</version>
5
  <stability>stable</stability>
6
  <license>Innobyte License</license>
7
  <channel>community</channel>
11
  eMAG Marketplace integration extension by Innobyte helps Magento store owners publish their products on eMAG Marketplace and build up their reputation.</description>
12
  <notes>-</notes>
13
  <authors><author><name>Florin Mihai Savici</name><user>innobyte</user><email>management@innobyte.com</email></author></authors>
14
+ <date>2015-05-26</date>
15
+ <time>13:45:22</time>
16
+ <contents><target name="magelocal"><dir name="Innobyte"><dir name="EmagMarketplace"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="EmagMarketplace.php" hash="84d28e6371a85f378038e5412158ebb3"/></dir></dir><file name="Edit.php" hash="56121505211aee840a3f896283b3cd05"/></dir></dir><dir name="Category"><file name="Grid.php" hash="17d5e61840283e320e455796b063b85b"/></dir><file name="Category.php" hash="b28cf6ff81b68b26299ea2d94f19ef1e"/><dir name="Form"><dir name="Element"><file name="Barcodes.php" hash="029b5cabf48a1475378ff9ec83242c72"/><file name="File.php" hash="2d19999b0bf01b33e07a1667e89bc5c3"/></dir><dir name="Field"><file name="LocalityId.php" hash="fda3d9e04a2aab30d3affcc377770571"/></dir></dir><dir name="Locality"><file name="Grid.php" hash="9d3c565f261f93d6b38d196be6b9fa20"/></dir><file name="Locality.php" hash="244d56f08dbfcb14924c6dc3607a12c3"/><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Billing"><dir name="Method"><file name="Form.php" hash="6242c0e1592f5ee96cb2e179aecaf3b1"/></dir></dir><dir name="Items"><file name="Grid.php" hash="c58d1f3342f10014fd8cf2b9fa2a7380"/></dir><dir name="Shipping"><dir name="Method"><file name="Form.php" hash="c6596c59ebfb7b7e73ab06da32c7adf5"/></dir></dir><dir name="Totals"><file name="Voucher.php" hash="547dbfe0c4107d8a041cd35d0d0358d5"/></dir></dir><dir name="View"><file name="Comment.php" hash="39a50c5d6ecf9622523f0948f7d1052a"/><dir name="Invoice"><file name="Popup.php" hash="e936b3a67ad5f4bd41cb3458978973e3"/><dir name="Upload"><file name="Form.php" hash="08661772c4b2d4dad04ac41b1bc6f2b0"/></dir><file name="Upload.php" hash="e7d9468ab75a4da81ad947ee35ea99aa"/></dir></dir></dir></dir><dir name="Vat"><file name="Grid.php" hash="6cf11cb0e2568052512dcd9af8a47416"/></dir><file name="Vat.php" hash="af6380f2b1a91540a85717d8f7cc024c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6729a41a90e4152ce08a63f1c4fe02db"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="04fa602912f05d53f76839a7057b27f1"/><file name="Awb.php" hash="7427827fe386c1fd48c47698d076cada"/><file name="Category.php" hash="abcaa037eca294794c7586a9324c7874"/><file name="Locality.php" hash="9229328cbd3387cfa41e3be79b79de87"/><file name="Order.php" hash="5dd5599ae6747cbe7912b47b78a9754a"/><file name="Product.php" hash="b047daef630abe87ba0520797bec0191"/><file name="Response.php" hash="96586001de9ca54796479701694a6f30"/><file name="Vat.php" hash="1dadec377d4b25cad027b6299ece0f78"/></dir><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="e57ab404faa3111b1e379e83e3ef2a5e"/></dir></dir><dir name="Category"><file name="Characteristic.php" hash="c861ac8bb0485228056139ec2a5b2b1b"/><file name="Familytype.php" hash="c6ac762fa2f20261774c02490a157226"/></dir><file name="Category.php" hash="ebaf767fa33ad5af408286614dd20ef0"/><file name="Cron.php" hash="a7517f636098255fdc4ea2db56a53483"/><dir name="Customer"><file name="Attributes.php" hash="04866547213ce95f7c2caa5d426ba681"/><file name="Form.php" hash="259c8eba0ff64f7aa2559f46f9bd0bd4"/></dir><dir name="Invoice"><dir name="Pdf"><dir name="Total"><file name="Voucher.php" hash="e92be3b9b90677f0ff7ede6721eab3bc"/></dir></dir></dir><dir name="Locality"><file name="Flag.php" hash="a4e04313b24d2f32e9a7c101b7a3ebf4"/></dir><file name="Locality.php" hash="9eebf51b580234af3279d22801368c24"/><dir name="Order"><dir name="Convert"><file name="Abstract.php" hash="7d487712955771f834bd2daaaaf891d4"/><dir name="Emag"><file name="Update.php" hash="1140b2b3b114f24ec31b619e8d2d9501"/></dir><file name="Emag.php" hash="dba46141f4aa5be6f7f977c51d622059"/><file name="Magento.php" hash="735502541dfab539c8b306bc2f8f991e"/></dir></dir><dir name="Payment"><dir name="Method"><file name="Banktransfer.php" hash="de16ae6d2bfbe44efae91de5cb51c9c9"/><file name="Cashondelivery.php" hash="31d5608e9b4c2e47b03b70d922114ee1"/><file name="Cc.php" hash="054e75f54dbdb92dd92c79cc69e6006a"/><file name="Unknown.php" hash="c2bfa3c318a5d14867589a6d162d3014"/></dir></dir><file name="Product.php" hash="c8c910e60151bb1bb22c40ebaf12bc75"/><dir name="Resource"><dir name="Category"><dir name="Characteristic"><file name="Collection.php" hash="199a72bfe17fc978980cc466df2e6bf1"/></dir><file name="Characteristic.php" hash="a6a7f440c274a8dc70e21601461faa43"/><file name="Collection.php" hash="58380ccc531ad65837eda3d1ec326279"/><dir name="Familytype"><file name="Collection.php" hash="b51fb1747d1c563605801a52cddbc807"/></dir><file name="Familytype.php" hash="252f23169c78af34f1101c5c1ef00429"/></dir><file name="Category.php" hash="d0b00b7a79d42b1c8264215af8f6f25d"/><dir name="Locality"><file name="Collection.php" hash="919d2ec66fde1bfdfdba7a4351ec6e5b"/></dir><file name="Locality.php" hash="984483f1f254c773dc03f84e7ecfc842"/><dir name="Product"><file name="Collection.php" hash="2b269b788215822b1e836f1685eef1c6"/></dir><file name="Product.php" hash="8086bddef12d45e3b700e64f7a5154cd"/><dir name="Sales"><file name="Abstract.php" hash="4e28e8cea40a92c8551b9bb61fcc9168"/><dir name="Address"><file name="Abstract.php" hash="c95b407223fec1067ea66080fdf10677"/></dir><dir name="Invoice"><file name="Collection.php" hash="be9a2e37e986174327d4e532175a1a98"/></dir><file name="Invoice.php" hash="729574058005ed24ac39da04366d6c51"/><dir name="Item"><file name="Abstract.php" hash="a750e4cfcb85af0781047fa917e78d5c"/></dir><dir name="Order"><file name="Address.php" hash="ded5c157ac93c958d2c8149e97ab7b8a"/><dir name="Item"><file name="Collection.php" hash="cc749faeb2b194bab19c8b2f6657bf23"/></dir><file name="Item.php" hash="192143c67ae67ce77d5a69c07edc5f11"/><dir name="Voucher"><file name="Collection.php" hash="1e99b2c9e29eae6a7ae58d2f56acd01d"/></dir><file name="Voucher.php" hash="307aba5c74dbcd3a99ba37f8f0c72df2"/></dir><file name="Order.php" hash="f560e8f1bf96e2e6a41a692d5fb6c024"/><dir name="Quote"><file name="Address.php" hash="dd2ed7664775fe2d017a62e99f185b8b"/><dir name="Voucher"><file name="Collection.php" hash="d92263c78194131f1f93b965309dea04"/></dir><file name="Voucher.php" hash="75da1101f5ef453b6f796a127120b0d2"/></dir><file name="Quote.php" hash="2e451c02bd215c279a39f33156e464e4"/><dir name="Voucher"><file name="Abstract.php" hash="c4c39040b36e50120a227b6e39138fa5"/></dir></dir><dir name="Vat"><file name="Collection.php" hash="960899654592afb847d3bbf08a812d4d"/></dir><file name="Vat.php" hash="bd96a9809e1732c0192835443474a41b"/></dir><dir name="Sales"><file name="Abstract.php" hash="a631cb89d8d3f1613e332573330539e8"/><dir name="Address"><file name="Abstract.php" hash="ba8a438491d2b5de442bee67541594d0"/></dir><file name="Invoice.php" hash="70a156a393c81c2704e510af89e13631"/><dir name="Item"><file name="Abstract.php" hash="d308f8ad6b1aeaa1eade7c7457ab0ef4"/></dir><file name="Observer.php" hash="08f7c72a45db4b2ef17652b8ad6aa5ed"/><dir name="Order"><file name="Address.php" hash="60ae8af915f7ef591a99ce963ace9c70"/><dir name="Creditmemo"><file name="Total.php" hash="2ae049c6b5d3e97b2df36c532eaf1079"/></dir><dir name="Invoice"><file name="Total.php" hash="a0749ac2cdaef5242f90e377cfb22094"/></dir><file name="Item.php" hash="56fd503ed25e09569b4b220f1ed828cd"/><file name="Status.php" hash="2cc44f61150581a931c76a7224402724"/><file name="Voucher.php" hash="bde2d05e031f136aaf59478b842d68e6"/></dir><file name="Order.php" hash="e345960b8361cf62e57f4e10cbc890a1"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Voucher.php" hash="360834496dd8e6ba2f2ebe5481cb5357"/></dir></dir><file name="Address.php" hash="9e8e4ee7aa202b4940e1d532205db098"/><file name="Voucher.php" hash="e1364b975930aa4bc13fb5d4348ceb55"/></dir><file name="Quote.php" hash="30ad86af4d35ecb361feda0892f1ad78"/><dir name="Voucher"><file name="Abstract.php" hash="5db452297c71ba7cb2452347e8950131"/></dir></dir><dir name="Shipping"><dir name="Carrier"><file name="Emag.php" hash="70808be244b81ac6829e87a4a6e3349c"/></dir></dir><dir name="Source"><file name="Category.php" hash="1c23985bd28e00317bf9b85b6ec10741"/><file name="CommissionTypes.php" hash="e7c14db1490db8b4b9c0413d4f4f40aa"/><dir name="Customer"><dir name="Address"><dir name="Attributes"><file name="Legalentity.php" hash="996caae77c6a7cf32e92343ab5a0ab4e"/></dir></dir></dir><file name="FamilyType.php" hash="170f2cdc201c2e0d41adfaefa5309840"/><file name="OfferStatus.php" hash="0d08ef9e0379014e97f732b3ebd3bb71"/><file name="Vat.php" hash="74fc94ccf2fc63fb22697e44f610a9c7"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Prefix"><file name="Abstract.php" hash="18fbf03dc6505be1cfb260cde745b953"/><file name="Creditmemo.php" hash="adc1566bb71632f033ef90fcd2c7fc81"/><file name="Invoice.php" hash="369df8e80686fc436864bba9ec1f96bd"/></dir></dir></dir></dir><file name="Vat.php" hash="6f8024e5bfc76ccd1c827d81bda48d25"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Emag"><file name="CategoryController.php" hash="e42dd195c112b1d2230ff805abed16f3"/><file name="LocalityController.php" hash="181dd7289b8c45b377e3a696470ee7df"/><file name="ProductController.php" hash="4b2e8dcdcc2d41b9d7256e339defbb39"/><file name="VatController.php" hash="16f558732b4fa7a2bb08b7583816b017"/><file name="VoucherController.php" hash="19bf0a8a753c171447b8bf98069ad26f"/></dir><dir name="Sales"><dir name="Invoice"><file name="UploadController.php" hash="888399443eb8b0f28c91e698b34d9f0e"/></dir><file name="OrderController.php" hash="b502d7b8b7a2fa59c1c9ac32cbfe41fb"/></dir></dir><file name="InvoiceController.php" hash="8df75fd59d862afaaa7675d7831b9202"/></dir><dir name="data"><dir name="innobyte_emag_marketplace_setup"><file name="data-install-1.0.0.php" hash="e5d5342a60398c63955fe537b63699e3"/></dir></dir><dir name="docs"><file name="eMAG Markeplace API documentation v3.6.docx" hash="e5cf25307fc1111c12d2e10825aff517"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aea476a16999dabe7c929151a86493a7"/><file name="config.xml" hash="2de3edc56f20e435eae01e85b31f15b5"/><file name="jstranslator.xml" hash="2bad6817b7f348bcba8048d2c44004f3"/><file name="system.xml" hash="0776627962229b463003f7d4fa9325af"/></dir><dir name="sql"><dir name="innobyte_emag_marketplace_setup"><file name="install-1.0.0.php" hash="ea105ca65a3328b3e7228a630583b7ce"/></dir></dir></dir><file name="Exception.php" hash="8dd468af95b0bc4dedb6563e962f06e4"/></dir><dir name="Core"><dir><dir name="Block"><file name="Shop.php" hash="9fb4bf22cb95f3de1c62fdcf699d06b5"/><dir name="System"><dir name="Config"><file name="Button.php" hash="cb37bfd01290995adbe71e12afaf0871"/><dir name="Form"><dir name="Fieldset"><file name="Extensions.php" hash="5d026a00ef966334874c14aa66bacc29"/><file name="Shop.php" hash="3f888c968145b6969a252e4d54605bce"/></dir><dir name="Renderer"><file name="Field.php" hash="933192bb4da4eb0ba4b69deceec3c4a8"/><file name="Website.php" hash="779612dbd02ccd216ecc295fb6f00485"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Config.php" hash="9cf989d6077f4f6d896c7969fb70e4f3"/><file name="Data.php" hash="8e46d8fddeab5556b075d9dd24902233"/><file name="Versions.php" hash="3e7125101f4c191d53f01deb2a1dfe16"/></dir><dir name="Model"><file name="Data.php" hash="f82288d94a83518737e28a1f2addb2ec"/><file name="Debug.php" hash="92223602c9d3d907bc13b57294f6d390"/><file name="Feed.php" hash="ce1f5b9c91a5e248c2baefdbfbdb89d0"/><dir name="Source"><dir name="Config"><file name="Enabledisable.php" hash="b9a4230779dd6f1f89d87c9a9dc2417f"/></dir><dir name="Feed"><file name="Type.php" hash="1fd10cc387061e08661faa540d5bb64e"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="f9647f277d74e473970fa67e6e1465f3"/></dir></dir><dir name="etc"><file name="config.xml" hash="6b6bcccfd131be35210c716ae75e747e"/><file name="system.xml" hash="2d15facb3d7ada2e74940eb90fe41afd"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Innobyte_EmagMarketplace.xml" hash="da8e2a8d64721eb5d9f512fe72fa1dde"/><file name="Innobyte_Core.xml" hash="0f11fbe094b94c3fd2233e8e96aa972d"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="innobyte"><file name="emag_marketplace.xml" hash="1233947fb7451a46a922d48c7a3f2ffd"/><file name="core.xml" hash="93f1070ea6bdbf4d84e7892a5ac0f400"/></dir></dir><dir name="template"><dir name="innobyte"><dir name="emag_marketplace"><dir><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><file name="emag_marketplace_form_after.phtml" hash="d5c2f3121179ff57ec656b3f118b9767"/></dir></dir><file name="edit.phtml" hash="eecad18f7709d130032067d24739c7ee"/></dir></dir><dir name="sales"><dir name="order"><dir name="create"><dir name="form"><file name="address.phtml" hash="a9b386c72699305a98393b5cd0d74943"/></dir><dir name="items"><file name="grid.phtml" hash="d38172cd6a2336ea908a811e4add9eee"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="83231a4b5f764ce9ba0a025e923133a8"/></dir></dir><dir name="totals"><file name="voucher.phtml" hash="cad64614d2d39235749d609acfaa0d7e"/></dir></dir><dir name="shipment"><dir name="packaging"><file name="popup.phtml" hash="23745250ff3dd4097c2db02724da86a5"/></dir></dir><file name="totals.phtml" hash="75721998e3b54102f00e5811035c5635"/><dir name="view"><file name="comment.phtml" hash="077590b70fdca143bdacdf6417eafe59"/><dir name="invoice"><file name="popup.phtml" hash="3e66f62b99db17b25508cb2ea5d98d75"/></dir><dir name="tab"><file name="info.phtml" hash="cb3cb174b4cc53b2f027133fac258603"/></dir></dir></dir></dir></dir><file name="city-autocomplete.phtml" hash="d65cdd8eb3da972acd5d1034d9d6fb5c"/></dir><dir name="core"><file name="button.phtml" hash="69d0764414ca2f5479fa33cb959938ff"/><dir><dir name="debugger_email"><file name="cron.phtml" hash="579efa83212bc5c40040661bfa5f6f85"/><file name="disabled_extensions.phtml" hash="c3ad7a6601ec3e0728f7e8f0b6f954a7"/><file name="general.phtml" hash="55f57190f950090953dced36f29327bc"/><file name="inno_config_data.phtml" hash="404e799ac17b746af9b839cf5355cd2e"/><file name="inno_extensions.phtml" hash="f3f2cdc4de54d9fd0bbc16662b8b9130"/><file name="rewrites.phtml" hash="4d5ef250221d78738b517805376593be"/></dir></dir><file name="shop.phtml" hash="c01bda6de32abd29133e21314464a378"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Innobyte_EmagMarketplace.csv" hash="90af690df55103cacfae3a8785eab751"/><dir name="template"><dir name="email"><dir name="innobyte"><dir name="emag_marketplace"><file name="errors.html" hash="3ee9c66da915736970df64fd9997b134"/></dir><dir name="core"><file name="debug.html" hash="d676f5c3000f50f8ff1253be2a550ff1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="innobyte"><dir name="emag_marketplace"><file name="style.css" hash="5848cd48fb6ad98ab5ce7017b2893187"/></dir></dir></dir><dir name="images"><dir name="innobyte"><dir name="emag_marketplace"><file name="pdf_icon.png" hash="28cdd201144351e73035a9a0e87873c0"/><file name="trash.png" hash="50967defe5ec53849432c8aa9088a0f4"/></dir><dir name="core"><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="icon-enabled.png" hash="5fa7c06b312cbea3675e844686e434af"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/></dir></dir></dir><dir name="js"><dir name="innobyte"><dir name="emag_marketplace"><file name="category.js" hash="93e14d1fd6ead1dc89bd61cde22cb3be"/><file name="locality.js" hash="fd0d491529f49caeca258805dd6da7e0"/><file name="packaging.js" hash="2f7f4b636461a2d9ddfbb84690726a66"/><file name="product.js" hash="6475229cd509c55c63f676297f4579d3"/><dir><dir name="protolicius"><file name="README.rdoc" hash="94cf4a315a18d6a7e2b4a16081001549"/><file name="event.simulate.js" hash="ff2cb029b4f6579bbf7caec22d4d07ee"/></dir></dir><file name="vat.js" hash="93d3ff86c70a2e4297bcd1e7fbd62cf0"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="innobyte"><dir name="core"><file name="init.js" hash="48517ed746f15553e7adc8f86983f51f"/></dir></dir></dir><dir name="."><file name="README.md" hash="0b064710af30dadcd170dcb2585b2161"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>