Version Notes
Channable Connect
Download this release
Release Info
Developer | Magmodules |
Extension | Magmodules_Channable |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.9 to 1.4.3
- app/code/community/Magmodules/Channable/Block/Adminhtml/Widget/Info/Info.php +7 -0
- app/code/community/Magmodules/Channable/Helper/Data.php +23 -17
- app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Backend/Design/Filter.php +1 -1
- app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute.php +10 -8
- app/code/community/Magmodules/Channable/Model/Channable.php +40 -2
- app/code/community/Magmodules/Channable/Model/Common.php +41 -3
- app/code/community/Magmodules/Channable/etc/config.xml +1 -1
- app/locale/nl_NL/Magmodules_Channable.csv +2 -1
- package.xml +4 -4
app/code/community/Magmodules/Channable/Block/Adminhtml/Widget/Info/Info.php
CHANGED
@@ -53,6 +53,13 @@ class Magmodules_Channable_Block_Adminhtml_Widget_Info_Info extends Mage_Adminht
|
|
53 |
$html = $msg . $html;
|
54 |
}
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
if(empty($oldversion)) {
|
57 |
if(Mage::getStoreConfig('catalog/frontend/flat_catalog_product')) {
|
58 |
$store_id = Mage::helper('channable')->getStoreIdConfig();
|
53 |
$html = $msg . $html;
|
54 |
}
|
55 |
|
56 |
+
$flat_product = Mage::getStoreConfig('catalog/frontend/flat_catalog_product');
|
57 |
+
$flat_category = Mage::getStoreConfig('catalog/frontend/flat_catalog_category');
|
58 |
+
if((!$flat_product) || (!$flat_category)) {
|
59 |
+
$msg = '<div id="messages"><ul class="messages"><li class="error-msg"><ul><li><span>' . Mage::helper('channable')->__('Please enable "Flat Catalog Category" and "Flat Catalog Product" for the extension to work properly. <a href="https://www.magmodules.eu/help/enable-flat-catalog/" target="_blank">More information.</a>') . '</span></li></ul></li></ul></div>';
|
60 |
+
$html = $html . $msg;
|
61 |
+
}
|
62 |
+
|
63 |
if(empty($oldversion)) {
|
64 |
if(Mage::getStoreConfig('catalog/frontend/flat_catalog_product')) {
|
65 |
$store_id = Mage::helper('channable')->getStoreIdConfig();
|
app/code/community/Magmodules/Channable/Helper/Data.php
CHANGED
@@ -185,23 +185,20 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
185 |
public function getProductUrl($product, $config, $parent)
|
186 |
{
|
187 |
if(!empty($parent)) {
|
188 |
-
if($parent->
|
189 |
-
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $parent->
|
190 |
-
} else {
|
191 |
-
$url = Mage::getModel('catalog/product')->setStoreId($config['store_id'])->load($parent->getId())->getProductUrl();
|
192 |
-
$url = preg_replace('/\?.*/', '', $url);
|
193 |
}
|
|
|
|
|
|
|
194 |
} else {
|
195 |
-
if($product->
|
196 |
-
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $product->
|
197 |
-
}
|
198 |
-
|
199 |
-
$url =
|
200 |
-
}
|
201 |
}
|
202 |
-
if(!empty($config['url_suffix'])) {
|
203 |
-
$url = $url . '?' . $config['url_suffix'];
|
204 |
-
}
|
205 |
if(!empty($parent) && !empty($config['conf_switch_urls'])) {
|
206 |
if($parent->getTypeId() == 'configurable') {
|
207 |
$productAttributeOptions = $parent->getTypeInstance(true)->getConfigurableAttributesAsArray($parent);
|
@@ -295,7 +292,9 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
295 |
return false;
|
296 |
}
|
297 |
}
|
298 |
-
|
|
|
|
|
299 |
}
|
300 |
|
301 |
public function getProductBundle($product, $config)
|
@@ -360,10 +359,17 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
360 |
}
|
361 |
}
|
362 |
}
|
363 |
-
return $products_cat;
|
364 |
}
|
365 |
}
|
366 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
public function getProductData($product, $data, $config = '')
|
368 |
{
|
369 |
$type = $data['type'];
|
185 |
public function getProductUrl($product, $config, $parent)
|
186 |
{
|
187 |
if(!empty($parent)) {
|
188 |
+
if($parent->getUrlKey()) {
|
189 |
+
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $parent->getUrlKey()));
|
|
|
|
|
|
|
190 |
}
|
191 |
+
if($product->getRequestPath()) {
|
192 |
+
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $parent->getRequestPath()));
|
193 |
+
}
|
194 |
} else {
|
195 |
+
if($product->getUrlKey()) {
|
196 |
+
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $product->getUrlKey()));
|
197 |
+
}
|
198 |
+
if($product->getRequestPath()) {
|
199 |
+
$url = Mage::helper('core')->escapeHtml(trim($config['website_url'] . $product->getRequestPath()));
|
200 |
+
}
|
201 |
}
|
|
|
|
|
|
|
202 |
if(!empty($parent) && !empty($config['conf_switch_urls'])) {
|
203 |
if($parent->getTypeId() == 'configurable') {
|
204 |
$productAttributeOptions = $parent->getTypeInstance(true)->getConfigurableAttributesAsArray($parent);
|
292 |
return false;
|
293 |
}
|
294 |
}
|
295 |
+
if(!empty($config['condition_default'])) {
|
296 |
+
return $config['condition_default'];
|
297 |
+
}
|
298 |
}
|
299 |
|
300 |
public function getProductBundle($product, $config)
|
359 |
}
|
360 |
}
|
361 |
}
|
362 |
+
return $this->getSortedArray($products_cat, 'level');
|
363 |
}
|
364 |
}
|
365 |
+
|
366 |
+
function getSortedArray($data, $sort)
|
367 |
+
{
|
368 |
+
$code = "return strnatcmp(\$a['$sort'], \$b['$sort']);";
|
369 |
+
usort($data, create_function('$a,$b', $code));
|
370 |
+
return array_reverse($data);
|
371 |
+
}
|
372 |
+
|
373 |
public function getProductData($product, $data, $config = '')
|
374 |
{
|
375 |
$type = $data['type'];
|
app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Backend/Design/Filter.php
CHANGED
@@ -25,7 +25,7 @@ class Magmodules_Channable_Model_Adminhtml_System_Config_Backend_Design_Filter e
|
|
25 |
if(count($value)) {
|
26 |
$value = $this->orderData($value, 'attribute');
|
27 |
foreach($value as $key => $field){
|
28 |
-
if(!empty($field['attribute']) && !empty($field['condition'])
|
29 |
$attribute = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', $field['attribute']);
|
30 |
$value[$key]['attribute'] = $field['attribute'];
|
31 |
$value[$key]['condition'] = $field['condition'];
|
25 |
if(count($value)) {
|
26 |
$value = $this->orderData($value, 'attribute');
|
27 |
foreach($value as $key => $field){
|
28 |
+
if(!empty($field['attribute']) && !empty($field['condition'])) {
|
29 |
$attribute = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', $field['attribute']);
|
30 |
$value[$key]['attribute'] = $field['attribute'];
|
31 |
$value[$key]['condition'] = $field['condition'];
|
app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute.php
CHANGED
@@ -27,15 +27,17 @@ class Magmodules_Channable_Model_Adminhtml_System_Config_Source_Attribute {
|
|
27 |
$backend_types = array('text', 'select', 'textarea', 'date', 'int', 'boolean', 'static', 'varchar', 'decimal');
|
28 |
$attributes = Mage::getResourceModel('catalog/product_attribute_collection')->setOrder('frontend_label','ASC')->addFieldToFilter('backend_type', $backend_types);
|
29 |
foreach($attributes as $attribute) {
|
30 |
-
if($attribute->getData('
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
-
$optionArray[] = array(
|
36 |
-
'value' => $attribute->getData('attribute_code'),
|
37 |
-
'label' => $label,
|
38 |
-
);
|
39 |
}
|
40 |
return $optionArray;
|
41 |
}
|
27 |
$backend_types = array('text', 'select', 'textarea', 'date', 'int', 'boolean', 'static', 'varchar', 'decimal');
|
28 |
$attributes = Mage::getResourceModel('catalog/product_attribute_collection')->setOrder('frontend_label','ASC')->addFieldToFilter('backend_type', $backend_types);
|
29 |
foreach($attributes as $attribute) {
|
30 |
+
if($attribute->getData('attribute_code') != 'price') {
|
31 |
+
if($attribute->getData('frontend_label')) {
|
32 |
+
$label = str_replace("'", "", $attribute->getData('frontend_label'));
|
33 |
+
} else {
|
34 |
+
$label = str_replace("'", "", $attribute->getData('attribute_code'));
|
35 |
+
}
|
36 |
+
$optionArray[] = array(
|
37 |
+
'value' => $attribute->getData('attribute_code'),
|
38 |
+
'label' => $label,
|
39 |
+
);
|
40 |
}
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
return $optionArray;
|
43 |
}
|
app/code/community/Magmodules/Channable/Model/Channable.php
CHANGED
@@ -92,6 +92,8 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
|
|
92 |
$config['conf_fields'] = Mage::getStoreConfig('channable/data/conf_fields', $storeId);
|
93 |
$config['conf_switch_urls'] = Mage::getStoreConfig('channable/data/conf_switch_urls', $storeId);
|
94 |
$config['stock_manage'] = Mage::getStoreConfig('cataloginventory/item_options/manage_stock');
|
|
|
|
|
95 |
$config['delivery'] = Mage::getStoreConfig('channable/data/delivery', $storeId);
|
96 |
$config['delivery_att'] = Mage::getStoreConfig('channable/data/delivery_att', $storeId);
|
97 |
$config['delivery_in'] = Mage::getStoreConfig('channable/data/delivery_in', $storeId);
|
@@ -275,6 +277,41 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
|
|
275 |
return $category;
|
276 |
}
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
public function getImages($product_data, $config)
|
279 |
{
|
280 |
$_images = array();
|
@@ -287,13 +324,11 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
|
|
287 |
$_images['image_link'] = $product_data['image']['base'];
|
288 |
}
|
289 |
}
|
290 |
-
|
291 |
if(empty($_images['image_link'])) {
|
292 |
if(!empty($product_data['image_link'])) {
|
293 |
$_images['image_link'] = $product_data['image_link'];
|
294 |
}
|
295 |
}
|
296 |
-
|
297 |
if(!empty($product_data['image']['all'])) {
|
298 |
$_additional = array();
|
299 |
foreach($product_data['image']['all'] as $image) {
|
@@ -325,6 +360,9 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
|
|
325 |
if($_category_data = $this->getCategoryData($product_data, $config)) {
|
326 |
$_extra = array_merge($_extra, $_category_data);
|
327 |
}
|
|
|
|
|
|
|
328 |
if($config['images'] == 'all') {
|
329 |
if($_images = $this->getImages($product_data, $config)) {
|
330 |
$_extra = array_merge($_extra, $_images);
|
92 |
$config['conf_fields'] = Mage::getStoreConfig('channable/data/conf_fields', $storeId);
|
93 |
$config['conf_switch_urls'] = Mage::getStoreConfig('channable/data/conf_switch_urls', $storeId);
|
94 |
$config['stock_manage'] = Mage::getStoreConfig('cataloginventory/item_options/manage_stock');
|
95 |
+
$config['use_qty_increments'] = Mage::getStoreConfig('cataloginventory/item_options/enable_qty_increments');
|
96 |
+
$config['qty_increments'] = Mage::getStoreConfig('cataloginventory/item_options/qty_increments');
|
97 |
$config['delivery'] = Mage::getStoreConfig('channable/data/delivery', $storeId);
|
98 |
$config['delivery_att'] = Mage::getStoreConfig('channable/data/delivery_att', $storeId);
|
99 |
$config['delivery_in'] = Mage::getStoreConfig('channable/data/delivery_in', $storeId);
|
277 |
return $category;
|
278 |
}
|
279 |
|
280 |
+
protected function getStockData($product_data, $config, $product)
|
281 |
+
{
|
282 |
+
$stock_data = array();
|
283 |
+
if(!empty($product_data['qty'])) {
|
284 |
+
$stock_data['qty'] = $product_data['qty'];
|
285 |
+
} else {
|
286 |
+
$stock_data['qty'] = (string)'0';
|
287 |
+
}
|
288 |
+
if($product->getUseConfigManageStock()) {
|
289 |
+
$stock_data['manage_stock'] = (string)$config['stock_manage'];
|
290 |
+
} else {
|
291 |
+
$stock_data['manage_stock'] = (string)$product->getManageStock();
|
292 |
+
}
|
293 |
+
if(!empty($product['min_sale_qty'])) {
|
294 |
+
$stock_data['min_sale_qty'] = (string)round($product['min_sale_qty']);
|
295 |
+
} else {
|
296 |
+
$stock_data['min_sale_qty'] = '1';
|
297 |
+
}
|
298 |
+
if($product->getUseEnableQtyIncrements()) {
|
299 |
+
if(!empty($config['use_qty_increments'])) {
|
300 |
+
$stock_data['qty_increments'] = (string)$config['qty_increments'];
|
301 |
+
}
|
302 |
+
} else {
|
303 |
+
if($product->getUseConfigQtyIncrements()) {
|
304 |
+
$stock_data['qty_increments'] = (string)$config['qty_increments'];
|
305 |
+
} else {
|
306 |
+
$stock_data['qty_increments'] = round($product['qty_increments']);
|
307 |
+
}
|
308 |
+
}
|
309 |
+
if(empty($stock_data['qty_increments'])) {
|
310 |
+
$stock_data['qty_increments'] = '1';
|
311 |
+
}
|
312 |
+
return $stock_data;
|
313 |
+
}
|
314 |
+
|
315 |
public function getImages($product_data, $config)
|
316 |
{
|
317 |
$_images = array();
|
324 |
$_images['image_link'] = $product_data['image']['base'];
|
325 |
}
|
326 |
}
|
|
|
327 |
if(empty($_images['image_link'])) {
|
328 |
if(!empty($product_data['image_link'])) {
|
329 |
$_images['image_link'] = $product_data['image_link'];
|
330 |
}
|
331 |
}
|
|
|
332 |
if(!empty($product_data['image']['all'])) {
|
333 |
$_additional = array();
|
334 |
foreach($product_data['image']['all'] as $image) {
|
360 |
if($_category_data = $this->getCategoryData($product_data, $config)) {
|
361 |
$_extra = array_merge($_extra, $_category_data);
|
362 |
}
|
363 |
+
if($_stock_data = $this->getStockData($product_data, $config, $product)) {
|
364 |
+
$_extra = array_merge($_extra, $_stock_data);
|
365 |
+
}
|
366 |
if($config['images'] == 'all') {
|
367 |
if($_images = $this->getImages($product_data, $config)) {
|
368 |
$_extra = array_merge($_extra, $_images);
|
app/code/community/Magmodules/Channable/Model/Common.php
CHANGED
@@ -24,6 +24,7 @@ class Magmodules_Channable_Model_Common extends Mage_Core_Helper_Abstract {
|
|
24 |
$collection->setStore($store_id);
|
25 |
$collection->addStoreFilter($store_id);
|
26 |
$collection->addFinalPrice();
|
|
|
27 |
|
28 |
if(!empty($config['filter_enabled'])) {
|
29 |
$type = $config['filter_type'];
|
@@ -54,8 +55,7 @@ class Magmodules_Channable_Model_Common extends Mage_Core_Helper_Abstract {
|
|
54 |
|
55 |
// All attributes
|
56 |
$attributes = array();
|
57 |
-
|
58 |
-
$attributes[] = 'url_key';
|
59 |
$attributes[] = 'sku';
|
60 |
$attributes[] = 'price';
|
61 |
$attributes[] = 'final_price';
|
@@ -150,10 +150,48 @@ class Magmodules_Channable_Model_Common extends Mage_Core_Helper_Abstract {
|
|
150 |
}
|
151 |
}
|
152 |
}
|
153 |
-
$collection->joinTable('cataloginventory/stock_item', 'product_id=entity_id', array("qty" => "qty", "stock_status" => "is_in_stock", "manage_stock" => "manage_stock", "use_config_manage_stock" => "use_config_manage_stock"))->addAttributeToSelect(array('qty', 'stock_status', 'manage_stock', 'use_config_manage_stock'));
|
154 |
$collection->getSelect()->group('e.entity_id');
|
|
|
|
|
|
|
155 |
$products = $collection->load();
|
156 |
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
$products = $collection->getSize();
|
158 |
}
|
159 |
return $products;
|
24 |
$collection->setStore($store_id);
|
25 |
$collection->addStoreFilter($store_id);
|
26 |
$collection->addFinalPrice();
|
27 |
+
$collection->addUrlRewrite();
|
28 |
|
29 |
if(!empty($config['filter_enabled'])) {
|
30 |
$type = $config['filter_type'];
|
55 |
|
56 |
// All attributes
|
57 |
$attributes = array();
|
58 |
+
$attributes[] = 'url_key';
|
|
|
59 |
$attributes[] = 'sku';
|
60 |
$attributes[] = 'price';
|
61 |
$attributes[] = 'final_price';
|
150 |
}
|
151 |
}
|
152 |
}
|
153 |
+
$collection->joinTable('cataloginventory/stock_item', 'product_id=entity_id', array("qty" => "qty", "stock_status" => "is_in_stock", "manage_stock" => "manage_stock", "use_config_manage_stock" => "use_config_manage_stock", "min_sale_qty" => "min_sale_qty", "qty_increments" => "qty_increments", "enable_qty_increments" => "enable_qty_increments" ,"use_config_qty_increments" => "use_config_qty_increments"))->addAttributeToSelect(array('qty', 'stock_status', 'manage_stock', 'use_config_manage_stock', 'min_sale_qty', 'qty_increments', 'enable_qty_increments', 'use_config_qty_increments'));
|
154 |
$collection->getSelect()->group('e.entity_id');
|
155 |
+
if(!empty($config['hide_no_stock'])) {
|
156 |
+
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($collection);
|
157 |
+
}
|
158 |
$products = $collection->load();
|
159 |
} else {
|
160 |
+
if(!empty($config['filters'])) {
|
161 |
+
foreach($config['filters'] as $filter) {
|
162 |
+
$attribute = $filter['attribute'];
|
163 |
+
if($filter['type'] == 'select') {
|
164 |
+
$attribute = $filter['attribute'] . '_value';
|
165 |
+
}
|
166 |
+
$condition = $filter['condition'];
|
167 |
+
$value = $filter['value'];
|
168 |
+
switch ($condition) {
|
169 |
+
case 'nin':
|
170 |
+
if(strpos($value, ',') !== FALSE) { $value = explode(',', $value); }
|
171 |
+
$collection->addAttributeToFilter(array(array('attribute' => $attribute, $condition => $value), array('attribute' => $attribute, 'null' => true)));
|
172 |
+
break;
|
173 |
+
case 'in';
|
174 |
+
if(strpos($value, ',') !== FALSE) { $value = explode(',', $value); }
|
175 |
+
$collection->addAttributeToFilter($attribute, array($condition => $value));
|
176 |
+
break;
|
177 |
+
case 'neq':
|
178 |
+
$collection->addAttributeToFilter(array(array('attribute' => $attribute, $condition => $value), array('attribute' => $attribute, 'null' => true)));
|
179 |
+
break;
|
180 |
+
case 'empty':
|
181 |
+
$collection->addAttributeToFilter($attribute, array('null' => true));
|
182 |
+
break;
|
183 |
+
case 'not-empty':
|
184 |
+
$collection->addAttributeToFilter($attribute, array('notnull' => true));
|
185 |
+
break;
|
186 |
+
default:
|
187 |
+
$collection->addAttributeToFilter($attribute, array($condition => $value));
|
188 |
+
break;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
}
|
192 |
+
if(!empty($config['hide_no_stock'])) {
|
193 |
+
Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($collection);
|
194 |
+
}
|
195 |
$products = $collection->getSize();
|
196 |
}
|
197 |
return $products;
|
app/code/community/Magmodules/Channable/etc/config.xml
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
<config>
|
20 |
<modules>
|
21 |
<Magmodules_Channable>
|
22 |
-
<version>1.3
|
23 |
</Magmodules_Channable>
|
24 |
</modules>
|
25 |
<global>
|
19 |
<config>
|
20 |
<modules>
|
21 |
<Magmodules_Channable>
|
22 |
+
<version>1.4.3</version>
|
23 |
</Magmodules_Channable>
|
24 |
</modules>
|
25 |
<global>
|
app/locale/nl_NL/Magmodules_Channable.csv
CHANGED
@@ -94,4 +94,5 @@
|
|
94 |
"Title","Titel"
|
95 |
"Type","Type"
|
96 |
"The Max Execution Time","Maximale uitvoertijd"
|
97 |
-
"This option allows you to include/exclude product from the Channable feed. <br>","Deze optie staat het toe om producten uit of in te sluiten van de Channable Feed.<br>"
|
|
94 |
"Title","Titel"
|
95 |
"Type","Type"
|
96 |
"The Max Execution Time","Maximale uitvoertijd"
|
97 |
+
"This option allows you to include/exclude product from the Channable feed. <br>","Deze optie staat het toe om producten uit of in te sluiten van de Channable Feed.<br>"
|
98 |
+
"Please enable "Flat Catalog Category" and "Flat Catalog Product" for the extension to work properly. <a href=""https://www.magmodules.eu/help/enable-flat-catalog/"" target=""_blank"">More information.</a>","Activeer de "Platte catalogus voor producten" en de "Platte catalogus voor categorieën" om de extensie juist te laten functioneren. <a href=""https://www.magmodules.eu/help/enable-flat-catalog/"" target=""_blank""> Meer informatie.</a>"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Channable</name>
|
4 |
-
<version>1.3
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.magmodules.eu/license-agreement/">Single Server License</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Magmodules_Channable</description>
|
11 |
<notes>Channable Connect</notes>
|
12 |
<authors><author><name>Magmodules</name><user>magmodules</user><email>info@magmodules.nl</email></author></authors>
|
13 |
-
<date>2016-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Magmodules"><dir name="Channable"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Extra.php" hash="73e9ccaafacba4153962b37a8038c1ad"/><file name="Filter.php" hash="b64842b1a7bbe5b879468c034ade22bd"/><file name="Shipping.php" hash="7f15ea3b4fed5dcb20b37a78dd84cf5d"/></dir><dir name="Renderer"><file name="Select.php" hash="90a71e109a5f96bca26209c922a74961"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Feeds.php" hash="e1127c67a55f163e0c17ae54111b4538"/><file name="Heading.php" hash="cf8597dec6375bbf35014e1a491605d6"/><file name="Note.php" hash="6d7c8056bf0418ab6008dd86ed1d93ca"/><file name="Token.php" hash="d6f89e494288e7d90525d8067a7bb1de"/><file name="Version.php" hash="7be709c731b412258539184c3c4e01dd"/></dir></dir></dir></dir><dir name="Widget"><dir name="Info"><file name="Info.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Channable</name>
|
4 |
+
<version>1.4.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.magmodules.eu/license-agreement/">Single Server License</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Magmodules_Channable</description>
|
11 |
<notes>Channable Connect</notes>
|
12 |
<authors><author><name>Magmodules</name><user>magmodules</user><email>info@magmodules.nl</email></author></authors>
|
13 |
+
<date>2016-07-25</date>
|
14 |
+
<time>15:36:10</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Magmodules"><dir name="Channable"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Extra.php" hash="73e9ccaafacba4153962b37a8038c1ad"/><file name="Filter.php" hash="b64842b1a7bbe5b879468c034ade22bd"/><file name="Shipping.php" hash="7f15ea3b4fed5dcb20b37a78dd84cf5d"/></dir><dir name="Renderer"><file name="Select.php" hash="90a71e109a5f96bca26209c922a74961"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Feeds.php" hash="e1127c67a55f163e0c17ae54111b4538"/><file name="Heading.php" hash="cf8597dec6375bbf35014e1a491605d6"/><file name="Note.php" hash="6d7c8056bf0418ab6008dd86ed1d93ca"/><file name="Token.php" hash="d6f89e494288e7d90525d8067a7bb1de"/><file name="Version.php" hash="7be709c731b412258539184c3c4e01dd"/></dir></dir></dir></dir><dir name="Widget"><dir name="Info"><file name="Info.php" hash="1e9f175e9be64df06e971f2307b5fd5e"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="0c754ed310038043c086f9a34cf623d5"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Design"><file name="Extra.php" hash="6f888d0db7ed195c93a84748dd0a0c94"/><file name="Filter.php" hash="6609193f2296111f82276f09dc548be2"/><file name="Shipping.php" hash="6bea82000c4341ff2c5a9b05c992406c"/></dir></dir><dir name="Source"><file name="Action.php" hash="d655c22564992e02daccd9aac650358a"/><file name="Attribute.php" hash="714c0aafbe76d361fe883483bb7036d0"/><file name="Category.php" hash="bad1adc7e7890cfa5b83de0cd7a16835"/><file name="Categorytype.php" hash="7284943e01d7fe3346da7233ea827086"/><file name="Conditions.php" hash="aeb42d43282065fda73860f6a6d9da46"/><file name="Configurable.php" hash="08f157df27a2424e1a91d81bc1a572a7"/><file name="Countries.php" hash="ca6b39297950c9800059c34f7307d627"/><file name="Images.php" hash="d1c8294e6434fa3b0c03635b45964cc0"/><file name="Mainimage.php" hash="c85a8c05df234c188a0aff45a93a6b5c"/><file name="Name.php" hash="86af909704dc4f9320f2154d7c38ff4b"/><file name="Pricemodel.php" hash="359aeff8e7dc6099f55c493abed92a75"/><file name="Selectattribute.php" hash="5579305934bb5b51a443cc9525215975"/><file name="Shipping.php" hash="da2a147c1b6cf21a9f6f47e0456524dd"/><file name="Tax.php" hash="1b50c014c9e204e60cbbfcb883c76a9b"/><file name="Textattribute.php" hash="ea0a682c8a1aa0b51ee3e529c60fcbe8"/><file name="Type.php" hash="ffe6276231f501ac35943d3a83c77447"/><file name="Visibility.php" hash="c2e80831d9d8b5fc6cd642a590812a56"/><file name="Weight.php" hash="ba1e3c862ea2779c275d3d267b819435"/></dir></dir></dir></dir><file name="Channable.php" hash="baa70bfd2879d92fef615a796e9034be"/><file name="Common.php" hash="fdf8ac826f418c3dc842118e4a0f021f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ChannableController.php" hash="e6110aeea10eca08da781c70206f6ed9"/></dir><file name="FeedController.php" hash="e2b205016ebdc274835165111b1ed7f9"/></dir><dir name="etc"><file name="adminhtml.xml" hash="f6d3e3176f08cd111e0655837c3365dd"/><file name="config.xml" hash="b3532959becfb70cbc697fff92c90847"/><file name="system.xml" hash="a899289abe17ad825fcac279374743c1"/></dir></dir></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Magmodules_Channable.csv" hash="b7f6f15de57f502ccf1c98e71006a823"/></dir><dir name="nl_NL"><file name="Magmodules_Channable.csv" hash="2eaec8847182a0005c575e0acf6e1c1d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Channable.xml" hash="061032d718f1ddd64de211fc7133685c"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|