Version Notes
* Added support for product attributes
* Added the possibility to set a GTIN field
Download this release
Release Info
Developer | Christiaan de Ridder |
Extension | Tritac_ChannelEngine |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.4 to 2.1.0
app/code/community/Tritac/ChannelEngine/Model/Observer.php
CHANGED
@@ -513,10 +513,31 @@ class Tritac_ChannelEngine_Model_Observer
|
|
513 |
}
|
514 |
|
515 |
/**
|
516 |
-
* Retrieve product collection
|
517 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
$collection = Mage::getModel('catalog/product')->getCollection()
|
519 |
-
->addAttributeToSelect(
|
520 |
->addFieldToFilter('type_id', 'simple')
|
521 |
->addStoreFilter($_store)
|
522 |
->addAttributeToFilter('status', 1)
|
@@ -542,6 +563,7 @@ class Tritac_ChannelEngine_Model_Observer
|
|
542 |
array(
|
543 |
'io' => $io,
|
544 |
'categories' => $categoryArray,
|
|
|
545 |
'options' => $optionsArray,
|
546 |
'store' => $_store,
|
547 |
'startMemory' => $start_memory,
|
@@ -562,17 +584,24 @@ class Tritac_ChannelEngine_Model_Observer
|
|
562 |
{
|
563 |
$io = $args['io'];
|
564 |
$product = $args['row'];
|
|
|
565 |
$categories = $args['categories'];
|
566 |
$options = $args['options'];
|
567 |
$_store = $args['store'];
|
|
|
568 |
|
569 |
$xml = '';
|
570 |
|
571 |
-
$product['store_id'] = $
|
|
|
|
|
|
|
|
|
572 |
/**
|
573 |
* Add product custom options to feed.
|
574 |
* Each option value will generate new product row
|
575 |
*/
|
|
|
576 |
if(isset($options[$product['entity_id']])) {
|
577 |
$product['group_code'] = $product['entity_id'];
|
578 |
foreach($options[$product['entity_id']] as $option) {
|
@@ -592,7 +621,7 @@ class Tritac_ChannelEngine_Model_Observer
|
|
592 |
}
|
593 |
}else {
|
594 |
$product['id'] = $product['entity_id'];
|
595 |
-
$xml .= $this->_getProductXml($product, $categories);
|
596 |
}
|
597 |
|
598 |
$io->streamWrite($xml);
|
@@ -613,9 +642,13 @@ class Tritac_ChannelEngine_Model_Observer
|
|
613 |
$xml .= "<ListPrice><![CDATA[".$product['msrp']."]]></ListPrice>";
|
614 |
$xml .= "<PurchasePrice><![CDATA[".$product['cost']."]]></PurchasePrice>";
|
615 |
|
616 |
-
//
|
617 |
$xml .= "<Stock><![CDATA[".$product['qty']."]]></Stock>";
|
|
|
618 |
$xml .= "<SKU><![CDATA[".$product['sku']."]]></SKU>";
|
|
|
|
|
|
|
619 |
|
620 |
// VAT and Shipping Time are pre configured in extension settings
|
621 |
if(!empty($this->_config[$product['store_id']]['feed']['vat_rate'])) {
|
@@ -633,7 +666,7 @@ class Tritac_ChannelEngine_Model_Observer
|
|
633 |
$productModel = Mage::getModel('catalog/product');
|
634 |
$productModel->setData('entity_id', $product['entity_id']);
|
635 |
$productModel->setData('url_key', $product['url_key']);
|
636 |
-
$productModel->setData('store_id',
|
637 |
$url = $productModel->getProductUrl();
|
638 |
$xml .= "<Url><![CDATA[".$url."]]></Url>";
|
639 |
|
@@ -666,6 +699,31 @@ class Tritac_ChannelEngine_Model_Observer
|
|
666 |
);
|
667 |
}
|
668 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
$xml .= "</Product>\n";
|
670 |
|
671 |
return $xml;
|
513 |
}
|
514 |
|
515 |
/**
|
516 |
+
* Retrieve product collection with all visible attributes
|
517 |
*/
|
518 |
+
$attributesToSelect = array('name', 'description', 'image', 'url_key', 'price', 'cost', 'visibility', 'msrp');
|
519 |
+
$visibleAttributes = array();
|
520 |
+
$attributes = Mage::getSingleton('eav/config')
|
521 |
+
->getEntityType(Mage_Catalog_Model_Product::ENTITY)->getAttributeCollection();
|
522 |
+
|
523 |
+
foreach($attributes as $attribute) {
|
524 |
+
if( $attribute->getIsVisible() && $attribute->getIsVisibleOnFront() ) {
|
525 |
+
$code = $attribute->getAttributeCode();
|
526 |
+
$visibleAttributes[$code]['label'] = $attribute->getFrontendLabel();
|
527 |
+
|
528 |
+
foreach( $attribute->getSource()->getAllOptions(false) as $option ) {
|
529 |
+
$visibleAttributes[$code]['values'][$option['value']] = $option['label'];
|
530 |
+
}
|
531 |
+
$attributesToSelect[] = $code;
|
532 |
+
}
|
533 |
+
}
|
534 |
+
|
535 |
+
if(!empty($this->_config[$storeId]['feed']['gtin'])) {
|
536 |
+
$attributesToSelect[] = $this->_config[$storeId]['feed']['gtin'];
|
537 |
+
}
|
538 |
+
|
539 |
$collection = Mage::getModel('catalog/product')->getCollection()
|
540 |
+
->addAttributeToSelect($attributesToSelect, 'left')
|
541 |
->addFieldToFilter('type_id', 'simple')
|
542 |
->addStoreFilter($_store)
|
543 |
->addAttributeToFilter('status', 1)
|
563 |
array(
|
564 |
'io' => $io,
|
565 |
'categories' => $categoryArray,
|
566 |
+
'attributes' => $visibleAttributes,
|
567 |
'options' => $optionsArray,
|
568 |
'store' => $_store,
|
569 |
'startMemory' => $start_memory,
|
584 |
{
|
585 |
$io = $args['io'];
|
586 |
$product = $args['row'];
|
587 |
+
$attributes = $args['attributes'];
|
588 |
$categories = $args['categories'];
|
589 |
$options = $args['options'];
|
590 |
$_store = $args['store'];
|
591 |
+
$storeId = $_store->getId();
|
592 |
|
593 |
$xml = '';
|
594 |
|
595 |
+
$product['store_id'] = $storeId;
|
596 |
+
if(!empty($this->_config[$storeId]['feed']['gtin'])) {
|
597 |
+
$product['gtin'] = $product[$this->_config[$storeId]['feed']['gtin']];
|
598 |
+
}
|
599 |
+
|
600 |
/**
|
601 |
* Add product custom options to feed.
|
602 |
* Each option value will generate new product row
|
603 |
*/
|
604 |
+
$additional['attributes'] = $attributes;
|
605 |
if(isset($options[$product['entity_id']])) {
|
606 |
$product['group_code'] = $product['entity_id'];
|
607 |
foreach($options[$product['entity_id']] as $option) {
|
621 |
}
|
622 |
}else {
|
623 |
$product['id'] = $product['entity_id'];
|
624 |
+
$xml .= $this->_getProductXml($product, $categories, $additional);
|
625 |
}
|
626 |
|
627 |
$io->streamWrite($xml);
|
642 |
$xml .= "<ListPrice><![CDATA[".$product['msrp']."]]></ListPrice>";
|
643 |
$xml .= "<PurchasePrice><![CDATA[".$product['cost']."]]></PurchasePrice>";
|
644 |
|
645 |
+
// Add product stock qty
|
646 |
$xml .= "<Stock><![CDATA[".$product['qty']."]]></Stock>";
|
647 |
+
// Add product SKU and GTIN
|
648 |
$xml .= "<SKU><![CDATA[".$product['sku']."]]></SKU>";
|
649 |
+
if(!empty($product['gtin'])) {
|
650 |
+
$xml .= "<GTIN><![CDATA[".$product['gtin']."]]></GTIN>";
|
651 |
+
}
|
652 |
|
653 |
// VAT and Shipping Time are pre configured in extension settings
|
654 |
if(!empty($this->_config[$product['store_id']]['feed']['vat_rate'])) {
|
666 |
$productModel = Mage::getModel('catalog/product');
|
667 |
$productModel->setData('entity_id', $product['entity_id']);
|
668 |
$productModel->setData('url_key', $product['url_key']);
|
669 |
+
$productModel->setData('store_id', $product['store_id']);
|
670 |
$url = $productModel->getProductUrl();
|
671 |
$xml .= "<Url><![CDATA[".$url."]]></Url>";
|
672 |
|
699 |
);
|
700 |
}
|
701 |
|
702 |
+
/*
|
703 |
+
* Prepare product visible attributes
|
704 |
+
*/
|
705 |
+
if(isset($additional['attributes'])) {
|
706 |
+
$xml .= '<Attributes>';
|
707 |
+
foreach($additional['attributes'] as $code => $attribute) {
|
708 |
+
if(isset($product[$code])) {
|
709 |
+
$xml .= "<".$code.">";
|
710 |
+
/*$xml .= "<label><![CDATA[".$attribute['label']."]]></label>";
|
711 |
+
if(!empty($attribute['values'])) {
|
712 |
+
$xml .= "<value><![CDATA[".$attribute['values'][$product[$code]]."]]></value>";
|
713 |
+
} else {
|
714 |
+
$xml .= "<value><![CDATA[".$product[$code]."]]></value>";
|
715 |
+
}*/
|
716 |
+
if(!empty($attribute['values'])) {
|
717 |
+
$xml .= "<![CDATA[".$attribute['values'][$product[$code]]."]]>";
|
718 |
+
} else {
|
719 |
+
$xml .= "<![CDATA[".$product[$code]."]]>";
|
720 |
+
}
|
721 |
+
$xml .= "</".$code.">";
|
722 |
+
}
|
723 |
+
}
|
724 |
+
$xml .= '</Attributes>';
|
725 |
+
}
|
726 |
+
|
727 |
$xml .= "</Product>\n";
|
728 |
|
729 |
return $xml;
|
app/code/community/Tritac/ChannelEngine/Model/System/Config/Source/Gtin.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Tritac
|
4 |
+
* @package Tritac_ChannelEngine
|
5 |
+
* @copyright Copyright (c) 2014 ChannelEngine. (http://www.channelengine.com)
|
6 |
+
*/
|
7 |
+
|
8 |
+
class Tritac_ChannelEngine_Model_System_Config_Source_Gtin
|
9 |
+
{
|
10 |
+
protected $_options;
|
11 |
+
|
12 |
+
public function toOptionArray()
|
13 |
+
{
|
14 |
+
if (!$this->_options) {
|
15 |
+
$this->_options[] = array('value'=> '', 'label'=> Mage::helper('adminhtml')->__('-- Please Select --'));
|
16 |
+
$attributes = Mage::getSingleton('eav/config')
|
17 |
+
->getEntityType(Mage_Catalog_Model_Product::ENTITY)
|
18 |
+
->getAttributeCollection()
|
19 |
+
->addFieldToFilter('backend_type', array('in' => array('static', 'varchar', 'text')))
|
20 |
+
->addFieldToFilter('frontend_input', array('in' => array('text', 'textarea')))
|
21 |
+
->setOrder('frontend_label', 'ASC');
|
22 |
+
|
23 |
+
foreach($attributes as $attribute) {
|
24 |
+
$value = $attribute->getAttributeCode();
|
25 |
+
$label = ($attribute->getFrontendLabel()) ? $attribute->getFrontendLabel() : $value;
|
26 |
+
$this->_options[] = array('value'=> $value, 'label'=> $label);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
return $this->_options;
|
30 |
+
}
|
31 |
+
}
|
app/code/community/Tritac/ChannelEngine/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Tritac_ChannelEngine>
|
5 |
-
<version>2.0
|
6 |
</Tritac_ChannelEngine>
|
7 |
</modules>
|
8 |
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Tritac_ChannelEngine>
|
5 |
+
<version>2.1.0</version>
|
6 |
</Tritac_ChannelEngine>
|
7 |
</modules>
|
8 |
|
app/code/community/Tritac/ChannelEngine/etc/system.xml
CHANGED
@@ -106,13 +106,25 @@
|
|
106 |
<label>Shipping Time (Out Of Stock products)</label>
|
107 |
<frontend_type>text</frontend_type>
|
108 |
<comment>
|
109 |
-
<![CDATA[<span class="notice">For example: "
|
110 |
</comment>
|
111 |
<sort_order>3</sort_order>
|
112 |
<show_in_default>1</show_in_default>
|
113 |
<show_in_website>1</show_in_website>
|
114 |
<show_in_store>1</show_in_store>
|
115 |
</shipping_time_oos>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
<generate_product_feed translate="button_label">
|
117 |
<label>Generate product feed</label>
|
118 |
<button_label>Generate Product Feed</button_label>
|
@@ -120,7 +132,7 @@
|
|
120 |
<![CDATA[<span class="notice">You need to configure cronjobs on your server to generate feeds automatically</span>]]>
|
121 |
</comment>
|
122 |
<frontend_model>channelengine/adminhtml_system_config_feed</frontend_model>
|
123 |
-
<sort_order>
|
124 |
<show_in_default>1</show_in_default>
|
125 |
<show_in_website>1</show_in_website>
|
126 |
<show_in_store>1</show_in_store>
|
106 |
<label>Shipping Time (Out Of Stock products)</label>
|
107 |
<frontend_type>text</frontend_type>
|
108 |
<comment>
|
109 |
+
<![CDATA[<span class="notice">For example: "Delivered within 5 working days"</span>]]>
|
110 |
</comment>
|
111 |
<sort_order>3</sort_order>
|
112 |
<show_in_default>1</show_in_default>
|
113 |
<show_in_website>1</show_in_website>
|
114 |
<show_in_store>1</show_in_store>
|
115 |
</shipping_time_oos>
|
116 |
+
<gtin translate="label">
|
117 |
+
<label>Product GTIN</label>
|
118 |
+
<frontend_type>select</frontend_type>
|
119 |
+
<source_model>channelengine/system_config_source_gtin</source_model>
|
120 |
+
<comment>
|
121 |
+
<![CDATA[<span class="notice">The attribute that contains the product GTIN (i.e. EAN, ISBN, UPC)</span>]]>
|
122 |
+
</comment>
|
123 |
+
<sort_order>4</sort_order>
|
124 |
+
<show_in_default>1</show_in_default>
|
125 |
+
<show_in_website>1</show_in_website>
|
126 |
+
<show_in_store>1</show_in_store>
|
127 |
+
</gtin>
|
128 |
<generate_product_feed translate="button_label">
|
129 |
<label>Generate product feed</label>
|
130 |
<button_label>Generate Product Feed</button_label>
|
132 |
<![CDATA[<span class="notice">You need to configure cronjobs on your server to generate feeds automatically</span>]]>
|
133 |
</comment>
|
134 |
<frontend_model>channelengine/adminhtml_system_config_feed</frontend_model>
|
135 |
+
<sort_order>5</sort_order>
|
136 |
<show_in_default>1</show_in_default>
|
137 |
<show_in_website>1</show_in_website>
|
138 |
<show_in_store>1</show_in_store>
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Tritac_ChannelEngine</name>
|
4 |
-
<version>2.0
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Connect your Magento shop to the ChannelEngine platform.</summary>
|
10 |
<description>Easily offer your products on comparison websites and marketplaces using the ChannelEngine platform.</description>
|
11 |
-
<notes>*
|
|
|
12 |
<authors><author><name>ChannelEngine</name><user>christiaander</user><email>christiaan@tritac.com</email></author></authors>
|
13 |
-
<date>2014-04-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Tritac_ChannelEngine.xml" hash="014b02d581d1039764cdc422e8f86643"/></dir></target><target name="magecommunity"><dir name="Tritac"><dir name="ChannelEngine"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Feed.php" hash="cbc5bf15ab9cd9bb5b2bc97375db3eb2"/></dir></dir></dir><file name="Head.php" hash="98a65067f1ae6074f2c276624164c183"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="097e10d1e9e6dd8c5aee66124376cae4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="bf1203d5f080b340404f02c51967f328"/></dir><dir name="Model"><dir name="Carrier"><file name="Channelengine.php" hash="d93ca824330b2e0eff034009c7e333c2"/></dir><file name="Observer.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Tritac_ChannelEngine</name>
|
4 |
+
<version>2.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Connect your Magento shop to the ChannelEngine platform.</summary>
|
10 |
<description>Easily offer your products on comparison websites and marketplaces using the ChannelEngine platform.</description>
|
11 |
+
<notes>* Added support for product attributes
|
12 |
+
* Added the possibility to set a GTIN field</notes>
|
13 |
<authors><author><name>ChannelEngine</name><user>christiaander</user><email>christiaan@tritac.com</email></author></authors>
|
14 |
+
<date>2014-04-23</date>
|
15 |
+
<time>09:31:38</time>
|
16 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Tritac_ChannelEngine.xml" hash="014b02d581d1039764cdc422e8f86643"/></dir></target><target name="magecommunity"><dir name="Tritac"><dir name="ChannelEngine"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Feed.php" hash="cbc5bf15ab9cd9bb5b2bc97375db3eb2"/></dir></dir></dir><file name="Head.php" hash="98a65067f1ae6074f2c276624164c183"/><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="097e10d1e9e6dd8c5aee66124376cae4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="bf1203d5f080b340404f02c51967f328"/></dir><dir name="Model"><dir name="Carrier"><file name="Channelengine.php" hash="d93ca824330b2e0eff034009c7e333c2"/></dir><file name="Observer.php" hash="68d112795ecfe8d235b43ade8bc35a09"/><file name="Order.php" hash="66c8e7c0ac47f9dbabb156eaa8c97f1e"/><dir name="Payment"><dir name="Method"><file name="Channelengine.php" hash="49ef02953b486cfbf813d37e681172a3"/></dir></dir><dir name="Resource"><dir name="Order"><file name="Collection.php" hash="989bbd95481d2954d7813e19d8c27d18"/></dir><file name="Order.php" hash="3813fe3ad637daf069d79bca1feea540"/><file name="Setup.php" hash="24934fe022e3bb93331fcbfb7a116d37"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Gtin.php" hash="d182d37bc836ef718858c985c27b3c3c"/><file name="Shipping.php" hash="103486f575dcd6205fc9cfd40f2fa5ea"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="GenerateController.php" hash="edde582db1fbb091e14396b247cd0d45"/></dir><file name="TestController.php" hash="1f579ff8fd8ffeb9a8ce25dde0d0fc11"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5a976b638c6ad66287ba3084fdbfc157"/><file name="config.xml" hash="50b8d731e8c7e369177790cededb3e64"/><file name="system.xml" hash="de0e1158e239833891707739313ac8c6"/></dir><dir name="sql"><dir name="channelengine_setup"><file name="mysql4-install-0.1.0.0.php" hash="312e7c69f98c8d13d251b8ed1ca93448"/><file name="mysql4-install-1.0.0.php" hash="3664f3c5b6e01db69cbea8b4b0beb9ab"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Tritac"><dir name="ChannelEngineApiClient"><file name="AddTrustExternalCARoot.crt" hash="f85d1ff17b0079709f131f3ce3f288d2"/><file name="Client.php" hash="cbfd5ff092ffb201426146d02e6316b4"/><dir name="Enums"><file name="CancellationLineStatus.php" hash="0fe455ad75e49b2796d4bcd1230a3c0d"/><file name="CancellationStatus.php" hash="e4a26c1a29afe02d92320187277f5d03"/><file name="Gender.php" hash="49645506c67b6ad530e1463da256d403"/><file name="MancoReason.php" hash="80388c0545fa091fd9e651fc1284b77d"/><file name="OrderStatus.php" hash="855341235149ff3c9d3a36a5a23f8db0"/><file name="ReturnAcceptStatus.php" hash="de4252a8f9d7b94493b470cccd9feaec"/><file name="ReturnReason.php" hash="05d5fd5b23af84508b8bec92137c421d"/><file name="ReturnStatus.php" hash="ba9350e9ba015ec9cac4b1ab7702333c"/><file name="ShipmentLineStatus.php" hash="8329dce7182fc7705bb8008da6a7e26f"/><file name="ShipmentStatus.php" hash="d73e4a5b58487c7b0c80b114601d3279"/></dir><dir name="Helpers"><file name="Collection.php" hash="2278a5e6d8d65ebca92ba1e968680315"/><file name="HttpMethod.php" hash="4949b2cfe4a309a54b1642fa09bda53b"/><file name="JsonMapper.php" hash="f8e30cab83a2f2ccfdb2a64636c2346b"/></dir><dir name="Models"><file name="Address.php" hash="543aff76425e3335cbba2a1cdd25564d"/><file name="BaseModel.php" hash="65f09d298baa6496807a2f71ea93a8f8"/><file name="Cancellation.php" hash="2fc15d3d2a8f7e21d6f6000bffb77722"/><file name="CancellationLine.php" hash="e8820be847e77d5f77a2de8cb551a8a0"/><file name="Message.php" hash="e0cea12494684d58abea051958082036"/><file name="Order.php" hash="e2a36b36a58607cc460c712979213e54"/><file name="OrderExtraDataItem.php" hash="eaf59ef83070360c4c7bb2c3f5c5633a"/><file name="OrderLine.php" hash="63451a19448eddb6eecf8eca959f9fcb"/><file name="ReturnLine.php" hash="c1cbf7c45a85280782955be400c478e6"/><file name="ReturnObject.php" hash="32d035ba6b448958bb43eac6bf286d6e"/><file name="Shipment.php" hash="8f027c770d98cdb5bc74005ec9310e1c"/><file name="ShipmentLine.php" hash="5c738023584cd6513940be54b8f8dc60"/></dir><file name="loader.php" hash="3daea8be627858c27383a79a29663c82"/></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|