Version Notes
-
Download this release
Release Info
Developer | Florin Mihai Savici |
Extension | Innobyte_EmagMarketplace |
Version | 1.1.13 |
Comparing to | |
See all releases |
Code changes from version 1.1.9 to 1.1.13
- User Guide eMAG Marketplace.pdf +0 -0
- app/code/local/Innobyte/EmagMarketplace/Model/Api/Abstract.php +2 -2
- app/code/local/Innobyte/EmagMarketplace/Model/Api/Response.php +1 -1
- app/code/local/Innobyte/EmagMarketplace/Model/Order/Convert/Emag.php +6 -1
- app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_product_setup/data-upgrade-1.1.6-1.1.7.php +18 -13
- app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_setup/data-upgrade-1.1.4-1.1.5.php +31 -26
- app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_setup/data-upgrade-1.1.7-1.1.8.php +13 -7
- app/code/local/Innobyte/EmagMarketplace/etc/config.xml +1 -1
- app/code/local/Innobyte/EmagMarketplace/sql/innobyte_emag_marketplace_product_setup/upgrade-1.1.5-1.1.6.php +21 -19
- package.xml +18 -2
User Guide eMAG Marketplace.pdf
DELETED
Binary file
|
app/code/local/Innobyte/EmagMarketplace/Model/Api/Abstract.php
CHANGED
@@ -282,11 +282,11 @@ abstract class Innobyte_EmagMarketplace_Model_Api_Abstract
|
|
282 |
protected function getResourceActionApiUrl()
|
283 |
{
|
284 |
$url = $this->getHelper()->getApiUrl($this->getStoreId())
|
285 |
-
.
|
286 |
|
287 |
$orderId = $this->getEmagOrderId();
|
288 |
if ($orderId) {
|
289 |
-
$url .=
|
290 |
}
|
291 |
|
292 |
return $url;
|
282 |
protected function getResourceActionApiUrl()
|
283 |
{
|
284 |
$url = $this->getHelper()->getApiUrl($this->getStoreId())
|
285 |
+
. '/' . $this->getResourceName() . '/' . $this->getActionName();
|
286 |
|
287 |
$orderId = $this->getEmagOrderId();
|
288 |
if ($orderId) {
|
289 |
+
$url .= '/' . $orderId;
|
290 |
}
|
291 |
|
292 |
return $url;
|
app/code/local/Innobyte/EmagMarketplace/Model/Api/Response.php
CHANGED
@@ -32,7 +32,7 @@ class Innobyte_EmagMarketplace_Model_Api_Response
|
|
32 |
|
33 |
|
34 |
/**
|
35 |
-
* Constructor. initializes
|
36 |
*
|
37 |
* @param array $apiResponse Api response.
|
38 |
*
|
32 |
|
33 |
|
34 |
/**
|
35 |
+
* Constructor. initializes stuffs.
|
36 |
*
|
37 |
* @param array $apiResponse Api response.
|
38 |
*
|
app/code/local/Innobyte/EmagMarketplace/Model/Order/Convert/Emag.php
CHANGED
@@ -753,7 +753,12 @@ class Innobyte_EmagMarketplace_Model_Order_Convert_Emag
|
|
753 |
$currentCurrency = $this->getCurrentCurrency()->getCode();
|
754 |
|
755 |
$rates = $this->_getCurrencyRates($baseCurrency);
|
756 |
-
$
|
|
|
|
|
|
|
|
|
|
|
757 |
|
758 |
if ($round) {
|
759 |
return $this->getStore()->roundPrice($price);
|
753 |
$currentCurrency = $this->getCurrentCurrency()->getCode();
|
754 |
|
755 |
$rates = $this->_getCurrencyRates($baseCurrency);
|
756 |
+
$currencyRate = 1;
|
757 |
+
if (!empty($rates)){
|
758 |
+
$currencyRate = $rates[$currentCurrency];
|
759 |
+
}
|
760 |
+
|
761 |
+
$price = $price / $currencyRate;
|
762 |
|
763 |
if ($round) {
|
764 |
return $this->getStore()->roundPrice($price);
|
app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_product_setup/data-upgrade-1.1.6-1.1.7.php
CHANGED
@@ -1,18 +1,23 @@
|
|
1 |
<?php
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
18 |
}
|
1 |
<?php
|
2 |
+
/** @var $installer Mage_Core_Model_Resource_Setup */
|
3 |
+
$installer = $this;
|
4 |
|
5 |
+
$tableNameProducts = $installer->getTable('innobyte_emag_marketplace/product');
|
6 |
+
if ($installer->getConnection()->isTableExists($tableNameProducts)) {
|
7 |
+
// Update emag_is_synced product attribute
|
8 |
+
$collection = Mage::getModel('innobyte_emag_marketplace/product')->getCollection();
|
9 |
+
foreach ($collection as $product) {
|
10 |
|
11 |
+
Mage::getResourceSingleton('catalog/product_action')->updateAttributes(
|
12 |
+
array($product->getProductId()),
|
13 |
+
array('emag_is_synced' => $product->getIsSynced()),
|
14 |
+
Mage_Core_Model_App::ADMIN_STORE_ID
|
15 |
+
);
|
16 |
|
17 |
+
Mage::getResourceSingleton('catalog/product_action')->updateAttributes(
|
18 |
+
array($product->getProductId()),
|
19 |
+
array('emag_is_synced' => $product->getIsSynced()),
|
20 |
+
$product->getStoreId()
|
21 |
+
);
|
22 |
+
}
|
23 |
}
|
app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_setup/data-upgrade-1.1.4-1.1.5.php
CHANGED
@@ -1,30 +1,35 @@
|
|
1 |
<?php
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
)
|
|
|
|
|
11 |
|
12 |
-
foreach ($collection as $order) {
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
16 |
-
|
17 |
-
foreach ($order->getAllItems() as $item) {
|
18 |
-
$item->setGiftMessageAvailable(0)
|
19 |
-
->setBaseWeeeTaxAppliedAmount(0)
|
20 |
-
->setBaseWeeeTaxAppliedRowAmnt(0)
|
21 |
-
->setWeeeTaxAppliedAmount(0)
|
22 |
-
->setWeeeTaxAppliedRowAmount(0)
|
23 |
-
->setWeeeTaxApplied(serialize(array()))
|
24 |
-
->setWeeeTaxDisposition(0)
|
25 |
-
->setWeeeTaxRowDisposition(0)
|
26 |
-
->setBaseWeeeTaxDisposition(0)
|
27 |
-
->setBaseWeeeTaxRowDisposition(0);
|
28 |
-
$item->save();
|
29 |
-
}
|
30 |
-
}
|
1 |
<?php
|
2 |
+
/** @var $installer Mage_Core_Model_Resource_Setup */
|
3 |
+
$installer = $this;
|
4 |
|
5 |
+
$emagSalesOrderTable = $installer->getTable('innobyte_emag_marketplace/sales_order');
|
6 |
+
if ($installer->getConnection()->isTableExists($emagSalesOrderTable)) {
|
7 |
+
// Update weee tax for eMAG order items
|
8 |
+
$collection = Mage::getModel('sales/order')->getCollection();
|
9 |
+
$collection->getSelect()->joinInner(array(
|
10 |
+
'emag_sales_order' => Mage::getSingleton('core/resource')->getTableName('innobyte_emag_marketplace/sales_order')),
|
11 |
+
'main_table.entity_id = emag_sales_order.entity_id',
|
12 |
+
array('emag_sales_order.emag_order_id'),
|
13 |
+
null
|
14 |
+
);
|
15 |
|
16 |
+
foreach ($collection as $order) {
|
17 |
+
if (!$order->getEmagOrderId()) {
|
18 |
+
continue;
|
19 |
+
}
|
20 |
+
/** @var $item Mage_Sales_Model_Order_Item */
|
21 |
+
foreach ($order->getAllItems() as $item) {
|
22 |
+
$item->setGiftMessageAvailable(0)
|
23 |
+
->setBaseWeeeTaxAppliedAmount(0)
|
24 |
+
->setBaseWeeeTaxAppliedRowAmnt(0)
|
25 |
+
->setWeeeTaxAppliedAmount(0)
|
26 |
+
->setWeeeTaxAppliedRowAmount(0)
|
27 |
+
->setWeeeTaxApplied(serialize(array()))
|
28 |
+
->setWeeeTaxDisposition(0)
|
29 |
+
->setWeeeTaxRowDisposition(0)
|
30 |
+
->setBaseWeeeTaxDisposition(0)
|
31 |
+
->setBaseWeeeTaxRowDisposition(0);
|
32 |
+
$item->save();
|
33 |
+
}
|
34 |
}
|
35 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Innobyte/EmagMarketplace/data/innobyte_emag_marketplace_setup/data-upgrade-1.1.7-1.1.8.php
CHANGED
@@ -1,11 +1,17 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
$
|
5 |
-
foreach ($collection as $product) {
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
$product->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
1 |
<?php
|
2 |
|
3 |
+
/** @var $installer Mage_Core_Model_Resource_Setup */
|
4 |
+
$installer = $this;
|
|
|
5 |
|
6 |
+
$tableNameProducts = $installer->getTable('innobyte_emag_marketplace/product');
|
7 |
+
if ($installer->getConnection()->isTableExists($tableNameProducts)) {
|
8 |
+
// Populate sku column for eMAG products table
|
9 |
+
$collection = Mage::getModel('innobyte_emag_marketplace/product')->getCollection();
|
10 |
+
foreach ($collection as $product) {
|
11 |
+
|
12 |
+
/** @var $magentoProduct Mage_Catalog_Model_Product */
|
13 |
+
$magentoProduct = Mage::getModel('catalog/product')->load($product->getProductId());
|
14 |
+
$product->setSku($magentoProduct->getSku());
|
15 |
+
$product->save();
|
16 |
+
}
|
17 |
}
|
app/code/local/Innobyte/EmagMarketplace/etc/config.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<config>
|
2 |
<modules>
|
3 |
<Innobyte_EmagMarketplace>
|
4 |
-
<version>1.1.
|
5 |
</Innobyte_EmagMarketplace>
|
6 |
</modules>
|
7 |
<global>
|
1 |
<config>
|
2 |
<modules>
|
3 |
<Innobyte_EmagMarketplace>
|
4 |
+
<version>1.1.13</version>
|
5 |
</Innobyte_EmagMarketplace>
|
6 |
</modules>
|
7 |
<global>
|
app/code/local/Innobyte/EmagMarketplace/sql/innobyte_emag_marketplace_product_setup/upgrade-1.1.5-1.1.6.php
CHANGED
@@ -15,24 +15,26 @@ $installer = $this;
|
|
15 |
|
16 |
$installer->startSetup();
|
17 |
|
18 |
-
$
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
37 |
|
38 |
$installer->endSetup();
|
15 |
|
16 |
$installer->startSetup();
|
17 |
|
18 |
+
$attributeCode = 'emag_is_synced';
|
19 |
+
if (!$installer->getAttribute(Mage_Catalog_Model_Product::ENTITY, $attributeCode)) {
|
20 |
+
$this->addAttribute(Mage_Catalog_Model_Product::ENTITY, $attributeCode, array(
|
21 |
+
'backend' => '',
|
22 |
+
'frontend' => '',
|
23 |
+
'type' => 'int',
|
24 |
+
'input' => 'text',
|
25 |
+
'label' => 'eMAG Synced',
|
26 |
+
'source' => '',
|
27 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
|
28 |
+
'default' => '0',
|
29 |
+
'searchable' => false,
|
30 |
+
'filterable' => false,
|
31 |
+
'comparable' => false,
|
32 |
+
'required' => false,
|
33 |
+
'visible' => false,
|
34 |
+
'user_defined' => false,
|
35 |
+
'used_in_product_listing' => false,
|
36 |
+
'unique' => false
|
37 |
+
));
|
38 |
+
}
|
39 |
|
40 |
$installer->endSetup();
|
package.xml
CHANGED
@@ -1,3 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package
|
3 |
-
eMAG Marketplace integration extension by Innobyte helps Magento store owners publish their products on eMAG Marketplace and build up their reputation.</description><notes></notes><authors><author><name>Florin Mihai Savici</name><user>innobyte</user><email>management@innobyte.com</email></author></authors><date>2015-09-16</date><time>5:17:28</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><file name="package.xml" hash="d9eeca78be22e8e78e61cf1e5bd3ae6e"/><file name="User Guide eMAG Marketplace.pdf" hash="e8f68868800eee3dea7e7bcdfada1c87"/><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><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></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"/><file name="vat.js" hash="93d3ff86c70a2e4297bcd1e7fbd62cf0"/><dir name="protolicius"><file name="event.simulate.js" hash="ff2cb029b4f6579bbf7caec22d4d07ee"/><file name="README.rdoc" hash="94cf4a315a18d6a7e2b4a16081001549"/></dir></dir></dir></dir><dir name="css"><dir name="innobyte"><dir name="emag_marketplace"><file name="style.css" hash="5848cd48fb6ad98ab5ce7017b2893187"/></dir></dir></dir></dir></dir></dir></dir><dir name="app"><dir name="locale"><dir name="en_US"><file name="Innobyte_EmagMarketplace.csv" hash="b1d6b5311109a05c983e44a14ef14576"/><dir name="template"><dir name="email"><dir name="innobyte"><dir name="emag_marketplace"><file name="errors.html" hash="3ee9c66da915736970df64fd9997b134"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="innobyte"><file name="emag_marketplace.xml" hash="0390552260d5432c69184f0066e1515b"/></dir></dir><dir name="template"><dir name="innobyte"><dir name="emag_marketplace"><file name="city-autocomplete.phtml" hash="d65cdd8eb3da972acd5d1034d9d6fb5c"/><dir name="catalog"><dir name="product"><file name="edit.phtml" hash="eecad18f7709d130032067d24739c7ee"/><dir name="edit"><dir name="tab"><file name="emag_marketplace_form_after.phtml" hash="d5c2f3121179ff57ec656b3f118b9767"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><file name="totals.phtml" hash="5f9a8e99049f93e31bbad436773c35d6"/><dir name="shipment"><dir name="packaging"><file name="popup.phtml" hash="23745250ff3dd4097c2db02724da86a5"/></dir></dir><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 name="create"><dir name="items"><file name="grid.phtml" hash="d38172cd6a2336ea908a811e4add9eee"/></dir><dir name="totals"><file name="voucher.phtml" hash="83584297ec57704c07f0f7482bfdd106"/></dir><dir name="form"><file name="address.phtml" hash="a9b386c72699305a98393b5cd0d74943"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="83231a4b5f764ce9ba0a025e923133a8"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="code"><dir name="local"><dir name="Innobyte"><dir name="EmagMarketplace"><file name="Exception.php" hash="8dd468af95b0bc4dedb6563e962f06e4"/><dir name="Helper"><file name="Data.php" hash="1ce839f33b990555efc959ff757efad9"/></dir><dir name="Model"><file name="Category.php" hash="ebaf767fa33ad5af408286614dd20ef0"/><file name="Cron.php" hash="1ef1ed3b24553a49fe6130527e7b6f5c"/><file name="Locality.php" hash="9eebf51b580234af3279d22801368c24"/><file name="Product.php" hash="c8c910e60151bb1bb22c40ebaf12bc75"/><file name="Vat.php" hash="6f8024e5bfc76ccd1c827d81bda48d25"/><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="6b2fd18774f751f8a8616f0fc5a80ec0"/></dir></dir><dir name="Source"><file name="Category.php" hash="1c23985bd28e00317bf9b85b6ec10741"/><file name="CommissionTypes.php" hash="e7c14db1490db8b4b9c0413d4f4f40aa"/><file name="FamilyType.php" hash="170f2cdc201c2e0d41adfaefa5309840"/><file name="OfferStatus.php" hash="0d08ef9e0379014e97f732b3ebd3bb71"/><file name="Vat.php" hash="74fc94ccf2fc63fb22697e44f610a9c7"/><dir name="Attribute"><dir name="Sync"><file name="Status.php" hash="7866207168f3a3251d9bb38cd5126aed"/></dir></dir><dir name="Customer"><dir name="Address"><dir name="Attributes"><file name="Legalentity.php" hash="996caae77c6a7cf32e92343ab5a0ab4e"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Prefix"><file name="Abstract.php" hash="f8472875f771d4de639c660ba02357e4"/><file name="Creditmemo.php" hash="f95e01282ec052b3e23a88c1fbbeef96"/><file name="Invoice.php" hash="e04ebef0636ab0e9f246a1f7a75a03ed"/></dir></dir></dir></dir><dir name="Order"><dir name="Convert"><file name="Abstract.php" hash="75a329505909db850cb322af3dbb9656"/><file name="Emag.php" hash="a45429d7ff1a2f8284fa2e549cebe749"/><file name="Magento.php" hash="638b426e9d36c226c2df0f1b0753cce7"/><dir name="Emag"><file name="Update.php" hash="8d37dfbca65a7648930d5fbcb18764d3"/></dir></dir></dir><dir name="Customer"><file name="Attributes.php" hash="04866547213ce95f7c2caa5d426ba681"/><file name="Form.php" hash="259c8eba0ff64f7aa2559f46f9bd0bd4"/></dir><dir name="Category"><file name="Characteristic.php" hash="c861ac8bb0485228056139ec2a5b2b1b"/><file name="Familytype.php" hash="c6ac762fa2f20261774c02490a157226"/></dir><dir name="Api"><file name="Abstract.php" hash="ffebd562f865052667b1a7e830c58867"/><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="b20a954debe6aee6f6d53f06ec9d8fa2"/><file name="Response.php" hash="96586001de9ca54796479701694a6f30"/><file name="Vat.php" hash="1dadec377d4b25cad027b6299ece0f78"/></dir><dir name="Sales"><file name="Abstract.php" hash="a631cb89d8d3f1613e332573330539e8"/><file name="Invoice.php" hash="1967cfec91cc00ec80a5ee52551cfcdb"/><file name="Observer.php" hash="8fdba77e4572c681e4e017f0095907f2"/><file name="Order.php" hash="e345960b8361cf62e57f4e10cbc890a1"/><file name="Quote.php" hash="30ad86af4d35ecb361feda0892f1ad78"/><dir name="Address"><file name="Abstract.php" hash="ba8a438491d2b5de442bee67541594d0"/></dir><dir name="Order"><file name="Address.php" hash="60ae8af915f7ef591a99ce963ace9c70"/><file name="Item.php" hash="56fd503ed25e09569b4b220f1ed828cd"/><file name="Status.php" hash="2cc44f61150581a931c76a7224402724"/><file name="Voucher.php" hash="bde2d05e031f136aaf59478b842d68e6"/><dir name="Creditmemo"><file name="Total.php" hash="647fae830f2eee8c80221460ca2b380d"/></dir><dir name="Invoice"><file name="Total.php" hash="a49d7d57de40d65d22ac2ceddc20ffa8"/></dir></dir><dir name="Item"><file name="Abstract.php" hash="d308f8ad6b1aeaa1eade7c7457ab0ef4"/></dir><dir name="Quote"><file name="Address.php" hash="9e8e4ee7aa202b4940e1d532205db098"/><file name="Voucher.php" hash="e1364b975930aa4bc13fb5d4348ceb55"/><dir name="Address"><dir name="Total"><file name="Voucher.php" hash="7a1bfc7246b499b4b47cc31984048a1c"/></dir></dir></dir><dir name="Voucher"><file name="Abstract.php" hash="5db452297c71ba7cb2452347e8950131"/></dir></dir><dir name="Invoice"><dir name="Pdf"><dir name="Total"><file name="Voucher.php" hash="b1c384787ec28e7fc9b2306d7cfa84f8"/></dir></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><dir name="Resource"><file name="Category.php" hash="d0b00b7a79d42b1c8264215af8f6f25d"/><file name="Locality.php" hash="984483f1f254c773dc03f84e7ecfc842"/><file name="Product.php" hash="8086bddef12d45e3b700e64f7a5154cd"/><file name="Vat.php" hash="bd96a9809e1732c0192835443474a41b"/><dir name="Product"><file name="Collection.php" hash="2b269b788215822b1e836f1685eef1c6"/></dir><dir name="Category"><file name="Characteristic.php" hash="a6a7f440c274a8dc70e21601461faa43"/><file name="Collection.php" hash="58380ccc531ad65837eda3d1ec326279"/><file name="Familytype.php" hash="252f23169c78af34f1101c5c1ef00429"/><dir name="Familytype"><file name="Collection.php" hash="b51fb1747d1c563605801a52cddbc807"/></dir><dir name="Characteristic"><file name="Collection.php" hash="199a72bfe17fc978980cc466df2e6bf1"/></dir></dir><dir name="Sales"><file name="Abstract.php" hash="4e28e8cea40a92c8551b9bb61fcc9168"/><file name="Invoice.php" hash="729574058005ed24ac39da04366d6c51"/><file name="Order.php" hash="f560e8f1bf96e2e6a41a692d5fb6c024"/><file name="Quote.php" hash="2e451c02bd215c279a39f33156e464e4"/><dir name="Address"><file name="Abstract.php" hash="c95b407223fec1067ea66080fdf10677"/></dir><dir name="Order"><file name="Address.php" hash="ded5c157ac93c958d2c8149e97ab7b8a"/><file name="Item.php" hash="192143c67ae67ce77d5a69c07edc5f11"/><file name="Voucher.php" hash="307aba5c74dbcd3a99ba37f8f0c72df2"/><dir name="Item"><file name="Collection.php" hash="cc749faeb2b194bab19c8b2f6657bf23"/></dir><dir name="Voucher"><file name="Collection.php" hash="1e99b2c9e29eae6a7ae58d2f56acd01d"/></dir></dir><dir name="Item"><file name="Abstract.php" hash="a750e4cfcb85af0781047fa917e78d5c"/></dir><dir name="Quote"><file name="Address.php" hash="dd2ed7664775fe2d017a62e99f185b8b"/><file name="Voucher.php" hash="75da1101f5ef453b6f796a127120b0d2"/><dir name="Voucher"><file name="Collection.php" hash="d92263c78194131f1f93b965309dea04"/></dir></dir><dir name="Voucher"><file name="Abstract.php" hash="c4c39040b36e50120a227b6e39138fa5"/></dir><dir name="Invoice"><file name="Collection.php" hash="be9a2e37e986174327d4e532175a1a98"/></dir></dir><dir name="Vat"><file name="Collection.php" hash="960899654592afb847d3bbf08a812d4d"/></dir><dir name="Locality"><file name="Collection.php" hash="919d2ec66fde1bfdfdba7a4351ec6e5b"/></dir></dir><dir name="Locality"><file name="Flag.php" hash="a4e04313b24d2f32e9a7c101b7a3ebf4"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Emag.php" hash="70808be244b81ac6829e87a4a6e3349c"/></dir></dir></dir><dir name="docs"><file name="eMAG Markeplace API documentation v3.6.docx" hash="e5cf25307fc1111c12d2e10825aff517"/></dir><dir name="sql"><dir name="innobyte_emag_marketplace_product_setup"><file name="upgrade-1.1.5-1.1.6.php" hash="9da9d02d143e1826eaaf28e52c975b9b"/></dir><dir name="innobyte_emag_marketplace_setup"><file name="install-1.0.0.php" hash="ea105ca65a3328b3e7228a630583b7ce"/><file name="upgrade-1.0.6-1.1.0.php" hash="5de1f8d5a5e514edcf6fbc764b3f4155"/><file name="upgrade-1.1.4-1.1.5.php" hash="26419944e6ce2a4fab031c9a889aec5e"/><file name="upgrade-1.1.7-1.1.8.php" hash="95b5c1c19f0effac77efe654b973cf47"/><file name="upgrade-1.1.8-1.1.9.php" hash="88342910e716d88d9d2981fa80a2ee79"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aea476a16999dabe7c929151a86493a7"/><file name="config.xml" hash="c162bea50f567cd89893cb6d33bfb862"/><file name="jstranslator.xml" hash="2bad6817b7f348bcba8048d2c44004f3"/><file name="system.xml" hash="e652cf7838a954871d6524db719e7502"/></dir><dir name="controllers"><file name="InvoiceController.php" hash="8df75fd59d862afaaa7675d7831b9202"/><dir name="Adminhtml"><dir name="Emag"><file name="CategoryController.php" hash="e42dd195c112b1d2230ff805abed16f3"/><file name="LocalityController.php" hash="181dd7289b8c45b377e3a696470ee7df"/><file name="ProductController.php" hash="a4ad9ac03f7a16154bb220fa6a85ac85"/><file name="VatController.php" hash="16f558732b4fa7a2bb08b7583816b017"/><file name="VoucherController.php" hash="19bf0a8a753c171447b8bf98069ad26f"/></dir><dir name="Sales"><file name="OrderController.php" hash="ec1bbff5d2ee20dd850dfbe6ea4d53a2"/><dir name="Invoice"><file name="UploadController.php" hash="888399443eb8b0f28c91e698b34d9f0e"/></dir></dir></dir></dir><dir name="data"><dir name="innobyte_emag_marketplace_product_setup"><file name="data-upgrade-1.1.5-1.1.6.php" hash="644a81b8dc17b687a7ae87d9f1c6579e"/><file name="data-upgrade-1.1.6-1.1.7.php" hash="2889b67b3319a14963446f007df28fa5"/></dir><dir name="innobyte_emag_marketplace_setup"><file name="data-install-1.0.0.php" hash="e5d5342a60398c63955fe537b63699e3"/><file name="data-upgrade-1.1.4-1.1.5.php" hash="df1866bf54b32195f3c9b55d7f76abda"/><file name="data-upgrade-1.1.7-1.1.8.php" hash="da0553813edc817372eeb45812cb468d"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file name="Category.php" hash="b28cf6ff81b68b26299ea2d94f19ef1e"/><file name="Locality.php" hash="244d56f08dbfcb14924c6dc3607a12c3"/><file name="Vat.php" hash="af6380f2b1a91540a85717d8f7cc024c"/><dir name="Catalog"><dir name="Product"><file name="Edit.php" hash="56121505211aee840a3f896283b3cd05"/><dir name="Edit"><dir name="Tab"><file name="EmagMarketplace.php" hash="c015e92d354e514f68d156363a4b809d"/></dir></dir></dir></dir><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="Category"><file name="Grid.php" hash="17d5e61840283e320e455796b063b85b"/></dir><dir name="Sales"><dir name="Order"><dir name="Grid"><dir name="Column"><file name="Filter.php" hash="fe579cd7c6cd4d4260aaa6127050cb98"/><file name="Renderer.php" hash="560908074b309c1be8dc6380efea26d1"/></dir></dir><dir name="Create"><dir name="Totals"><file name="Voucher.php" hash="547dbfe0c4107d8a041cd35d0d0358d5"/></dir><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><dir name="View"><file name="Comment.php" hash="39a50c5d6ecf9622523f0948f7d1052a"/><dir name="Invoice"><file name="Popup.php" hash="e936b3a67ad5f4bd41cb3458978973e3"/><file name="Upload.php" hash="e7d9468ab75a4da81ad947ee35ea99aa"/><dir name="Upload"><file name="Form.php" hash="08661772c4b2d4dad04ac41b1bc6f2b0"/></dir></dir></dir></dir></dir><dir name="Vat"><file name="Grid.php" hash="6cf11cb0e2568052512dcd9af8a47416"/></dir><dir name="Locality"><file name="Grid.php" hash="9d3c565f261f93d6b38d196be6b9fa20"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Innobyte_EmagMarketplace.xml" hash="e687b367f76df4cda57c2c0493312b4a"/></dir></dir></dir></target></contents></package>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Innobyte_EmagMarketplace</name>
|
4 |
+
<version>1.1.13</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license>Innobyte License</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Being the fastest growing marketplace in Romania, Bulgaria and Hungary, eMAG Marketplace will bring your store’s sales to the next level by opening a new and efficient sales channel.</summary>
|
10 |
+
<description>Being the fastest growing marketplace in Romania, Bulgaria and Hungary, eMAG Marketplace will bring your store’s sales to the next level by opening a new and efficient sales 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>2016-07-05</date>
|
15 |
+
<time>13:28:18</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="c015e92d354e514f68d156363a4b809d"/></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="Grid"><dir name="Column"><file name="Filter.php" hash="fe579cd7c6cd4d4260aaa6127050cb98"/><file name="Renderer.php" hash="560908074b309c1be8dc6380efea26d1"/></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="1ce839f33b990555efc959ff757efad9"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="c60a308e770a302a12d356d765a4830a"/><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="b20a954debe6aee6f6d53f06ec9d8fa2"/><file name="Response.php" hash="7c9399bd6764092cb1eb612564280edf"/><file name="Vat.php" hash="1dadec377d4b25cad027b6299ece0f78"/></dir><dir name="Catalog"><dir name="Product"><file name="Observer.php" hash="6b2fd18774f751f8a8616f0fc5a80ec0"/></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="1ef1ed3b24553a49fe6130527e7b6f5c"/><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="b1c384787ec28e7fc9b2306d7cfa84f8"/></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="75a329505909db850cb322af3dbb9656"/><dir name="Emag"><file name="Update.php" hash="8d37dfbca65a7648930d5fbcb18764d3"/></dir><file name="Emag.php" hash="0c9e5259d7c8e7bea0c5389b17ab6bdd"/><file name="Magento.php" hash="638b426e9d36c226c2df0f1b0753cce7"/></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="1967cfec91cc00ec80a5ee52551cfcdb"/><dir name="Item"><file name="Abstract.php" hash="d308f8ad6b1aeaa1eade7c7457ab0ef4"/></dir><file name="Observer.php" hash="8fdba77e4572c681e4e017f0095907f2"/><dir name="Order"><file name="Address.php" hash="60ae8af915f7ef591a99ce963ace9c70"/><dir name="Creditmemo"><file name="Total.php" hash="647fae830f2eee8c80221460ca2b380d"/></dir><dir name="Invoice"><file name="Total.php" hash="a49d7d57de40d65d22ac2ceddc20ffa8"/></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="7a1bfc7246b499b4b47cc31984048a1c"/></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"><dir name="Attribute"><dir name="Sync"><file name="Status.php" hash="7866207168f3a3251d9bb38cd5126aed"/></dir></dir><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="f8472875f771d4de639c660ba02357e4"/><file name="Creditmemo.php" hash="f95e01282ec052b3e23a88c1fbbeef96"/><file name="Invoice.php" hash="e04ebef0636ab0e9f246a1f7a75a03ed"/></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="a4ad9ac03f7a16154bb220fa6a85ac85"/><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="ec1bbff5d2ee20dd850dfbe6ea4d53a2"/></dir></dir><file name="InvoiceController.php" hash="8df75fd59d862afaaa7675d7831b9202"/></dir><dir name="data"><dir name="innobyte_emag_marketplace_product_setup"><file name="data-upgrade-1.1.5-1.1.6.php" hash="644a81b8dc17b687a7ae87d9f1c6579e"/><file name="data-upgrade-1.1.6-1.1.7.php" hash="ba38bfa4f6b1c97f9d2f6d15e6e7905f"/></dir><dir name="innobyte_emag_marketplace_setup"><file name="data-install-1.0.0.php" hash="e5d5342a60398c63955fe537b63699e3"/><file name="data-upgrade-1.1.4-1.1.5.php" hash="52eecfd8319522364e47c462080d2b2f"/><file name="data-upgrade-1.1.7-1.1.8.php" hash="157891af190b43e2648c71e21f4a394f"/></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="54d8b9239fefb72d8bebd00b9436df74"/><file name="jstranslator.xml" hash="2bad6817b7f348bcba8048d2c44004f3"/><file name="system.xml" hash="e652cf7838a954871d6524db719e7502"/></dir><dir name="sql"><dir name="innobyte_emag_marketplace_product_setup"><file name="upgrade-1.1.5-1.1.6.php" hash="e7762237eb8ba28fe32a9b090683297b"/></dir><dir name="innobyte_emag_marketplace_setup"><file name="install-1.0.0.php" hash="ea105ca65a3328b3e7228a630583b7ce"/><file name="upgrade-1.0.6-1.1.0.php" hash="5de1f8d5a5e514edcf6fbc764b3f4155"/><file name="upgrade-1.1.4-1.1.5.php" hash="26419944e6ce2a4fab031c9a889aec5e"/><file name="upgrade-1.1.7-1.1.8.php" hash="95b5c1c19f0effac77efe654b973cf47"/><file name="upgrade-1.1.8-1.1.9.php" hash="88342910e716d88d9d2981fa80a2ee79"/></dir></dir></dir><file name="Exception.php" hash="8dd468af95b0bc4dedb6563e962f06e4"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Innobyte_EmagMarketplace.xml" hash="e687b367f76df4cda57c2c0493312b4a"/></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="0390552260d5432c69184f0066e1515b"/></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="83584297ec57704c07f0f7482bfdd106"/></dir></dir><dir name="shipment"><dir name="packaging"><file name="popup.phtml" hash="23745250ff3dd4097c2db02724da86a5"/></dir></dir><file name="totals.phtml" hash="5f9a8e99049f93e31bbad436773c35d6"/><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></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Innobyte_EmagMarketplace.csv" hash="b1d6b5311109a05c983e44a14ef14576"/><dir name="template"><dir name="email"><dir name="innobyte"><dir name="emag_marketplace"><file name="errors.html" hash="3ee9c66da915736970df64fd9997b134"/></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></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></contents>
|
17 |
+
<compatible/>
|
18 |
+
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
+
</package>
|