Version Notes
Shopgate Modul
Download this release
Release Info
Developer | Stephan Recknagel |
Extension | shopgate_module |
Version | 2.9.23 |
Comparing to | |
See all releases |
Code changes from version 2.9.22 to 2.9.23
- app/code/community/Shopgate/Framework/Model/Carrier/Fix.php +1 -5
- app/code/community/Shopgate/Framework/Model/Export/Product/Csv.php +1 -1
- app/code/community/Shopgate/Framework/Model/Export/Product/Xml.php +11 -8
- app/code/community/Shopgate/Framework/Model/Payment/Factory.php +0 -12
- app/code/community/Shopgate/Framework/Model/Payment/Payone/Abstract.php +24 -8
- app/code/community/Shopgate/Framework/Model/Payment/Payone/Pp.php +18 -0
- app/code/community/Shopgate/Framework/Model/Payment/Simple/Billsafe.php +8 -3
- app/code/community/Shopgate/Framework/changelog.txt +17 -0
- app/code/community/Shopgate/Framework/etc/config.xml +1 -1
- lib/Shopgate/changelog.txt +15 -0
- lib/Shopgate/classes/core.php +1 -1
- lib/Shopgate/classes/external_orders.php +1 -1
- lib/Shopgate/classes/models/XmlResultObject.php +16 -7
- lib/Shopgate/classes/models/catalog/Category.php +9 -13
- lib/Shopgate/classes/models/catalog/Manufacturer.php +2 -2
- lib/Shopgate/classes/models/catalog/Price.php +14 -10
- lib/Shopgate/classes/models/catalog/Product.php +3 -7
- lib/Shopgate/classes/models/catalog/Shipping.php +2 -2
- lib/Shopgate/classes/models/catalog/Stock.php +3 -3
- lib/Shopgate/classes/models/media/Image.php +2 -2
- lib/Shopgate/classes/orders.php +38 -0
- package.xml +4 -4
app/code/community/Shopgate/Framework/Model/Carrier/Fix.php
CHANGED
@@ -94,11 +94,7 @@ class Shopgate_Framework_Model_Carrier_Fix
|
|
94 |
$method->setMethod($this->_method);
|
95 |
$method->setMethodTitle($methodTitle);
|
96 |
|
97 |
-
|
98 |
-
? true
|
99 |
-
: false;
|
100 |
-
|
101 |
-
$amount['shipping'] = $this->_getNetForGrossShipping($shippingInfo->getAmount(), $shippingContainsTax);
|
102 |
|
103 |
$amountShopPayment = $sgOrder->getAmountShopPayment();
|
104 |
if ($amountShopPayment >= 0) {
|
94 |
$method->setMethod($this->_method);
|
95 |
$method->setMethodTitle($methodTitle);
|
96 |
|
97 |
+
$amount['shipping'] = $shippingInfo->getAmountNet();
|
|
|
|
|
|
|
|
|
98 |
|
99 |
$amountShopPayment = $sgOrder->getAmountShopPayment();
|
100 |
if ($amountShopPayment >= 0) {
|
app/code/community/Shopgate/Framework/Model/Export/Product/Csv.php
CHANGED
@@ -269,7 +269,7 @@ class Shopgate_Framework_Model_Export_Product_Csv extends Shopgate_Framework_Mod
|
|
269 |
|
270 |
$useStock = 0;
|
271 |
|
272 |
-
if ($stockItem->getManageStock()
|
273 |
switch ($stockItem->getBackorders() && $stockItem->getIsInStock()) {
|
274 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NONOTIFY:
|
275 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NOTIFY:
|
269 |
|
270 |
$useStock = 0;
|
271 |
|
272 |
+
if ($stockItem->getManageStock()) {
|
273 |
switch ($stockItem->getBackorders() && $stockItem->getIsInStock()) {
|
274 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NONOTIFY:
|
275 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NOTIFY:
|
app/code/community/Shopgate/Framework/Model/Export/Product/Xml.php
CHANGED
@@ -632,7 +632,7 @@ class Shopgate_Framework_Model_Export_Product_Xml
|
|
632 |
$stockItem = $this->item->getStockItem();
|
633 |
$stock = new Shopgate_Model_Catalog_Stock();
|
634 |
$useStock = false;
|
635 |
-
if ($stockItem->getManageStock()
|
636 |
switch ($stockItem->getBackorders() && $stockItem->getIsInStock()) {
|
637 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NONOTIFY:
|
638 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NOTIFY:
|
@@ -1224,17 +1224,20 @@ class Shopgate_Framework_Model_Export_Product_Xml
|
|
1224 |
$configChild = Mage::getModel('catalog/product')
|
1225 |
->setStoreId($this->_getConfig()->getStoreViewId())
|
1226 |
->load($child);
|
1227 |
-
$
|
|
|
|
|
1228 |
}
|
1229 |
}
|
1230 |
|
1231 |
if ($this->item->isGrouped()) {
|
1232 |
-
$
|
1233 |
-
$
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
|
|
1238 |
}
|
1239 |
}
|
1240 |
}
|
632 |
$stockItem = $this->item->getStockItem();
|
633 |
$stock = new Shopgate_Model_Catalog_Stock();
|
634 |
$useStock = false;
|
635 |
+
if ($stockItem->getManageStock()) {
|
636 |
switch ($stockItem->getBackorders() && $stockItem->getIsInStock()) {
|
637 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NONOTIFY:
|
638 |
case Mage_CatalogInventory_Model_Stock::BACKORDERS_YES_NOTIFY:
|
1224 |
$configChild = Mage::getModel('catalog/product')
|
1225 |
->setStoreId($this->_getConfig()->getStoreViewId())
|
1226 |
->load($child);
|
1227 |
+
if ($configChild->getStatus() != Mage_Catalog_Model_Product_Status::STATUS_DISABLED) {
|
1228 |
+
$childProducts[] = $configChild;
|
1229 |
+
}
|
1230 |
}
|
1231 |
}
|
1232 |
|
1233 |
if ($this->item->isGrouped()) {
|
1234 |
+
$childProductIds = $this->item->getTypeInstance()->getAssociatedProductIds();
|
1235 |
+
foreach ($childProductIds as $child) {
|
1236 |
+
$configChild = Mage::getModel('catalog/product')
|
1237 |
+
->setStoreId($this->_getConfig()->getStoreViewId())
|
1238 |
+
->load($child);
|
1239 |
+
if ($configChild->getStatus() != Mage_Catalog_Model_Product_Status::STATUS_DISABLED) {
|
1240 |
+
$childProducts[] = $configChild;
|
1241 |
}
|
1242 |
}
|
1243 |
}
|
app/code/community/Shopgate/Framework/Model/Payment/Factory.php
CHANGED
@@ -157,18 +157,6 @@ class Shopgate_Framework_Model_Payment_Factory extends Shopgate_Framework_Model_
|
|
157 |
return false;
|
158 |
}
|
159 |
|
160 |
-
/**
|
161 |
-
* Check for identifier containment instead of equality
|
162 |
-
*
|
163 |
-
* @param $identifier - payment_id to test against
|
164 |
-
* @return bool
|
165 |
-
*/
|
166 |
-
public function isPayment($identifier)
|
167 |
-
{
|
168 |
-
$parts = explode('_', $this->getPaymentMethod());
|
169 |
-
return in_array($identifier, $parts, true);
|
170 |
-
}
|
171 |
-
|
172 |
/**
|
173 |
* A simple class will contain only one word
|
174 |
* inside payment_method, e.g. PAYPAL
|
157 |
return false;
|
158 |
}
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
/**
|
161 |
* A simple class will contain only one word
|
162 |
* inside payment_method, e.g. PAYPAL
|
app/code/community/Shopgate/Framework/Model/Payment/Payone/Abstract.php
CHANGED
@@ -105,14 +105,11 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
105 |
);
|
106 |
break;
|
107 |
case Payone_Core_Model_System_Config_PaymentMethodCode::ADVANCEPAYMENT :
|
108 |
-
//$this->_systemConfig = $factory->getModelConfigType();
|
109 |
$this->_statusMapping = new Varien_Object(
|
110 |
$this->getConfig()->getGeneral()->getStatusMapping()->getAdvancepayment()
|
111 |
);
|
112 |
break;
|
113 |
case Payone_Core_Model_System_Config_PaymentMethodCode::INVOICE :
|
114 |
-
//todo: not sure if it's needed for all payment methods
|
115 |
-
//$this->_systemConfig = $factory->getInvoice();
|
116 |
$this->_statusMapping = new Varien_Object(
|
117 |
$this->getConfig()->getGeneral()->getStatusMapping()->getInvoice()
|
118 |
);
|
@@ -282,6 +279,7 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
282 |
}
|
283 |
$this->getOrder()->save();
|
284 |
$this->_addTransaction();
|
|
|
285 |
|
286 |
return $this->getOrder();
|
287 |
}
|
@@ -307,6 +305,24 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
307 |
$handler->handle($response);
|
308 |
}
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
/**
|
311 |
* Creates fake initial request object
|
312 |
*
|
@@ -390,7 +406,7 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
390 |
$message = $this->_getHelper()->__('[SHOPGATE] Using PayOne configured status');
|
391 |
|
392 |
//status fallback
|
393 |
-
if (
|
394 |
$mapping['state'] = Mage_Sales_Model_Order::STATE_PROCESSING;
|
395 |
$mapping['status'] = $this->_getHelper()->getStatusFromState($mapping['state']);
|
396 |
$message = $this->_getHelper()->__('[SHOPGATE] Using default order status');
|
@@ -421,14 +437,14 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
421 |
/**
|
422 |
* Different versions have
|
423 |
* different config options
|
424 |
-
*
|
425 |
* @return bool
|
426 |
*/
|
427 |
public function isEnabled()
|
428 |
{
|
429 |
if (version_compare($this->_getVersion(), '3.3.0', '>=')) {
|
430 |
-
parent::isEnabled();
|
431 |
-
}
|
432 |
$val = Mage::getStoreConfig('payone_general/global/key');
|
433 |
return !empty($val);
|
434 |
}
|
@@ -437,7 +453,7 @@ class Shopgate_Framework_Model_Payment_Payone_Abstract extends Shopgate_Framewor
|
|
437 |
* Checks if config is found for this method
|
438 |
* && transaction does not already exists
|
439 |
* && payOne API response is APPROVED
|
440 |
-
* Else fallback import with
|
441 |
*
|
442 |
* @return bool
|
443 |
*/
|
105 |
);
|
106 |
break;
|
107 |
case Payone_Core_Model_System_Config_PaymentMethodCode::ADVANCEPAYMENT :
|
|
|
108 |
$this->_statusMapping = new Varien_Object(
|
109 |
$this->getConfig()->getGeneral()->getStatusMapping()->getAdvancepayment()
|
110 |
);
|
111 |
break;
|
112 |
case Payone_Core_Model_System_Config_PaymentMethodCode::INVOICE :
|
|
|
|
|
113 |
$this->_statusMapping = new Varien_Object(
|
114 |
$this->getConfig()->getGeneral()->getStatusMapping()->getInvoice()
|
115 |
);
|
279 |
}
|
280 |
$this->getOrder()->save();
|
281 |
$this->_addTransaction();
|
282 |
+
$this->_addInvoice();
|
283 |
|
284 |
return $this->getOrder();
|
285 |
}
|
305 |
$handler->handle($response);
|
306 |
}
|
307 |
|
308 |
+
/**
|
309 |
+
* Creates an invoice if it's paid
|
310 |
+
*
|
311 |
+
* @throws Exception
|
312 |
+
*/
|
313 |
+
protected function _addInvoice()
|
314 |
+
{
|
315 |
+
if ($this->getShopgateOrder()->getIsPaid()) {
|
316 |
+
$info = $this->getShopgateOrder()->getPaymentInfos();
|
317 |
+
$invoice = $this->_getPaymentHelper()->createOrderInvoice($this->getOrder());
|
318 |
+
$invoice->setIsPaid(true);
|
319 |
+
$invoice->pay();
|
320 |
+
$invoice->setTransactionId($info['txn_id']);
|
321 |
+
$invoice->save();
|
322 |
+
$this->getOrder()->addRelatedObject($invoice);
|
323 |
+
}
|
324 |
+
}
|
325 |
+
|
326 |
/**
|
327 |
* Creates fake initial request object
|
328 |
*
|
406 |
$message = $this->_getHelper()->__('[SHOPGATE] Using PayOne configured status');
|
407 |
|
408 |
//status fallback
|
409 |
+
if (!isset($mapping['state'], $mapping['status'])) {
|
410 |
$mapping['state'] = Mage_Sales_Model_Order::STATE_PROCESSING;
|
411 |
$mapping['status'] = $this->_getHelper()->getStatusFromState($mapping['state']);
|
412 |
$message = $this->_getHelper()->__('[SHOPGATE] Using default order status');
|
437 |
/**
|
438 |
* Different versions have
|
439 |
* different config options
|
440 |
+
*
|
441 |
* @return bool
|
442 |
*/
|
443 |
public function isEnabled()
|
444 |
{
|
445 |
if (version_compare($this->_getVersion(), '3.3.0', '>=')) {
|
446 |
+
return parent::isEnabled();
|
447 |
+
}
|
448 |
$val = Mage::getStoreConfig('payone_general/global/key');
|
449 |
return !empty($val);
|
450 |
}
|
453 |
* Checks if config is found for this method
|
454 |
* && transaction does not already exists
|
455 |
* && payOne API response is APPROVED
|
456 |
+
* Else fallback import with Shopgate Mobile Payment
|
457 |
*
|
458 |
* @return bool
|
459 |
*/
|
app/code/community/Shopgate/Framework/Model/Payment/Payone/Pp.php
CHANGED
@@ -43,4 +43,22 @@ class Shopgate_Framework_Model_Payment_Payone_Pp
|
|
43 |
return Payone_Api_Enum_WalletType::PAYPAL_EXPRESS;
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
43 |
return Payone_Api_Enum_WalletType::PAYPAL_EXPRESS;
|
44 |
}
|
45 |
|
46 |
+
/**
|
47 |
+
* Creates an invoice for the order
|
48 |
+
*
|
49 |
+
* @throws Exception
|
50 |
+
*/
|
51 |
+
protected function _addInvoice()
|
52 |
+
{
|
53 |
+
if ($this->getShopgateOrder()->getIsPaid()) {
|
54 |
+
parent::_addInvoice();
|
55 |
+
} else {
|
56 |
+
$info = $this->getShopgateOrder()->getPaymentInfos();
|
57 |
+
$invoice = $this->_getPaymentHelper()->createOrderInvoice($this->getOrder());
|
58 |
+
$invoice->setIsPaid(false);
|
59 |
+
$invoice->setTransactionId($info['txn_id']);
|
60 |
+
$invoice->save();
|
61 |
+
$this->getOrder()->addRelatedObject($invoice);
|
62 |
+
}
|
63 |
+
}
|
64 |
}
|
app/code/community/Shopgate/Framework/Model/Payment/Simple/Billsafe.php
CHANGED
@@ -78,9 +78,14 @@ class Shopgate_Framework_Model_Payment_Simple_Billsafe
|
|
78 |
$orderTrans->setTxnId($paymentInfos['billsafe_transaction_id']);
|
79 |
$orderTrans->setTxnType(Mage_Sales_Model_Order_Payment_Transaction::TYPE_AUTH);
|
80 |
$orderTrans->save();
|
81 |
-
|
82 |
-
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
84 |
return $order;
|
85 |
}
|
86 |
}
|
78 |
$orderTrans->setTxnId($paymentInfos['billsafe_transaction_id']);
|
79 |
$orderTrans->setTxnType(Mage_Sales_Model_Order_Payment_Transaction::TYPE_AUTH);
|
80 |
$orderTrans->save();
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Support for magento version 1.4.0.0
|
84 |
+
*/
|
85 |
+
if (!$this->_getConfigHelper()->getIsMagentoVersionLower1410()) {
|
86 |
+
$order->getPayment()->importTransactionInfo($orderTrans);
|
87 |
+
$order->getPayment()->setDataChanges(true);
|
88 |
+
}
|
89 |
return $order;
|
90 |
}
|
91 |
}
|
app/code/community/Shopgate/Framework/changelog.txt
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
'''English'''
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
'''Version 2.9.22'''
|
4 |
* Totals collector Invalid Block Type exception fix
|
5 |
* Added redirect for quick search query links to mobile site
|
1 |
'''English'''
|
2 |
|
3 |
+
'''Version 2.9.23'''
|
4 |
+
* export images for sub products of grouped products
|
5 |
+
* Bug fix: PayOne (v330+) order's will now be processed by PayOne module
|
6 |
+
* Feature: PayOne paid orders will have an invoice created automatically
|
7 |
+
* Feature: PayOne PayPal orders will have an invoice independent of paid status
|
8 |
+
* Use amount_net to set shipping costs in add_order
|
9 |
+
* Library update to 2.9.31
|
10 |
+
* item export: skip inactive child products
|
11 |
+
* use_stock was always false for parent items, is now set correctly
|
12 |
+
* Added support to BillSAFE for magento version 1.4.0.0
|
13 |
+
* New Shopgate payment orders now have the correct state in Processing status
|
14 |
+
* Now prints customer custom fields in order history
|
15 |
+
* Now saves customer custom fields if customer attribute exists in magento
|
16 |
+
* Fixed compatibility issue in get_settings with magento 1.4.x
|
17 |
+
* changed identification of shopgate coupons
|
18 |
+
* added custom fields on get_orders
|
19 |
+
|
20 |
'''Version 2.9.22'''
|
21 |
* Totals collector Invalid Block Type exception fix
|
22 |
* Added redirect for quick search query links to mobile site
|
app/code/community/Shopgate/Framework/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Shopgate_Framework>
|
5 |
-
<version>2.9.
|
6 |
</Shopgate_Framework>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Shopgate_Framework>
|
5 |
+
<version>2.9.23</version>
|
6 |
</Shopgate_Framework>
|
7 |
</modules>
|
8 |
<global>
|
lib/Shopgate/changelog.txt
CHANGED
@@ -1,3 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
'''Version 2.9.26'''
|
3 |
* added constants for order item types
|
1 |
+
'''Version 2.9.31'''
|
2 |
+
* added ShopgateShippingInfo:$amount_net and $amount_gross properties, getters and setters
|
3 |
+
* ShopgateShippingInfo:$amount, getter and setter are now deprecated
|
4 |
+
|
5 |
+
'''Version 2.9.30'''
|
6 |
+
* amount_complete is now being set correctly for get_orders
|
7 |
+
|
8 |
+
'''Version 2.9.29'''
|
9 |
+
* added a constructor to the category export model, so it can be called without any harm
|
10 |
+
|
11 |
+
'''Version 2.9.28'''
|
12 |
+
* XML export: fixed a bug that lead to unwanted occurrences of 'xmlns=""' in the XML
|
13 |
+
|
14 |
+
'''Version 2.9.27'''
|
15 |
+
* XML export: omit empty subnodes if they are defined as optional by the XSD
|
16 |
|
17 |
'''Version 2.9.26'''
|
18 |
* added constants for order item types
|
lib/Shopgate/classes/core.php
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
###################################################################################
|
25 |
# define constants
|
26 |
###################################################################################
|
27 |
-
define('SHOPGATE_LIBRARY_VERSION', '2.9.
|
28 |
define('SHOPGATE_LIBRARY_ENCODING' , 'UTF-8');
|
29 |
define('SHOPGATE_BASE_DIR', realpath(dirname(__FILE__).'/../'));
|
30 |
|
24 |
###################################################################################
|
25 |
# define constants
|
26 |
###################################################################################
|
27 |
+
define('SHOPGATE_LIBRARY_VERSION', '2.9.31');
|
28 |
define('SHOPGATE_LIBRARY_ENCODING' , 'UTF-8');
|
29 |
define('SHOPGATE_BASE_DIR', realpath(dirname(__FILE__).'/../'));
|
30 |
|
lib/Shopgate/classes/external_orders.php
CHANGED
@@ -221,7 +221,7 @@ class ShopgateExternalOrder extends ShopgateContainer {
|
|
221 |
* @param float $value
|
222 |
*/
|
223 |
public function setAmountComplete($value) {
|
224 |
-
$this->
|
225 |
}
|
226 |
|
227 |
/**
|
221 |
* @param float $value
|
222 |
*/
|
223 |
public function setAmountComplete($value) {
|
224 |
+
$this->amount_complete = $value;
|
225 |
}
|
226 |
|
227 |
/**
|
lib/Shopgate/classes/models/XmlResultObject.php
CHANGED
@@ -33,16 +33,20 @@ class Shopgate_Model_XmlResultObject extends SimpleXMLElement {
|
|
33 |
* @see http://www.w3.org/TR/REC-xml/#charsets
|
34 |
*/
|
35 |
const PATTERN_INVALID_CHARS = '/[^\x{09}\x{0A}\x{0D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]/u';
|
36 |
-
|
37 |
/**
|
38 |
* Adds a child with $value inside CDATA
|
39 |
*
|
40 |
-
* @param
|
41 |
-
* @param
|
42 |
-
*
|
|
|
43 |
* @return SimpleXMLElement
|
44 |
*/
|
45 |
-
public function addChildWithCDATA($name, $value = null) {
|
|
|
|
|
|
|
46 |
$forceEmpty = false;
|
47 |
if ($value === Shopgate_Model_AbstractExport::SET_EMPTY) {
|
48 |
$forceEmpty = true;
|
@@ -67,11 +71,16 @@ class Shopgate_Model_XmlResultObject extends SimpleXMLElement {
|
|
67 |
|
68 |
/**
|
69 |
* @param string $name
|
70 |
-
* @param mixed
|
71 |
* @param string $namespace
|
|
|
|
|
72 |
* @return null|SimpleXMLElement
|
73 |
*/
|
74 |
-
public function addChild($name, $value = null, $namespace = null) {
|
|
|
|
|
|
|
75 |
if (!empty($value)) {
|
76 |
$value = preg_replace(self::PATTERN_INVALID_CHARS, '', $value);
|
77 |
}
|
33 |
* @see http://www.w3.org/TR/REC-xml/#charsets
|
34 |
*/
|
35 |
const PATTERN_INVALID_CHARS = '/[^\x{09}\x{0A}\x{0D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]/u';
|
36 |
+
|
37 |
/**
|
38 |
* Adds a child with $value inside CDATA
|
39 |
*
|
40 |
+
* @param string $name
|
41 |
+
* @param mixed $value
|
42 |
+
* @param bool $allowNull
|
43 |
+
*
|
44 |
* @return SimpleXMLElement
|
45 |
*/
|
46 |
+
public function addChildWithCDATA($name, $value = null, $allowNull = true) {
|
47 |
+
if (!$allowNull && $value === null) {
|
48 |
+
return null;
|
49 |
+
}
|
50 |
$forceEmpty = false;
|
51 |
if ($value === Shopgate_Model_AbstractExport::SET_EMPTY) {
|
52 |
$forceEmpty = true;
|
71 |
|
72 |
/**
|
73 |
* @param string $name
|
74 |
+
* @param mixed $value
|
75 |
* @param string $namespace
|
76 |
+
* @param bool $allowNull
|
77 |
+
*
|
78 |
* @return null|SimpleXMLElement
|
79 |
*/
|
80 |
+
public function addChild($name, $value = null, $namespace = null, $allowNull = true) {
|
81 |
+
if (!$allowNull && $value === null) {
|
82 |
+
return null;
|
83 |
+
}
|
84 |
if (!empty($value)) {
|
85 |
$value = preg_replace(self::PATTERN_INVALID_CHARS, '', $value);
|
86 |
}
|
lib/Shopgate/classes/models/catalog/Category.php
CHANGED
@@ -81,7 +81,8 @@ class Shopgate_Model_Catalog_Category extends Shopgate_Model_AbstractExport {
|
|
81 |
'setDeeplink',
|
82 |
'setIsAnchor',
|
83 |
'setImage',
|
84 |
-
'setIsActive'
|
|
|
85 |
|
86 |
/**
|
87 |
* define allowed methods
|
@@ -96,17 +97,13 @@ class Shopgate_Model_Catalog_Category extends Shopgate_Model_AbstractExport {
|
|
96 |
'Image',
|
97 |
'IsActive',
|
98 |
'Deeplink',
|
99 |
-
'IsAnchor'
|
|
|
100 |
|
101 |
/**
|
102 |
-
*
|
103 |
*/
|
104 |
public function __construct() {
|
105 |
-
$this->setData(
|
106 |
-
array(
|
107 |
-
'image' => new Shopgate_Model_Media_Image()
|
108 |
-
)
|
109 |
-
);
|
110 |
}
|
111 |
|
112 |
/**
|
@@ -126,11 +123,10 @@ class Shopgate_Model_Catalog_Category extends Shopgate_Model_AbstractExport {
|
|
126 |
$categoryNode->addAttribute('is_anchor', (int)$this->getIsAnchor());
|
127 |
$categoryNode->addChildWithCDATA('name', $this->getName());
|
128 |
$categoryNode->addChildWithCDATA('deeplink', $this->getDeeplink());
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
$this->getImage()->asXml($categoryNode);
|
134 |
|
135 |
return $itemNode;
|
136 |
}
|
81 |
'setDeeplink',
|
82 |
'setIsAnchor',
|
83 |
'setImage',
|
84 |
+
'setIsActive',
|
85 |
+
);
|
86 |
|
87 |
/**
|
88 |
* define allowed methods
|
97 |
'Image',
|
98 |
'IsActive',
|
99 |
'Deeplink',
|
100 |
+
'IsAnchor',
|
101 |
+
);
|
102 |
|
103 |
/**
|
104 |
+
* nothing to do here
|
105 |
*/
|
106 |
public function __construct() {
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
|
109 |
/**
|
123 |
$categoryNode->addAttribute('is_anchor', (int)$this->getIsAnchor());
|
124 |
$categoryNode->addChildWithCDATA('name', $this->getName());
|
125 |
$categoryNode->addChildWithCDATA('deeplink', $this->getDeeplink());
|
126 |
+
|
127 |
+
if ($this->getImage()) {
|
128 |
+
$this->getImage()->asXml($categoryNode);
|
129 |
+
}
|
|
|
130 |
|
131 |
return $itemNode;
|
132 |
}
|
lib/Shopgate/classes/models/catalog/Manufacturer.php
CHANGED
@@ -59,8 +59,8 @@ class Shopgate_Model_Catalog_Manufacturer extends Shopgate_Model_AbstractExport
|
|
59 |
*/
|
60 |
$manufacturerNode = $itemNode->addChild('manufacturer');
|
61 |
$manufacturerNode->addAttribute('uid', $this->getUid());
|
62 |
-
$manufacturerNode->addChildWithCDATA('title', $this->getTitle());
|
63 |
-
$manufacturerNode->addChild('item_number', $this->getItemNumber());
|
64 |
|
65 |
return $itemNode;
|
66 |
}
|
59 |
*/
|
60 |
$manufacturerNode = $itemNode->addChild('manufacturer');
|
61 |
$manufacturerNode->addAttribute('uid', $this->getUid());
|
62 |
+
$manufacturerNode->addChildWithCDATA('title', $this->getTitle(), false);
|
63 |
+
$manufacturerNode->addChild('item_number', $this->getItemNumber(), null, false);
|
64 |
|
65 |
return $itemNode;
|
66 |
}
|
lib/Shopgate/classes/models/catalog/Price.php
CHANGED
@@ -89,21 +89,25 @@ class Shopgate_Model_Catalog_Price extends Shopgate_Model_AbstractExport {
|
|
89 |
|
90 |
public function asXml(Shopgate_Model_XmlResultObject $itemNode) {
|
91 |
/**
|
|
|
92 |
* @var Shopgate_Model_XmlResultObject $tierPricesNode
|
93 |
-
* @var Shopgate_Model_Catalog_TierPrice $customerGroupItem
|
94 |
*/
|
95 |
$pricesNode = $itemNode->addChild('prices');
|
96 |
$pricesNode->addAttribute('type', $this->getType());
|
97 |
-
|
98 |
-
$pricesNode->addChild('
|
99 |
-
$pricesNode->addChild('
|
100 |
-
$pricesNode->addChild('
|
101 |
-
$pricesNode->addChild('
|
102 |
-
$pricesNode->
|
|
|
103 |
|
104 |
-
$
|
105 |
-
|
106 |
-
$
|
|
|
|
|
|
|
107 |
}
|
108 |
|
109 |
return $itemNode;
|
89 |
|
90 |
public function asXml(Shopgate_Model_XmlResultObject $itemNode) {
|
91 |
/**
|
92 |
+
* @var Shopgate_Model_XmlResultObject $pricesNode
|
93 |
* @var Shopgate_Model_XmlResultObject $tierPricesNode
|
|
|
94 |
*/
|
95 |
$pricesNode = $itemNode->addChild('prices');
|
96 |
$pricesNode->addAttribute('type', $this->getType());
|
97 |
+
|
98 |
+
$pricesNode->addChild('price', $this->getPrice(), null, false);
|
99 |
+
$pricesNode->addChild('cost', $this->getCost(), null, false);
|
100 |
+
$pricesNode->addChild('sale_price', $this->getSalePrice(), null, false);
|
101 |
+
$pricesNode->addChild('msrp', $this->getMsrp(), null, false);
|
102 |
+
$pricesNode->addChild('minimum_order_amount', $this->getMinimumOrderAmount(), null, false);
|
103 |
+
$pricesNode->addChildWithCDATA('base_price', $this->getBasePrice(), false);
|
104 |
|
105 |
+
$tierPrices = $this->getTierPricesGroup();
|
106 |
+
if (!empty($tierPrices)) {
|
107 |
+
$tierPricesNode = $pricesNode->addChild('tier_prices');
|
108 |
+
foreach ($tierPrices as $customerGroupItem) {
|
109 |
+
$customerGroupItem->asXml($tierPricesNode);
|
110 |
+
}
|
111 |
}
|
112 |
|
113 |
return $itemNode;
|
lib/Shopgate/classes/models/catalog/Product.php
CHANGED
@@ -326,18 +326,14 @@ class Shopgate_Model_Catalog_Product extends Shopgate_Model_AbstractExport {
|
|
326 |
$itemNode->addAttribute('uid', $this->getUid());
|
327 |
$itemNode->addAttribute('last_update', $this->getLastUpdate());
|
328 |
$itemNode->addChildWithCDATA('name', $this->getName());
|
329 |
-
|
330 |
-
|
331 |
-
}
|
332 |
-
if ($this->getTaxClass() !== null) {
|
333 |
-
$itemNode->addChild('tax_class', $this->getTaxClass());
|
334 |
-
}
|
335 |
$itemNode->addChild('currency', $this->getCurrency());
|
336 |
$itemNode->addChildWithCDATA('description', $this->getDescription());
|
337 |
$itemNode->addChildWithCDATA('deeplink', $this->getDeeplink());
|
338 |
$itemNode->addChild('promotion')->addAttribute('sort_order', $this->getPromotionSortOrder());
|
339 |
$itemNode->addChildWithCDATA('internal_order_info', $this->getInternalOrderInfo());
|
340 |
-
$itemNode->addChild('age_rating', $this->getAgeRating());
|
341 |
$itemNode->addChild('weight', $this->getWeight())->addAttribute('unit', $this->getWeightUnit());
|
342 |
|
343 |
/**
|
326 |
$itemNode->addAttribute('uid', $this->getUid());
|
327 |
$itemNode->addAttribute('last_update', $this->getLastUpdate());
|
328 |
$itemNode->addChildWithCDATA('name', $this->getName());
|
329 |
+
$itemNode->addChild('tax_percent', $this->getTaxPercent(), null, false);
|
330 |
+
$itemNode->addChild('tax_class', $this->getTaxClass(), null, false);
|
|
|
|
|
|
|
|
|
331 |
$itemNode->addChild('currency', $this->getCurrency());
|
332 |
$itemNode->addChildWithCDATA('description', $this->getDescription());
|
333 |
$itemNode->addChildWithCDATA('deeplink', $this->getDeeplink());
|
334 |
$itemNode->addChild('promotion')->addAttribute('sort_order', $this->getPromotionSortOrder());
|
335 |
$itemNode->addChildWithCDATA('internal_order_info', $this->getInternalOrderInfo());
|
336 |
+
$itemNode->addChild('age_rating', $this->getAgeRating(), null, false);
|
337 |
$itemNode->addChild('weight', $this->getWeight())->addAttribute('unit', $this->getWeightUnit());
|
338 |
|
339 |
/**
|
lib/Shopgate/classes/models/catalog/Shipping.php
CHANGED
@@ -58,8 +58,8 @@ class Shopgate_Model_Catalog_Shipping extends Shopgate_Model_AbstractExport {
|
|
58 |
* @var Shopgate_Model_XmlResultObject $shippingNode
|
59 |
*/
|
60 |
$shippingNode = $itemNode->addChild('shipping');
|
61 |
-
$shippingNode->addChild('costs_per_order', $this->getCostsPerOrder());
|
62 |
-
$shippingNode->addChild('additional_costs_per_unit', $this->getAdditionalCostsPerUnit());
|
63 |
$shippingNode->addChild('is_free', (int)$this->getIsFree());
|
64 |
|
65 |
return $itemNode;
|
58 |
* @var Shopgate_Model_XmlResultObject $shippingNode
|
59 |
*/
|
60 |
$shippingNode = $itemNode->addChild('shipping');
|
61 |
+
$shippingNode->addChild('costs_per_order', $this->getCostsPerOrder(), null, false);
|
62 |
+
$shippingNode->addChild('additional_costs_per_unit', $this->getAdditionalCostsPerUnit(), null, false);
|
63 |
$shippingNode->addChild('is_free', (int)$this->getIsFree());
|
64 |
|
65 |
return $itemNode;
|
lib/Shopgate/classes/models/catalog/Stock.php
CHANGED
@@ -78,9 +78,9 @@ class Shopgate_Model_Catalog_Stock extends Shopgate_Model_AbstractExport {
|
|
78 |
$stockNode->addChild('backorders', (int)$this->getBackorders());
|
79 |
$stockNode->addChild('use_stock', (int)$this->getUseStock());
|
80 |
$stockNode->addChild('stock_quantity', $this->getStockQuantity());
|
81 |
-
$stockNode->addChild('minimum_order_quantity', $this->getMinimumOrderQuantity());
|
82 |
-
$stockNode->addChild('maximum_order_quantity', $this->getMaximumOrderQuantity());
|
83 |
-
$stockNode->addChildWithCDATA('availability_text', $this->getAvailabilityText());
|
84 |
|
85 |
return $itemNode;
|
86 |
}
|
78 |
$stockNode->addChild('backorders', (int)$this->getBackorders());
|
79 |
$stockNode->addChild('use_stock', (int)$this->getUseStock());
|
80 |
$stockNode->addChild('stock_quantity', $this->getStockQuantity());
|
81 |
+
$stockNode->addChild('minimum_order_quantity', $this->getMinimumOrderQuantity(), null, false);
|
82 |
+
$stockNode->addChild('maximum_order_quantity', $this->getMaximumOrderQuantity(), null, false);
|
83 |
+
$stockNode->addChildWithCDATA('availability_text', $this->getAvailabilityText(), false);
|
84 |
|
85 |
return $itemNode;
|
86 |
}
|
lib/Shopgate/classes/models/media/Image.php
CHANGED
@@ -75,8 +75,8 @@ class Shopgate_Model_Media_Image extends Shopgate_Model_AbstractExport {
|
|
75 |
$imageNode->addAttribute('sort_order', $this->getSortOrder());
|
76 |
$imageNode->addAttribute('is_cover', $this->getIsCover());
|
77 |
$imageNode->addChildWithCDATA('url', $this->getUrl());
|
78 |
-
$imageNode->addChildWithCDATA('title', $this->getTitle());
|
79 |
-
$imageNode->addChildWithCDATA('alt', $this->getAlt());
|
80 |
|
81 |
return $itemNode;
|
82 |
}
|
75 |
$imageNode->addAttribute('sort_order', $this->getSortOrder());
|
76 |
$imageNode->addAttribute('is_cover', $this->getIsCover());
|
77 |
$imageNode->addChildWithCDATA('url', $this->getUrl());
|
78 |
+
$imageNode->addChildWithCDATA('title', $this->getTitle(), false);
|
79 |
+
$imageNode->addChildWithCDATA('alt', $this->getAlt(), false);
|
80 |
|
81 |
return $itemNode;
|
82 |
}
|
lib/Shopgate/classes/orders.php
CHANGED
@@ -1746,6 +1746,8 @@ class ShopgateShippingInfo extends ShopgateContainer {
|
|
1746 |
protected $display_name;
|
1747 |
protected $description;
|
1748 |
protected $amount;
|
|
|
|
|
1749 |
protected $weight;
|
1750 |
protected $api_response;
|
1751 |
protected $internal_shipping_info;
|
@@ -1804,6 +1806,8 @@ class ShopgateShippingInfo extends ShopgateContainer {
|
|
1804 |
/**
|
1805 |
*
|
1806 |
* @return float
|
|
|
|
|
1807 |
*/
|
1808 |
public function getAmount() {
|
1809 |
return $this->amount;
|
@@ -1812,11 +1816,45 @@ class ShopgateShippingInfo extends ShopgateContainer {
|
|
1812 |
/**
|
1813 |
*
|
1814 |
* @param float $value
|
|
|
|
|
1815 |
*/
|
1816 |
public function setAmount($value) {
|
1817 |
$this->amount = $value;
|
1818 |
}
|
1819 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1820 |
/**
|
1821 |
*
|
1822 |
* @return int
|
1746 |
protected $display_name;
|
1747 |
protected $description;
|
1748 |
protected $amount;
|
1749 |
+
protected $amount_net;
|
1750 |
+
protected $amount_gross;
|
1751 |
protected $weight;
|
1752 |
protected $api_response;
|
1753 |
protected $internal_shipping_info;
|
1806 |
/**
|
1807 |
*
|
1808 |
* @return float
|
1809 |
+
*
|
1810 |
+
* @deprecated use getAmountNet or getAmountGross
|
1811 |
*/
|
1812 |
public function getAmount() {
|
1813 |
return $this->amount;
|
1816 |
/**
|
1817 |
*
|
1818 |
* @param float $value
|
1819 |
+
*
|
1820 |
+
* @deprecated use setAmountNet or setAmountGross
|
1821 |
*/
|
1822 |
public function setAmount($value) {
|
1823 |
$this->amount = $value;
|
1824 |
}
|
1825 |
|
1826 |
+
/**
|
1827 |
+
*
|
1828 |
+
* @return float
|
1829 |
+
*/
|
1830 |
+
public function getAmountNet() {
|
1831 |
+
return $this->amount_net;
|
1832 |
+
}
|
1833 |
+
|
1834 |
+
/**
|
1835 |
+
*
|
1836 |
+
* @param float $value
|
1837 |
+
*/
|
1838 |
+
public function setAmountNet($value) {
|
1839 |
+
$this->amount_net = $value;
|
1840 |
+
}
|
1841 |
+
|
1842 |
+
/**
|
1843 |
+
*
|
1844 |
+
* @return float
|
1845 |
+
*/
|
1846 |
+
public function getAmountGross() {
|
1847 |
+
return $this->amount_gross;
|
1848 |
+
}
|
1849 |
+
|
1850 |
+
/**
|
1851 |
+
*
|
1852 |
+
* @param float $value
|
1853 |
+
*/
|
1854 |
+
public function setAmountGross($value) {
|
1855 |
+
$this->amount_gross = $value;
|
1856 |
+
}
|
1857 |
+
|
1858 |
/**
|
1859 |
*
|
1860 |
* @return int
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>shopgate_module</name>
|
4 |
-
<version>2.9.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.shopgate.com/Magento/de">Shopgate Plugin</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Shopgate Plugin</description>
|
11 |
<notes>Shopgate Modul</notes>
|
12 |
<authors><author><name>Peter Liebig</name><user>Shopgate</user><email>p.liebig@me.com</email></author><author><name>Stephan Recknagel</name><user>Shopgate</user><email>mail@recknagel.io</email></author><author><name>André Kraus</name><user>Shopgate</user><email>andre.kraus83@googlemail.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>13:
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Shopgate_Framework.xml" hash="3fb114204bd038da711122083876f161"/></dir></target><target name="magecommunity"><dir name="Shopgate"><dir name="Framework"><dir name="Block"><dir name="Adminhtml"><dir name="OAuth"><dir name="Config"><file name="Connector.php" hash="890d04b08bf692c12b02f29abf813f83"/></dir><dir name="Connect"><dir name="Add"><file name="Form.php" hash="45685099b41a46919a9900d22c30b711"/></dir><file name="Info.php" hash="ee7bbc837bf3f298791b8496f2d6d565"/><file name="Overlay.php" hash="a6496896dccb5898b36e3e65585650f4"/></dir><file name="Connect.php" hash="cc7e43ba447b6338f6c50ccaa5fd073a"/><file name="Data.php" hash="1903e819d5d16abba4c37d7823909260"/><file name="Disconnect.php" hash="2545e56bca73577ba5f73fce0501624a"/><dir name="Manage"><file name="Grid.php" hash="78357b78fed0e8b3535a7e505c8f6425"/></dir><file name="Manage.php" hash="a99e12333f7c27771ca42a0764108639"/></dir></dir><file name="Info.php" hash="3dd73900370546289a6033942a0c0528"/><dir name="Payment"><file name="MobilePayment.php" hash="7de8af7ec46e107c46a73efaf2a02034"/><file name="Shopgate.php" hash="67af406fa04da70461b3580b8adea89d"/></dir><dir name="Totals"><file name="AbstractPaymentFee.php" hash="5e36647f536d1c6daba33cd6e0a5e302"/><file name="CreditmemoPaymentFee.php" hash="4a287f54554d8d45772db386f54a45e7"/><file name="InvoicePaymentFee.php" hash="818164536fe249016af3046aef73f181"/><file name="OrderPaymentFee.php" hash="55c8f62c4da8014c99414ece9cd125c4"/></dir><file name="Version.php" hash="2f45712bb20635ac17d8bdee213819e5"/></dir><dir name="Helper"><dir name="Billsafe"><file name="Order.php" hash="474c2aa15f352224c11c8ab17e921c9d"/></dir><file name="Config.php" hash="2c736f067f5d69855e1523504a7afe36"/><file name="Coupon.php" hash="519697b13040ddfbc8f460b6034c8779"/><file name="Customer.php" hash="c68047909c0c6e14977336ab6afe2f6b"/><file name="Data.php" hash="62519f35a5421b0f933a7c42b6dde9d9"/><file name="Debug.php" hash="82c85038046fc9b2f994df18b7f202a6"/><file name="Export.php" hash="205dee2b07a96990efdc7ecca08cf075"/><dir name="Import"><file name="Order.php" hash="adf21efa29fdba12edfaf0d34e0cb1fb"/></dir><file name="Install.php" hash="57f42693c9a6ddb18b8a25a2a5da7cf8"/><dir name="Payment"><file name="Abstract.php" hash="207f16aab8224761b7d91802b9fb10ee"/><file name="Payone.php" hash="ddced5955ff55105d8b3c91e0fcb0778"/><file name="Wspp.php" hash="4214f1d3332cd189cee3df48108ebd8d"/></dir><file name="Sales.php" hash="a5dfa9e90343a4da4e0791f62b802484"/></dir><dir name="Model"><dir name="Carrier"><file name="Fix.php" hash="b29aaf2603b9bb18bb4452f4a8f94ef4"/></dir><dir name="Cataloginventory"><file name="Stock.php" hash="42ffccc3d644f8b04358a3e76bda32dd"/></dir><dir name="Compiler"><file name="Process.php" hash="740452b7bc234417788db1f1ee892ef5"/></dir><file name="Config.php" hash="30c638d50ff53e16bff9cfeb8285d170"/><file name="Customer.php" hash="97ed53ca3f69c7a24fb40cce11f58721"/><dir name="DreamRobot"><file name="Observer.php" hash="7b4e8922a46f5974b8edf359c632a9d3"/></dir><dir name="Export"><file name="Abstract.php" hash="9e86667845e8cebd8e0ccb8879b70b6d"/><dir name="Category"><file name="Csv.php" hash="72f4f58345d95f8f621783bedf2a092e"/><file name="Xml.php" hash="12ab046b9a000636ed4ed5eefb770af2"/></dir><file name="Category.php" hash="5a41141ecec85669674ec818c4661cdc"/><dir name="Customer"><file name="Orders.php" hash="30123a6fe3e391fca911fed042b256c8"/></dir><file name="Customer.php" hash="2711476c9538a22242d1511649ec77f1"/><dir name="Product"><file name="Csv.php" hash="579821eee1466a94b6aa1daf8fdc83c7"/><file name="Xml.php" hash="841aa15d8e195bc1ded566290caa8dd9"/></dir><file name="Product.php" hash="d9c807df57af3f1cced2d9bb433338ec"/><dir name="Review"><file name="Csv.php" hash="5c72f802a2de256ca1ec8dab1b75b291"/><file name="Xml.php" hash="bc16f60d9ed20705422921955a5071fe"/></dir><file name="Review.php" hash="ad6f548035a30da642d2459354acbb40"/><file name="Settings.php" hash="bd868e74806ec79e93c0fb6f4fcfdd3f"/></dir><file name="Feed.php" hash="fb99cd7b2b3d94908848b722df666b67"/><dir name="Mobile"><file name="Redirect.php" hash="8915ada38de387aabb2dc4580368d347"/></dir><dir name="Mysql4"><dir name="Core"><file name="Core.php" hash="fc129d4d929f83e8389367b9c5d6d5e1"/></dir><dir name="Customer"><file name="Collection.php" hash="89d31997abc3c2145f74e02dd5456a7c"/></dir><file name="Customer.php" hash="d5f460b2d5bfa87b8368a8a6c6b51115"/><file name="Product.php" hash="6a99b3d0de44dfbd132ce9caca19034e"/><dir name="Shopgate"><dir name="Order"><file name="Collection.php" hash="e180ba816be47239828bea65cd5f8445"/></dir><file name="Order.php" hash="c297847e39ad01307dba4a69c13445f2"/></dir></dir><file name="Observer.php" hash="da10a5dddba99720bea687ec4fa94c57"/><dir name="Payment"><dir name="Abstract"><file name="AbstractPayol.php" hash="cd01113947410cfc54be61e2daa60aeb"/></dir><file name="Abstract.php" hash="b824e58f30ffce15e74a6e8e331ab46f"/><file name="Amazon.php" hash="c90003246111cf066270015b41cb7ff9"/><file name="Authorize.php" hash="6f747fb258e59137cc5dadc179664246"/><file name="Billsafe.php" hash="1c97ec04356ae4ed25c1492a317eaaff"/><dir name="Cc"><file name="Abstract.php" hash="2b291ac14d9e1e3120416d6aeb4c3487"/><file name="Authn.php" hash="c38935ef46ad1ca1a9c475e23bf2a3fa"/><file name="AuthnAbstract.php" hash="191c01a96778b45c5128812f66049b07"/><dir name="Authncim"><file name="Gateway.php" hash="1f8df3fe0e50f4729bebfc1d4763b015"/><file name="Method.php" hash="aa6916548a71848ad7c83e4f053bc27e"/></dir><file name="Authncim.php" hash="89f1c2a0bb59d08c895da84c14c325ff"/><file name="Usaepay.php" hash="53297c43d694f4bfb5296a29ad10c4cb"/></dir><file name="Cc.php" hash="7fe7850acbe549859442ec9facb9b550"/><file name="Express.php" hash="e90c6eb120a0aec969f63496b4fb1063"/><file name="Factory.php" hash="18e6a9df111781de310fc72b339f0292"/><file name="Generic.php" hash="666f06186d1bb96b94af287d221e27c5"/><dir name="Ins"><file name="Payol.php" hash="b6961c4ab1fb9a95ab2d470aeaad8d29"/></dir><file name="Interface.php" hash="151002297bcce208b85bd260c7a25b47"/><dir name="Inv"><file name="Payol.php" hash="6d1c28b2ea2fb2fd63e09712f4533c77"/></dir><file name="MobilePayment.php" hash="59554c65e778831f6add450e0f846f42"/><dir name="Payone"><file name="Abstract.php" hash="d38bac40669498b6d3eb1f89de7a70f8"/><file name="BankAbstract.php" hash="fa4ef2c918868001c5f1df97cb4bc400"/><file name="Cc.php" hash="11e68f50ea43bf73b31c53efea0cbc4d"/><file name="Dbt.php" hash="7f098887ba6f12669a18f62d7885de6d"/><file name="Gp.php" hash="7686149aedae93b0d5eef0b06fc08d7e"/><file name="Idl.php" hash="57d144744565ff644db917cab7ef689e"/><file name="Inv.php" hash="91d893ee5eacdc00ff8fbb3f1b750894"/><file name="Klv.php" hash="f82fb0cc874ea8f1121f282372e4e404"/><file name="Pp.php" hash="93004cedd66ab4bf31e5bb8747b4a606"/><file name="Prp.php" hash="76079d7e154c3a982b1d117793942c3a"/><file name="Sue.php" hash="31280f2c8abf21f0a582b656fb0d38ad"/></dir><dir name="Pp"><file name="Abstract.php" hash="e6c5afcb0653d2ec3de3bd5d1442b355"/><file name="Wspp.php" hash="5c4d194c7814416491892f4cbe272d9f"/></dir><file name="Pp.php" hash="c521bbb32aed313c0170dd6e8361f934"/><file name="Router.php" hash="1df693718ebb4b71d2ae790678927194"/><file name="Shopgate.php" hash="f0d59e2a4369f7a22e47cf9c3bb9c44a"/><dir name="Simple"><file name="Billsafe.php" hash="939f38d1f3938be6f43c338a3204310f"/><dir name="Cod"><file name="Abstract.php" hash="7bcb77e2906200f8a7576a24d782d541"/><file name="Msp.php" hash="da63e630e339f73b1047f9be2fc13a80"/><file name="Native.php" hash="a18abef66d98a08e988bafa1564dfaa2"/><file name="Phoenix107.php" hash="958990a7ec99a4c102b335e68db4f563"/><file name="Phoenix108.php" hash="912cb903da51a2056f03d75c566dbc7b"/></dir><file name="Cod.php" hash="0688749cd9110544d01e5c1130be3005"/><file name="Invoice.php" hash="a86d8500a0dee3056e56b0ccfb1fae3d"/><file name="Mws.php" hash="66b68310d396e83423aefbd6e266c7ff"/><dir name="Paypal"><file name="Express.php" hash="e2d33dbc600503d9a7541ab53df60662"/><file name="Standard.php" hash="5281ddc90f8f560b6cffa2e97fe08304"/><file name="Standard1400.php" hash="d80d26e8189b12c9796929dfad77f6c8"/></dir><file name="Paypal.php" hash="03a7c4b8e193d262aa2dbd51cdac3ab8"/><dir name="Prepay"><file name="Abstract.php" hash="89767868690e40bc3d96f8bee4484880"/><file name="Checkmo.php" hash="781dd32522f7bc97c62313cb76429633"/><file name="Native.php" hash="48542e3e9ad2bafb504a200a6529eccc"/><file name="Phoenix.php" hash="7118e404d6f1755cdab35dbc2c8f058d"/></dir><file name="Prepay.php" hash="eb79f9f8469652e91b11fd5d714db84f"/><file name="Shopgate.php" hash="32b4ae3f7ceba3de183233973db4f03b"/><dir name="Sue"><file name="Abstract.php" hash="d07d6b3a5702b458ed4e5f4574e3ced9"/><file name="Sue118.php" hash="759f4a7e103f9f9f4457aa1d0694c26d"/><file name="Sue300.php" hash="c804244222e5fe67ead8916c5c1ffef1"/></dir><file name="Sue.php" hash="6802dc052e2088957329689b003a16f8"/></dir><file name="Simple.php" hash="e4f0b3cd8282c2661cb19eabdb77d075"/><file name="Usaepay.php" hash="50e049e1cae29abbd7027cf842878540"/><file name="Wspp.php" hash="23b0420ff59dc0bfa7940bf0f07562fc"/></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="0ee7969070ab0dddfdd3bb2cc404cd3c"/></dir><dir name="Customer"><file name="Collection.php" hash="2ddb7db1355100bc9e86f966f1d4612c"/></dir><file name="Customer.php" hash="69848842d4be07be4d66d700a7b6695b"/><file name="Product.php" hash="5c62ef4cfc3f0ebbbe5a9a46d1c25dfa"/><file name="Setup.php" hash="7b5cc0f99c857e9292638c1fbeb43969"/><dir name="Shopgate"><dir name="Connection"><file name="Collection.php" hash="f294d4239cee276b7e3c5e6e2109de66"/><dir name="Grid"><file name="Collection.php" hash="d499139d50dffbfe1b1e868b5aeeee0f"/></dir></dir><dir name="Order"><file name="Collection.php" hash="2c18a4ca248ca8719e7ead85f0c57619"/></dir><file name="Order.php" hash="1942eeb8268781c499f8cad384081b02"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="614d1e96cd2c97e0fcd7db86ee3aad89"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="c4400832de32367067fd5396bcf7bfc8"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="7a309b69fb20fb6fcae5f3b77f5b7ba9"/></dir></dir></dir></dir><dir name="Search"><dir name="Shopgate"><file name="Order.php" hash="94dcf366528641687b89ab0c9f973ef5"/></dir></dir><dir name="Shopgate"><dir name="Cart"><dir name="Validation"><dir name="Stock"><file name="Bundle.php" hash="7cc03239fbefe3a8e71755a178299944"/><file name="Simple.php" hash="9da9891d52c89e0772af5bcea7581ae8"/></dir><file name="Stock.php" hash="03d8139aa9840d707c8e4cb991bca20f"/></dir></dir><file name="Connection.php" hash="ff0da764d444103f5892ef21e23ba353"/><file name="Order.php" hash="89e0e425fc48282c1b46d3078b294be1"/><file name="Plugin.php" hash="521cb19dae0c68d2c0f44fd5cf49e82e"/><dir name="Shipping"><dir name="Mapper"><file name="Carrier.php" hash="ef57904070fdf7921e51e88c3991c029"/><dir name="Method"><file name="Abstract.php" hash="bb402c49f3da66f7bd4baf5b215f989e"/><file name="Interface.php" hash="1bab00e6e0356184c3f213acfce601da"/><file name="Shopgate.php" hash="af8e1ade067d1b9fb0e5b493ad814576"/><file name="Usps.php" hash="14969ce8762a7fa5e5e5d6bc64285f52"/></dir></dir><file name="Mapper.php" hash="b93ac160c4c176c77887a23593ab058c"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="8dfc3964b750aebac8db5f584559d5c3"/><dir name="Description"><file name="List.php" hash="c83f37019461ab7adc86a57400f63761"/></dir><file name="Description.php" hash="d0dcebc9d75fdb0bb80f3c3faba6397c"/><file name="Enabledisable.php" hash="7f189c26cd1c2c7f1cd6dc56379798b5"/><dir name="Item"><file name="Sort.php" hash="2dc75f9c1e8baaddbf895945acd2ff19"/></dir><dir name="Product"><file name="Image.php" hash="e9d0e7c5769446290094d2b67e5c468b"/><file name="Names.php" hash="98de8ee7ae9b3c504eb087f5e09d3afd"/><file name="Types.php" hash="007b54c2e095691380c21a5ab62846fc"/></dir><dir name="Redirect"><file name="Types.php" hash="c5d3c44ab1f5ba74224b41836b14afff"/></dir><file name="Server.php" hash="b569e24076ca68c4063729fb708b666a"/><file name="Store.php" hash="cb2998beb43ba8afeeaa5b64a5b5e946"/><dir name="Validation"><file name="Config.php" hash="77382cb829f4b3b50120d7e1359e0051"/></dir><dir name="Variation"><dir name="Export"><file name="Type.php" hash="bb19358c2c2fbee3cb9776f3540faa20"/></dir></dir><dir name="Weight"><file name="Units.php" hash="10af44d670bcfdb559f4196c7006e893"/></dir></dir></dir></dir></dir><file name="changelog.txt" hash="4276895baf8dafc64694b8bc2d364b8b"/><dir name="controllers"><dir name="Adminhtml"><file name="ShopgateController.php" hash="cd2305edb0348a15f956d20d39433778"/></dir><file name="FrameworkController.php" hash="2aec53db3cedaf901ef6199dc000cda2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d1f345ca5fc8b0619234f9c270fb84a7"/><file name="config.xml" hash="6bc5d85720a1b357b2701539ba66b049"/><file name="system.xml" hash="eae99f8132b6316c0abdc0ec7440ddb6"/></dir><file name="licence.txt" hash="dec6ca25c420b36a2e400caf1541c923"/><dir name="sql"><dir name="shopgate_setup"><file name="mysql4-install-0.1.0.php" hash="069abba038757da43b2ca6c5a0c82aba"/><file name="mysql4-install-2.1.45.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-install-2.2.0.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="cc637fc1bc511e745f02a56d0b36e3be"/><file name="mysql4-upgrade-1.0.5-1.0.7.php" hash="1e800d9d235b817bf5be698288bc0129"/><file name="mysql4-upgrade-2.1.44-2.1.45.php" hash="134d0b665746c61d364f6fd93d83f46c"/><file name="mysql4-upgrade-2.1.49-2.1.50.php" hash="e0fd395bb9c25c0e544c455186cfe7c9"/><file name="mysql4-upgrade-2.4.28-2.4.29.php" hash="9c8c868ce90e42b56182b23b78d6fbe7"/><file name="mysql4-upgrade-2.4.29-2.4.30.php" hash="ca3ee1e2f337bcea26264a17f603548e"/><file name="mysql4-upgrade-2.7.5-2.8.0.php" hash="34393a58a0b4ec90b4e618d3ff4cc565"/><file name="mysql4-upgrade-2.9.15-2.9.16.php" hash="980e7cc83f912ef4f630ef8d1cb964d1"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="89a34b7b9ad2eec492055e52e7e75049"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir><dir name="de_CH"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir><dir name="de_AT"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="shopgate"><file name="logo.png" hash="b7139047ecc90b15a5710ab0fe77fc81"/><file name="logo_big.png" hash="b98bfcf09766589506a1cca24ca47972"/><file name="logo_small.png" hash="7abf7f774c592eb582c2856e027af798"/><file name="oauth_connect.js" hash="8e5c77d9ad1354f826445f03c91008f4"/><file name="shopgate_admin.css" hash="0fbc07171267b9fb5dba7004a0858f66"/><file name="target.js" hash="80484a4dae515f708c97545d9959673a"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Shopgate"><dir name="assets"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="js_header.html" hash="f9865eae13ed93fd41788aa27b0391ee"/><file name="link_tag.html" hash="4798d67e30ef4a76dd8435326421673d"/><file name="mobile_header.html" hash="17616650e160eaccd24e25729396c5a9"/></dir><file name="changelog.txt" hash="8df680b4c03245cd009713be166e3426"/><dir name="classes"><file name="apis.php" hash="61ceeade474c9dffa98c9c15691cae7f"/><file name="configuration.php" hash="6b95519eed1c7bde3951e4ea52463181"/><file name="core.php" hash="ef4cd2504f6d17b81cbf1ad307e086f0"/><file name="customers.php" hash="3bc00737d0cfd788c24f52b303babd8a"/><file name="external_orders.php" hash="7b4d0d3c42bf420904903a26c19bb7a3"/><dir name="helper"><file name="DataStructure.php" hash="ece9e9f855756777f543d090f5ecc710"/><file name="Pricing.php" hash="fd4c74999abc3bfa05fd74994a2ce78f"/><file name="String.php" hash="10c9396b2975bf0bde86f171932c3074"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="items.php" hash="7a361efd0a5327c0ad0f0745c1b74cc0"/><dir name="models"><file name="Abstract.php" hash="a32633283eb403a55a166bbad70b3e2f"/><file name="AbstractExport.php" hash="f265f9e906208e1799994d117582be20"/><file name="XmlEmptyObject.php" hash="d6cfdae3bdd858d4f10fcebdb542f533"/><file name="XmlResultObject.php" hash="e104dedb2b8fa4579b7a93da2cb58dc0"/><dir name="catalog"><file name="Attribute.php" hash="28d8f3bc6c416661d1eaa77726ba7009"/><file name="AttributeGroup.php" hash="0270086ec8006ee8231c6b0baa8d6034"/><file name="Category.php" hash="fcba83c074f7559f44bc62154f7063e0"/><file name="CategoryPath.php" hash="475869aef74c567c8569ee9953210faa"/><file name="Identifier.php" hash="d9a3b16d1fcdec641ca2b0fd77fbd625"/><file name="Input.php" hash="77df45fd89aec19565a5fae7178205bb"/><file name="Manufacturer.php" hash="0e9463bf758f921d4f31d429e12996b2"/><file name="Option.php" hash="fd95fe72bff985ae0b2861da115e2468"/><file name="Price.php" hash="63587038abdac8fbe74428da7c433e28"/><file name="Product.php" hash="b73752fd8e50547a7fd055796bd0ae55"/><file name="Property.php" hash="5967f0403a606a27ea4fec71a8402327"/><file name="Relation.php" hash="263cde539af500af911baec4e354079e"/><file name="Review.php" hash="72c94cb1f2a54bafffdb5672d87ecd4d"/><file name="Shipping.php" hash="e4cabbc096e8aed1ffa98a23abb47b2d"/><file name="Stock.php" hash="f157bc07057803b571018df2db0fefa6"/><file name="Tag.php" hash="39e7b845ab157d2f707707576e868d64"/><file name="TierPrice.php" hash="9dd757c9c3d193944a5727fbe5cf4704"/><file name="Validation.php" hash="0be71640c1df60ab809347194ec66457"/><file name="Visibility.php" hash="d60c6b8ec486da4afdc46a00d65ad172"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="media"><file name="Attachment.php" hash="c074ef3426c2506350cbf5ff0133c89d"/><file name="Image.php" hash="3640490564b897d069c9c4180fb23649"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir></dir><file name="orders.php" hash="b34f764bfcdaed1470d41fc7d8afe4da"/><file name="redirect.php" hash="568c682f66c4434188c604158029db57"/></dir><dir name="config"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="de19abc78063ea9a4112964c79946f1c"/><file name="shopgate.php" hash="f0482cc4027105bb5d423ddde01e7ac7"/><file name="shopgate_license.txt" hash="21fbb2f00b832416916b27c5e3f5d6d1"/><dir name="temp"><dir name="cache"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/><dir name="logs"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir></dir><dir name="vendors"><file name="2d_is.php" hash="087decaca87ee85d548d8caaa43f1212"/><file name="BSD_license.txt" hash="2df4dd93533ca2c19f6f2d601bc3e0d5"/><file name="JSON.php" hash="c8398aeb5c3c71aeb1813389d9a030af"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name=".htaccess" hash="34479bc8d9df775c38a980ecaf6f3f4b"/></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="608ba89093ef89e1c182cd6085dbf3b1"/></dir><dir name="template"><dir name="shopgate"><file name="mobile_website.phtml" hash="229cbefd12ea77676f8af9c7159528ea"/><dir name="payment"><file name="mobile_payment.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/><file name="shopgate.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="8bab300fb25a48cd2c8119ae1942ed54"/></dir><dir name="template"><dir name="shopgate"><dir name="oauth"><dir name="config"><file name="connector.phtml" hash="478c309bdde7834bf20a48b65a4699fb"/></dir><dir name="connect"><file name="info.phtml" hash="4f75dc4311616081873a7d416b96c1c2"/><file name="overlay.phtml" hash="2a17d5b6ff8023568437b194f8a9d482"/></dir><file name="connect.phtml" hash="6956aa22eedf549c4565304b4e4a4ab9"/><file name="data.phtml" hash="09b4c5d83863f104db7a018510cdb315"/><file name="disconnect.phtml" hash="2858cebe9004c9fb5764f79faee46f87"/><file name="manage.phtml" hash="1f99255efbce4dbdc1ee781820d455b8"/></dir><dir name="payment"><file name="mobile_payment.phtml" hash="2892e0dd200db6c0ffa5fa83f87d838c"/><file name="shopgate.phtml" hash="5457030290f8aa08c2711a8bd27c3dee"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>shopgate_module</name>
|
4 |
+
<version>2.9.23</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://wiki.shopgate.com/Magento/de">Shopgate Plugin</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Shopgate Plugin</description>
|
11 |
<notes>Shopgate Modul</notes>
|
12 |
<authors><author><name>Peter Liebig</name><user>Shopgate</user><email>p.liebig@me.com</email></author><author><name>Stephan Recknagel</name><user>Shopgate</user><email>mail@recknagel.io</email></author><author><name>André Kraus</name><user>Shopgate</user><email>andre.kraus83@googlemail.com</email></author></authors>
|
13 |
+
<date>2015-10-13</date>
|
14 |
+
<time>13:27:20</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Shopgate_Framework.xml" hash="3fb114204bd038da711122083876f161"/></dir></target><target name="magecommunity"><dir name="Shopgate"><dir name="Framework"><dir name="Block"><dir name="Adminhtml"><dir name="OAuth"><dir name="Config"><file name="Connector.php" hash="890d04b08bf692c12b02f29abf813f83"/></dir><dir name="Connect"><dir name="Add"><file name="Form.php" hash="45685099b41a46919a9900d22c30b711"/></dir><file name="Info.php" hash="ee7bbc837bf3f298791b8496f2d6d565"/><file name="Overlay.php" hash="a6496896dccb5898b36e3e65585650f4"/></dir><file name="Connect.php" hash="cc7e43ba447b6338f6c50ccaa5fd073a"/><file name="Data.php" hash="1903e819d5d16abba4c37d7823909260"/><file name="Disconnect.php" hash="2545e56bca73577ba5f73fce0501624a"/><dir name="Manage"><file name="Grid.php" hash="78357b78fed0e8b3535a7e505c8f6425"/></dir><file name="Manage.php" hash="a99e12333f7c27771ca42a0764108639"/></dir></dir><file name="Info.php" hash="3dd73900370546289a6033942a0c0528"/><dir name="Payment"><file name="MobilePayment.php" hash="7de8af7ec46e107c46a73efaf2a02034"/><file name="Shopgate.php" hash="67af406fa04da70461b3580b8adea89d"/></dir><dir name="Totals"><file name="AbstractPaymentFee.php" hash="5e36647f536d1c6daba33cd6e0a5e302"/><file name="CreditmemoPaymentFee.php" hash="4a287f54554d8d45772db386f54a45e7"/><file name="InvoicePaymentFee.php" hash="818164536fe249016af3046aef73f181"/><file name="OrderPaymentFee.php" hash="55c8f62c4da8014c99414ece9cd125c4"/></dir><file name="Version.php" hash="2f45712bb20635ac17d8bdee213819e5"/></dir><dir name="Helper"><dir name="Billsafe"><file name="Order.php" hash="474c2aa15f352224c11c8ab17e921c9d"/></dir><file name="Config.php" hash="2c736f067f5d69855e1523504a7afe36"/><file name="Coupon.php" hash="519697b13040ddfbc8f460b6034c8779"/><file name="Customer.php" hash="c68047909c0c6e14977336ab6afe2f6b"/><file name="Data.php" hash="62519f35a5421b0f933a7c42b6dde9d9"/><file name="Debug.php" hash="82c85038046fc9b2f994df18b7f202a6"/><file name="Export.php" hash="205dee2b07a96990efdc7ecca08cf075"/><dir name="Import"><file name="Order.php" hash="adf21efa29fdba12edfaf0d34e0cb1fb"/></dir><file name="Install.php" hash="57f42693c9a6ddb18b8a25a2a5da7cf8"/><dir name="Payment"><file name="Abstract.php" hash="207f16aab8224761b7d91802b9fb10ee"/><file name="Payone.php" hash="ddced5955ff55105d8b3c91e0fcb0778"/><file name="Wspp.php" hash="4214f1d3332cd189cee3df48108ebd8d"/></dir><file name="Sales.php" hash="a5dfa9e90343a4da4e0791f62b802484"/></dir><dir name="Model"><dir name="Carrier"><file name="Fix.php" hash="51d800bb0c32afd6ad1a46c244dab9d8"/></dir><dir name="Cataloginventory"><file name="Stock.php" hash="42ffccc3d644f8b04358a3e76bda32dd"/></dir><dir name="Compiler"><file name="Process.php" hash="740452b7bc234417788db1f1ee892ef5"/></dir><file name="Config.php" hash="30c638d50ff53e16bff9cfeb8285d170"/><file name="Customer.php" hash="97ed53ca3f69c7a24fb40cce11f58721"/><dir name="DreamRobot"><file name="Observer.php" hash="7b4e8922a46f5974b8edf359c632a9d3"/></dir><dir name="Export"><file name="Abstract.php" hash="9e86667845e8cebd8e0ccb8879b70b6d"/><dir name="Category"><file name="Csv.php" hash="72f4f58345d95f8f621783bedf2a092e"/><file name="Xml.php" hash="12ab046b9a000636ed4ed5eefb770af2"/></dir><file name="Category.php" hash="5a41141ecec85669674ec818c4661cdc"/><dir name="Customer"><file name="Orders.php" hash="30123a6fe3e391fca911fed042b256c8"/></dir><file name="Customer.php" hash="2711476c9538a22242d1511649ec77f1"/><dir name="Product"><file name="Csv.php" hash="50cd5a66e8034f3584140f91b56fe03d"/><file name="Xml.php" hash="c1ac33b37c7ae13bad1136f9bdc54550"/></dir><file name="Product.php" hash="d9c807df57af3f1cced2d9bb433338ec"/><dir name="Review"><file name="Csv.php" hash="5c72f802a2de256ca1ec8dab1b75b291"/><file name="Xml.php" hash="bc16f60d9ed20705422921955a5071fe"/></dir><file name="Review.php" hash="ad6f548035a30da642d2459354acbb40"/><file name="Settings.php" hash="bd868e74806ec79e93c0fb6f4fcfdd3f"/></dir><file name="Feed.php" hash="fb99cd7b2b3d94908848b722df666b67"/><dir name="Mobile"><file name="Redirect.php" hash="8915ada38de387aabb2dc4580368d347"/></dir><dir name="Mysql4"><dir name="Core"><file name="Core.php" hash="fc129d4d929f83e8389367b9c5d6d5e1"/></dir><dir name="Customer"><file name="Collection.php" hash="89d31997abc3c2145f74e02dd5456a7c"/></dir><file name="Customer.php" hash="d5f460b2d5bfa87b8368a8a6c6b51115"/><file name="Product.php" hash="6a99b3d0de44dfbd132ce9caca19034e"/><dir name="Shopgate"><dir name="Order"><file name="Collection.php" hash="e180ba816be47239828bea65cd5f8445"/></dir><file name="Order.php" hash="c297847e39ad01307dba4a69c13445f2"/></dir></dir><file name="Observer.php" hash="da10a5dddba99720bea687ec4fa94c57"/><dir name="Payment"><dir name="Abstract"><file name="AbstractPayol.php" hash="cd01113947410cfc54be61e2daa60aeb"/></dir><file name="Abstract.php" hash="b824e58f30ffce15e74a6e8e331ab46f"/><file name="Amazon.php" hash="c90003246111cf066270015b41cb7ff9"/><file name="Authorize.php" hash="6f747fb258e59137cc5dadc179664246"/><file name="Billsafe.php" hash="1c97ec04356ae4ed25c1492a317eaaff"/><dir name="Cc"><file name="Abstract.php" hash="2b291ac14d9e1e3120416d6aeb4c3487"/><file name="Authn.php" hash="c38935ef46ad1ca1a9c475e23bf2a3fa"/><file name="AuthnAbstract.php" hash="191c01a96778b45c5128812f66049b07"/><dir name="Authncim"><file name="Gateway.php" hash="1f8df3fe0e50f4729bebfc1d4763b015"/><file name="Method.php" hash="aa6916548a71848ad7c83e4f053bc27e"/></dir><file name="Authncim.php" hash="89f1c2a0bb59d08c895da84c14c325ff"/><file name="Usaepay.php" hash="53297c43d694f4bfb5296a29ad10c4cb"/></dir><file name="Cc.php" hash="7fe7850acbe549859442ec9facb9b550"/><file name="Express.php" hash="e90c6eb120a0aec969f63496b4fb1063"/><file name="Factory.php" hash="2f06c4e03bac21f81044caf144dc7bc4"/><file name="Generic.php" hash="666f06186d1bb96b94af287d221e27c5"/><dir name="Ins"><file name="Payol.php" hash="b6961c4ab1fb9a95ab2d470aeaad8d29"/></dir><file name="Interface.php" hash="151002297bcce208b85bd260c7a25b47"/><dir name="Inv"><file name="Payol.php" hash="6d1c28b2ea2fb2fd63e09712f4533c77"/></dir><file name="MobilePayment.php" hash="59554c65e778831f6add450e0f846f42"/><dir name="Payone"><file name="Abstract.php" hash="798825e14c4cf19fdbb0616b68583048"/><file name="BankAbstract.php" hash="fa4ef2c918868001c5f1df97cb4bc400"/><file name="Cc.php" hash="11e68f50ea43bf73b31c53efea0cbc4d"/><file name="Dbt.php" hash="7f098887ba6f12669a18f62d7885de6d"/><file name="Gp.php" hash="7686149aedae93b0d5eef0b06fc08d7e"/><file name="Idl.php" hash="57d144744565ff644db917cab7ef689e"/><file name="Inv.php" hash="91d893ee5eacdc00ff8fbb3f1b750894"/><file name="Klv.php" hash="f82fb0cc874ea8f1121f282372e4e404"/><file name="Pp.php" hash="1165aa67ef8ccdc93a2eb0b7bf03f3d0"/><file name="Prp.php" hash="76079d7e154c3a982b1d117793942c3a"/><file name="Sue.php" hash="31280f2c8abf21f0a582b656fb0d38ad"/></dir><dir name="Pp"><file name="Abstract.php" hash="e6c5afcb0653d2ec3de3bd5d1442b355"/><file name="Wspp.php" hash="5c4d194c7814416491892f4cbe272d9f"/></dir><file name="Pp.php" hash="c521bbb32aed313c0170dd6e8361f934"/><file name="Router.php" hash="1df693718ebb4b71d2ae790678927194"/><file name="Shopgate.php" hash="f0d59e2a4369f7a22e47cf9c3bb9c44a"/><dir name="Simple"><file name="Billsafe.php" hash="d352d66d5101454f4cfec46e4fcaa88a"/><dir name="Cod"><file name="Abstract.php" hash="7bcb77e2906200f8a7576a24d782d541"/><file name="Msp.php" hash="da63e630e339f73b1047f9be2fc13a80"/><file name="Native.php" hash="a18abef66d98a08e988bafa1564dfaa2"/><file name="Phoenix107.php" hash="958990a7ec99a4c102b335e68db4f563"/><file name="Phoenix108.php" hash="912cb903da51a2056f03d75c566dbc7b"/></dir><file name="Cod.php" hash="0688749cd9110544d01e5c1130be3005"/><file name="Invoice.php" hash="a86d8500a0dee3056e56b0ccfb1fae3d"/><file name="Mws.php" hash="66b68310d396e83423aefbd6e266c7ff"/><dir name="Paypal"><file name="Express.php" hash="e2d33dbc600503d9a7541ab53df60662"/><file name="Standard.php" hash="5281ddc90f8f560b6cffa2e97fe08304"/><file name="Standard1400.php" hash="d80d26e8189b12c9796929dfad77f6c8"/></dir><file name="Paypal.php" hash="03a7c4b8e193d262aa2dbd51cdac3ab8"/><dir name="Prepay"><file name="Abstract.php" hash="89767868690e40bc3d96f8bee4484880"/><file name="Checkmo.php" hash="781dd32522f7bc97c62313cb76429633"/><file name="Native.php" hash="48542e3e9ad2bafb504a200a6529eccc"/><file name="Phoenix.php" hash="7118e404d6f1755cdab35dbc2c8f058d"/></dir><file name="Prepay.php" hash="eb79f9f8469652e91b11fd5d714db84f"/><file name="Shopgate.php" hash="32b4ae3f7ceba3de183233973db4f03b"/><dir name="Sue"><file name="Abstract.php" hash="d07d6b3a5702b458ed4e5f4574e3ced9"/><file name="Sue118.php" hash="759f4a7e103f9f9f4457aa1d0694c26d"/><file name="Sue300.php" hash="c804244222e5fe67ead8916c5c1ffef1"/></dir><file name="Sue.php" hash="6802dc052e2088957329689b003a16f8"/></dir><file name="Simple.php" hash="e4f0b3cd8282c2661cb19eabdb77d075"/><file name="Usaepay.php" hash="50e049e1cae29abbd7027cf842878540"/><file name="Wspp.php" hash="23b0420ff59dc0bfa7940bf0f07562fc"/></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="0ee7969070ab0dddfdd3bb2cc404cd3c"/></dir><dir name="Customer"><file name="Collection.php" hash="2ddb7db1355100bc9e86f966f1d4612c"/></dir><file name="Customer.php" hash="69848842d4be07be4d66d700a7b6695b"/><file name="Product.php" hash="5c62ef4cfc3f0ebbbe5a9a46d1c25dfa"/><file name="Setup.php" hash="7b5cc0f99c857e9292638c1fbeb43969"/><dir name="Shopgate"><dir name="Connection"><file name="Collection.php" hash="f294d4239cee276b7e3c5e6e2109de66"/><dir name="Grid"><file name="Collection.php" hash="d499139d50dffbfe1b1e868b5aeeee0f"/></dir></dir><dir name="Order"><file name="Collection.php" hash="2c18a4ca248ca8719e7ead85f0c57619"/></dir><file name="Order.php" hash="1942eeb8268781c499f8cad384081b02"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="614d1e96cd2c97e0fcd7db86ee3aad89"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="c4400832de32367067fd5396bcf7bfc8"/></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="ShopgatePaymentFee.php" hash="7a309b69fb20fb6fcae5f3b77f5b7ba9"/></dir></dir></dir></dir><dir name="Search"><dir name="Shopgate"><file name="Order.php" hash="94dcf366528641687b89ab0c9f973ef5"/></dir></dir><dir name="Shopgate"><dir name="Cart"><dir name="Validation"><dir name="Stock"><file name="Bundle.php" hash="7cc03239fbefe3a8e71755a178299944"/><file name="Simple.php" hash="9da9891d52c89e0772af5bcea7581ae8"/></dir><file name="Stock.php" hash="03d8139aa9840d707c8e4cb991bca20f"/></dir></dir><file name="Connection.php" hash="ff0da764d444103f5892ef21e23ba353"/><file name="Order.php" hash="89e0e425fc48282c1b46d3078b294be1"/><file name="Plugin.php" hash="521cb19dae0c68d2c0f44fd5cf49e82e"/><dir name="Shipping"><dir name="Mapper"><file name="Carrier.php" hash="ef57904070fdf7921e51e88c3991c029"/><dir name="Method"><file name="Abstract.php" hash="bb402c49f3da66f7bd4baf5b215f989e"/><file name="Interface.php" hash="1bab00e6e0356184c3f213acfce601da"/><file name="Shopgate.php" hash="af8e1ade067d1b9fb0e5b493ad814576"/><file name="Usps.php" hash="14969ce8762a7fa5e5e5d6bc64285f52"/></dir></dir><file name="Mapper.php" hash="b93ac160c4c176c77887a23593ab058c"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="8dfc3964b750aebac8db5f584559d5c3"/><dir name="Description"><file name="List.php" hash="c83f37019461ab7adc86a57400f63761"/></dir><file name="Description.php" hash="d0dcebc9d75fdb0bb80f3c3faba6397c"/><file name="Enabledisable.php" hash="7f189c26cd1c2c7f1cd6dc56379798b5"/><dir name="Item"><file name="Sort.php" hash="2dc75f9c1e8baaddbf895945acd2ff19"/></dir><dir name="Product"><file name="Image.php" hash="e9d0e7c5769446290094d2b67e5c468b"/><file name="Names.php" hash="98de8ee7ae9b3c504eb087f5e09d3afd"/><file name="Types.php" hash="007b54c2e095691380c21a5ab62846fc"/></dir><dir name="Redirect"><file name="Types.php" hash="c5d3c44ab1f5ba74224b41836b14afff"/></dir><file name="Server.php" hash="b569e24076ca68c4063729fb708b666a"/><file name="Store.php" hash="cb2998beb43ba8afeeaa5b64a5b5e946"/><dir name="Validation"><file name="Config.php" hash="77382cb829f4b3b50120d7e1359e0051"/></dir><dir name="Variation"><dir name="Export"><file name="Type.php" hash="bb19358c2c2fbee3cb9776f3540faa20"/></dir></dir><dir name="Weight"><file name="Units.php" hash="10af44d670bcfdb559f4196c7006e893"/></dir></dir></dir></dir></dir><file name="changelog.txt" hash="de4b37364ab78ffd2f43963114452214"/><dir name="controllers"><dir name="Adminhtml"><file name="ShopgateController.php" hash="cd2305edb0348a15f956d20d39433778"/></dir><file name="FrameworkController.php" hash="2aec53db3cedaf901ef6199dc000cda2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d1f345ca5fc8b0619234f9c270fb84a7"/><file name="config.xml" hash="131da9f40822dd3bb9b2e36c26d71a54"/><file name="system.xml" hash="eae99f8132b6316c0abdc0ec7440ddb6"/></dir><file name="licence.txt" hash="dec6ca25c420b36a2e400caf1541c923"/><dir name="sql"><dir name="shopgate_setup"><file name="mysql4-install-0.1.0.php" hash="069abba038757da43b2ca6c5a0c82aba"/><file name="mysql4-install-2.1.45.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-install-2.2.0.php" hash="eddddf157e55a87edc77361dde564463"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="cc637fc1bc511e745f02a56d0b36e3be"/><file name="mysql4-upgrade-1.0.5-1.0.7.php" hash="1e800d9d235b817bf5be698288bc0129"/><file name="mysql4-upgrade-2.1.44-2.1.45.php" hash="134d0b665746c61d364f6fd93d83f46c"/><file name="mysql4-upgrade-2.1.49-2.1.50.php" hash="e0fd395bb9c25c0e544c455186cfe7c9"/><file name="mysql4-upgrade-2.4.28-2.4.29.php" hash="9c8c868ce90e42b56182b23b78d6fbe7"/><file name="mysql4-upgrade-2.4.29-2.4.30.php" hash="ca3ee1e2f337bcea26264a17f603548e"/><file name="mysql4-upgrade-2.7.5-2.8.0.php" hash="34393a58a0b4ec90b4e618d3ff4cc565"/><file name="mysql4-upgrade-2.9.15-2.9.16.php" hash="980e7cc83f912ef4f630ef8d1cb964d1"/><file name="mysql4-upgrade-2.9.4-2.9.5.php" hash="89a34b7b9ad2eec492055e52e7e75049"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir><dir name="de_CH"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir><dir name="de_AT"><file name="Shopgate_Framework.csv" hash="bdf9f8ed6d5127744440bfd72bb09e06"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="shopgate"><file name="logo.png" hash="b7139047ecc90b15a5710ab0fe77fc81"/><file name="logo_big.png" hash="b98bfcf09766589506a1cca24ca47972"/><file name="logo_small.png" hash="7abf7f774c592eb582c2856e027af798"/><file name="oauth_connect.js" hash="8e5c77d9ad1354f826445f03c91008f4"/><file name="shopgate_admin.css" hash="0fbc07171267b9fb5dba7004a0858f66"/><file name="target.js" hash="80484a4dae515f708c97545d9959673a"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Shopgate"><dir name="assets"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="js_header.html" hash="f9865eae13ed93fd41788aa27b0391ee"/><file name="link_tag.html" hash="4798d67e30ef4a76dd8435326421673d"/><file name="mobile_header.html" hash="17616650e160eaccd24e25729396c5a9"/></dir><file name="changelog.txt" hash="414f746ad2ce641b8ddf0e8e24a8709f"/><dir name="classes"><file name="apis.php" hash="61ceeade474c9dffa98c9c15691cae7f"/><file name="configuration.php" hash="6b95519eed1c7bde3951e4ea52463181"/><file name="core.php" hash="5e2c4dd749dd92578e7748b518dd94a6"/><file name="customers.php" hash="3bc00737d0cfd788c24f52b303babd8a"/><file name="external_orders.php" hash="f95b8dddc20b66b7484faf8b1831f875"/><dir name="helper"><file name="DataStructure.php" hash="ece9e9f855756777f543d090f5ecc710"/><file name="Pricing.php" hash="fd4c74999abc3bfa05fd74994a2ce78f"/><file name="String.php" hash="10c9396b2975bf0bde86f171932c3074"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><file name="items.php" hash="7a361efd0a5327c0ad0f0745c1b74cc0"/><dir name="models"><file name="Abstract.php" hash="a32633283eb403a55a166bbad70b3e2f"/><file name="AbstractExport.php" hash="f265f9e906208e1799994d117582be20"/><file name="XmlEmptyObject.php" hash="d6cfdae3bdd858d4f10fcebdb542f533"/><file name="XmlResultObject.php" hash="340804eb0f2ba6bcb6b05311b8bb1f11"/><dir name="catalog"><file name="Attribute.php" hash="28d8f3bc6c416661d1eaa77726ba7009"/><file name="AttributeGroup.php" hash="0270086ec8006ee8231c6b0baa8d6034"/><file name="Category.php" hash="beba58d2796cf7b4ca08ce68de65415b"/><file name="CategoryPath.php" hash="475869aef74c567c8569ee9953210faa"/><file name="Identifier.php" hash="d9a3b16d1fcdec641ca2b0fd77fbd625"/><file name="Input.php" hash="77df45fd89aec19565a5fae7178205bb"/><file name="Manufacturer.php" hash="e45f534f5f6acad118be24ffc63a0460"/><file name="Option.php" hash="fd95fe72bff985ae0b2861da115e2468"/><file name="Price.php" hash="3cb25372ae58bd0c71b342f9ef2dca73"/><file name="Product.php" hash="7e7c49e10b379eae5d0141efe2c91305"/><file name="Property.php" hash="5967f0403a606a27ea4fec71a8402327"/><file name="Relation.php" hash="263cde539af500af911baec4e354079e"/><file name="Review.php" hash="72c94cb1f2a54bafffdb5672d87ecd4d"/><file name="Shipping.php" hash="1fe425496bd9720dc18bd076e56aca9e"/><file name="Stock.php" hash="4e645877e778ec8d02ae98262bfa9663"/><file name="Tag.php" hash="39e7b845ab157d2f707707576e868d64"/><file name="TierPrice.php" hash="9dd757c9c3d193944a5727fbe5cf4704"/><file name="Validation.php" hash="0be71640c1df60ab809347194ec66457"/><file name="Visibility.php" hash="d60c6b8ec486da4afdc46a00d65ad172"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/><dir name="media"><file name="Attachment.php" hash="c074ef3426c2506350cbf5ff0133c89d"/><file name="Image.php" hash="c9319f2a82811239313e328eaf7e2094"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir></dir><file name="orders.php" hash="5f9de91ac02bae267456be083ff90087"/><file name="redirect.php" hash="568c682f66c4434188c604158029db57"/></dir><dir name="config"><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name="index.php" hash="de19abc78063ea9a4112964c79946f1c"/><file name="shopgate.php" hash="f0482cc4027105bb5d423ddde01e7ac7"/><file name="shopgate_license.txt" hash="21fbb2f00b832416916b27c5e3f5d6d1"/><dir name="temp"><dir name="cache"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/><dir name="logs"><file name="index.php" hash="7573387748996e2dd9e02a237056f158"/></dir></dir><dir name="vendors"><file name="2d_is.php" hash="087decaca87ee85d548d8caaa43f1212"/><file name="BSD_license.txt" hash="2df4dd93533ca2c19f6f2d601bc3e0d5"/><file name="JSON.php" hash="c8398aeb5c3c71aeb1813389d9a030af"/><file name="index.php" hash="bfc5021f1ee9b67f78a0fc9fdab6c558"/></dir><file name=".htaccess" hash="34479bc8d9df775c38a980ecaf6f3f4b"/></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="608ba89093ef89e1c182cd6085dbf3b1"/></dir><dir name="template"><dir name="shopgate"><file name="mobile_website.phtml" hash="229cbefd12ea77676f8af9c7159528ea"/><dir name="payment"><file name="mobile_payment.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/><file name="shopgate.phtml" hash="1e18979028fb13e99af7c595c75a5d27"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="shopgate.xml" hash="8bab300fb25a48cd2c8119ae1942ed54"/></dir><dir name="template"><dir name="shopgate"><dir name="oauth"><dir name="config"><file name="connector.phtml" hash="478c309bdde7834bf20a48b65a4699fb"/></dir><dir name="connect"><file name="info.phtml" hash="4f75dc4311616081873a7d416b96c1c2"/><file name="overlay.phtml" hash="2a17d5b6ff8023568437b194f8a9d482"/></dir><file name="connect.phtml" hash="6956aa22eedf549c4565304b4e4a4ab9"/><file name="data.phtml" hash="09b4c5d83863f104db7a018510cdb315"/><file name="disconnect.phtml" hash="2858cebe9004c9fb5764f79faee46f87"/><file name="manage.phtml" hash="1f99255efbce4dbdc1ee781820d455b8"/></dir><dir name="payment"><file name="mobile_payment.phtml" hash="2892e0dd200db6c0ffa5fa83f87d838c"/><file name="shopgate.phtml" hash="5457030290f8aa08c2711a8bd27c3dee"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|