Magmodules_Channable - Version 1.3.7

Version Notes

Channable Connect

Download this release

Release Info

Developer Magento Core Team
Extension Magmodules_Channable
Version 1.3.7
Comparing to
See all releases


Code changes from version 1.3.6 to 1.3.7

app/code/community/Magmodules/Channable/Block/Adminhtml/Widget/Info/Info.php CHANGED
@@ -27,13 +27,10 @@ class Magmodules_Channable_Block_Adminhtml_Widget_Info_Info extends Mage_Adminht
27
  <h4>About Magmodules.eu</h4>
28
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
29
  <br />
30
- <table width="500px" border="0">
31
  <tr>
32
  <td width="58%">View more extensions from us:</td>
33
  <td width="42%"><a href="http://www.magentocommerce.com/magento-connect/developer/Magmodules" target="_blank">Magento Connect</a></td>
34
- </tr>
35
- <td>Send us an E-mail:
36
- <td><a href="mailto:info@magmodules.eu">info@magmodules.eu</a></td>
37
  </tr>
38
  <tr>
39
  <td height="30">Visit our website:</td>
@@ -44,8 +41,8 @@ class Magmodules_Channable_Block_Adminhtml_Widget_Info_Info extends Mage_Adminht
44
  <td>&nbsp;</td>
45
  </tr>
46
  <tr>
47
- <td height="30"><strong>Need help?</strong></td>
48
- <td><strong><a href="http://www.magmodules.eu/help/channable" target="_blank">Online manual</a></strong></td>
49
  </tr>
50
  </table>
51
  </div>';
@@ -57,7 +54,8 @@ class Magmodules_Channable_Block_Adminhtml_Widget_Info_Info extends Mage_Adminht
57
 
58
  if(empty($oldversion)) {
59
  if(Mage::getStoreConfig('catalog/frontend/flat_catalog_product')) {
60
- $non_flat_attributes = Mage::helper('channable')->checkFlatCatalog(Mage::getModel("channable/channable")->getFeedAttributes());
 
61
  if(count($non_flat_attributes) > 0) {
62
  $html .= '<div id="messages"><ul class="messages"><li class="error-msg"><ul><li><span>';
63
  $html .= $this->__('Warning: The following used attribute(s) were not found in the flat catalog: %s. This can result in empty data or higher resource usage. Click <a href="%s">here</a> to add these to the flat catalog. ', implode($non_flat_attributes, ', '), $this->getUrl('*/channable/addToFlat'));
27
  <h4>About Magmodules.eu</h4>
28
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
29
  <br />
30
+ <table width="500px" border="0">
31
  <tr>
32
  <td width="58%">View more extensions from us:</td>
33
  <td width="42%"><a href="http://www.magentocommerce.com/magento-connect/developer/Magmodules" target="_blank">Magento Connect</a></td>
 
 
 
34
  </tr>
35
  <tr>
36
  <td height="30">Visit our website:</td>
41
  <td>&nbsp;</td>
42
  </tr>
43
  <tr>
44
+ <td height="30"><strong>Read everything about the extension configuration in our <a href="http://www.magmodules.eu/help/channable-connect" target="_blank">Knowledgebase</a></strong>.</td>
45
+ <td>&nbsp;</td>
46
  </tr>
47
  </table>
48
  </div>';
54
 
55
  if(empty($oldversion)) {
56
  if(Mage::getStoreConfig('catalog/frontend/flat_catalog_product')) {
57
+ $store_id = Mage::helper('channable')->getStoreIdConfig();
58
+ $non_flat_attributes = Mage::helper('channable')->checkFlatCatalog(Mage::getModel("channable/channable")->getFeedAttributes('', $store_id));
59
  if(count($non_flat_attributes) > 0) {
60
  $html .= '<div id="messages"><ul class="messages"><li class="error-msg"><ul><li><span>';
61
  $html .= $this->__('Warning: The following used attribute(s) were not found in the flat catalog: %s. This can result in empty data or higher resource usage. Click <a href="%s">here</a> to add these to the flat catalog. ', implode($non_flat_attributes, ', '), $this->getUrl('*/channable/addToFlat'));
app/code/community/Magmodules/Channable/Helper/Data.php CHANGED
@@ -12,7 +12,7 @@
12
  * @author Magmodules <info@magmodules.eu>
13
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
14
  * @license http://www.magmodules.eu/license-agreement/
15
- * @version 03-03-2016
16
  * =============================================================
17
  */
18
 
@@ -226,10 +226,13 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
226
  $image = '';
227
  if(!empty($config['media_attributes'])) {
228
  foreach($config['media_attributes'] as $media_att) {
 
229
  $media_data = $product->getData($media_att);
230
  if(!empty($media_data)) {
231
- $image = $config['media_image_url'] . $media_data;
232
- $image_data['image'][$media_att] = $image;
 
 
233
  }
234
  }
235
  } else { // FOR OLDER VERSIONS
@@ -353,12 +356,20 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
353
  }
354
  }
355
 
356
- public function getProductData($product, $data)
357
  {
358
  $type = $data['type'];
359
- $source = $data['source'];
360
  $value = '';
361
  switch($type) {
 
 
 
 
 
 
 
 
362
  case 'select':
363
  $value = $product->getAttributeText($source);
364
  break;
@@ -434,9 +445,6 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
434
  $price_data['price'] = number_format(($price * $price_markup), 2, '.', '') . $currency;
435
 
436
  if(isset($sales_price)) {
437
- if($product->getTypeId() == 'bundle') {
438
- $sales_price = (($sales_price * $price) / 100);
439
- }
440
  $price_data['sales_price'] = number_format(($sales_price * $price_markup), 2, '.', '') . $currency;
441
  }
442
 
@@ -668,7 +676,8 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
668
  return $non_flat_attributes;
669
  }
670
 
671
- public function getMediaAttributes() {
 
672
  $media_types = array();
673
  $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->addFieldToFilter('frontend_input', 'media_image');
674
  foreach($attributes as $attribute) {
@@ -676,4 +685,14 @@ class Magmodules_Channable_Helper_Data extends Mage_Core_Helper_Abstract {
676
  }
677
  return $media_types;
678
  }
 
 
 
 
 
 
 
 
 
 
679
  }
12
  * @author Magmodules <info@magmodules.eu>
13
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
14
  * @license http://www.magmodules.eu/license-agreement/
15
+ * @version 26-03-2016
16
  * =============================================================
17
  */
18
 
226
  $image = '';
227
  if(!empty($config['media_attributes'])) {
228
  foreach($config['media_attributes'] as $media_att) {
229
+ if($media_att == 'base') { $media_att = 'image'; }
230
  $media_data = $product->getData($media_att);
231
  if(!empty($media_data)) {
232
+ if($media_data != 'no_selection') {
233
+ $image = $config['media_image_url'] . $media_data;
234
+ $image_data['image'][$media_att] = $image;
235
+ }
236
  }
237
  }
238
  } else { // FOR OLDER VERSIONS
356
  }
357
  }
358
 
359
+ public function getProductData($product, $data, $config = '')
360
  {
361
  $type = $data['type'];
362
+ $source = $data['source'];
363
  $value = '';
364
  switch($type) {
365
+ case 'price':
366
+ if(!empty($product[$source])) {
367
+ $value = number_format($product[$source], 2, '.', '');
368
+ if(!empty($config['currency'])) {
369
+ $value .= ' ' . $config['currency'];
370
+ }
371
+ }
372
+ break;
373
  case 'select':
374
  $value = $product->getAttributeText($source);
375
  break;
445
  $price_data['price'] = number_format(($price * $price_markup), 2, '.', '') . $currency;
446
 
447
  if(isset($sales_price)) {
 
 
 
448
  $price_data['sales_price'] = number_format(($sales_price * $price_markup), 2, '.', '') . $currency;
449
  }
450
 
676
  return $non_flat_attributes;
677
  }
678
 
679
+ public function getMediaAttributes()
680
+ {
681
  $media_types = array();
682
  $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->addFieldToFilter('frontend_input', 'media_image');
683
  foreach($attributes as $attribute) {
685
  }
686
  return $media_types;
687
  }
688
+
689
+ public function getStoreIdConfig()
690
+ {
691
+ $store_id = 0;
692
+ if(strlen($code = Mage::getSingleton('adminhtml/config_data')->getStore())) {
693
+ $store_id = Mage::getModel('core/store')->load($code)->getId();
694
+ }
695
+ return $store_id;
696
+ }
697
+
698
  }
app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute.php CHANGED
@@ -20,7 +20,7 @@ class Magmodules_Channable_Model_Adminhtml_System_Config_Source_Attribute {
20
  {
21
  $optionArray = array();
22
  $optionArray[] = array('value' => '', 'label' => Mage::helper('channable')->__('-- none'));
23
- $backend_types = array('text', 'select', 'textarea', 'date', 'int', 'boolean', 'static', 'varchar');
24
  $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->setOrder('frontend_label','ASC')->addFieldToFilter('backend_type', $backend_types);
25
  foreach($attributes as $attribute) {
26
  if($attribute->getData('frontend_label')) {
20
  {
21
  $optionArray = array();
22
  $optionArray[] = array('value' => '', 'label' => Mage::helper('channable')->__('-- none'));
23
+ $backend_types = array('text', 'select', 'textarea', 'date', 'int', 'boolean', 'static', 'varchar', 'decimal');
24
  $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->setOrder('frontend_label','ASC')->addFieldToFilter('backend_type', $backend_types);
25
  foreach($attributes as $attribute) {
26
  if($attribute->getData('frontend_label')) {
app/code/community/Magmodules/Channable/Model/Channable.php CHANGED
@@ -19,6 +19,7 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
19
 
20
  public function generateFeed($storeId, $limit = '', $page = '', $time_start)
21
  {
 
22
  $config = $this->getFeedConfig($storeId);
23
  $clean = $this->cleanItemUpdates($storeId, $page);
24
  $products = $this->getProducts($config, $config['limit'], $page);
@@ -159,10 +160,10 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
159
  }
160
 
161
  if(Mage::getStoreConfig('channable/data/delivery', $storeId) == 'attribute') {
162
- $attributes['delivery'] = array('label' => 'delivery_period', 'source' => Mage::getStoreConfig('channable/data/delivery_att', $storeId), 'parent' => 1);
163
  }
164
  if(Mage::getStoreConfig('channable/data/delivery_be', $storeId) == 'attribute') {
165
- $attributes['delivery_be'] = array('label' => 'delivery_period_be', 'source' => Mage::getStoreConfig('channable/data/delivery_att_be', $storeId), 'parent' => 1);
166
  }
167
 
168
  if($extra_fields = @unserialize(Mage::getStoreConfig('channable/advanced/extra', $storeId))) {
@@ -288,6 +289,9 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
288
  if(!empty($product_data['image']['all'])) {
289
  $_additional = array();
290
  foreach($product_data['image']['all'] as $image) {
 
 
 
291
  if($image != $_images['image_link']) {
292
  $_additional[] = $image;
293
  }
@@ -354,5 +358,17 @@ class Magmodules_Channable_Model_Channable extends Magmodules_Channable_Model_Co
354
  Mage::getModel('channableapi/items')->saveItemFeed($product_row, $store_id);
355
  }
356
  }
357
-
 
 
 
 
 
 
 
 
 
 
 
 
358
  }
19
 
20
  public function generateFeed($storeId, $limit = '', $page = '', $time_start)
21
  {
22
+ $limit = $this->setMemoryLimit($storeId);
23
  $config = $this->getFeedConfig($storeId);
24
  $clean = $this->cleanItemUpdates($storeId, $page);
25
  $products = $this->getProducts($config, $config['limit'], $page);
160
  }
161
 
162
  if(Mage::getStoreConfig('channable/data/delivery', $storeId) == 'attribute') {
163
+ $attributes['delivery'] = array('label' => 'delivery_period', 'source' => Mage::getStoreConfig('channable/data/delivery_att', $storeId));
164
  }
165
  if(Mage::getStoreConfig('channable/data/delivery_be', $storeId) == 'attribute') {
166
+ $attributes['delivery_be'] = array('label' => 'delivery_period_be', 'source' => Mage::getStoreConfig('channable/data/delivery_att_be', $storeId));
167
  }
168
 
169
  if($extra_fields = @unserialize(Mage::getStoreConfig('channable/advanced/extra', $storeId))) {
289
  if(!empty($product_data['image']['all'])) {
290
  $_additional = array();
291
  foreach($product_data['image']['all'] as $image) {
292
+ if(empty($_images['image_link'])) {
293
+ $_images['image_link'] = $image;
294
+ }
295
  if($image != $_images['image_link']) {
296
  $_additional[] = $image;
297
  }
358
  Mage::getModel('channableapi/items')->saveItemFeed($product_row, $store_id);
359
  }
360
  }
361
+
362
+ protected function setMemoryLimit($storeId)
363
+ {
364
+ if(Mage::getStoreConfig('channable/server/overwrite', $storeId)) {
365
+ if($memory_limit = Mage::getStoreConfig('channable/server/memory_limit', $storeId)) {
366
+ ini_set('memory_limit', $memory_limit);
367
+ }
368
+ if($max_execution_time = Mage::getStoreConfig('channable/server/max_execution_time', $storeId)) {
369
+ ini_set('max_execution_time', $max_execution_time);
370
+ }
371
+ }
372
+ }
373
+
374
  }
app/code/community/Magmodules/Channable/etc/config.xml CHANGED
@@ -19,7 +19,7 @@
19
  <config>
20
  <modules>
21
  <Magmodules_Channable>
22
- <version>1.3.6</version>
23
  </Magmodules_Channable>
24
  </modules>
25
  <global>
@@ -103,6 +103,11 @@
103
  <stock_status>1</stock_status>
104
  <stock>1</stock>
105
  </data>
 
 
 
 
 
106
  </channable>
107
  </default>
108
  </config>
19
  <config>
20
  <modules>
21
  <Magmodules_Channable>
22
+ <version>1.3.7</version>
23
  </Magmodules_Channable>
24
  </modules>
25
  <global>
103
  <stock_status>1</stock_status>
104
  <stock>1</stock>
105
  </data>
106
+ <server>
107
+ <memory_limit>1024M</memory_limit>
108
+ <max_execution_time>300</max_execution_time>
109
+ <overwrite>0</overwrite>
110
+ </server>
111
  </channable>
112
  </default>
113
  </config>
app/code/community/Magmodules/Channable/etc/system.xml CHANGED
@@ -113,7 +113,7 @@
113
  <show_in_store>1</show_in_store>
114
  </note>
115
  <heading_general translate="label">
116
- <label>General Fields</label>
117
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
118
  <sort_order>10</sort_order>
119
  <show_in_default>1</show_in_default>
@@ -184,7 +184,7 @@
184
  <depends><images>all</images></depends>
185
  </default_image>
186
  <heading_additional translate="label">
187
- <label>Additional Fields</label>
188
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
189
  <sort_order>20</sort_order>
190
  <show_in_default>1</show_in_default>
@@ -263,7 +263,7 @@
263
  <show_in_store>1</show_in_store>
264
  </stock>
265
  <heading_delivery_nl translate="label">
266
- <label>Delivery Time - The Netherlands</label>
267
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
268
  <sort_order>40</sort_order>
269
  <show_in_default>1</show_in_default>
@@ -290,7 +290,7 @@
290
  <depends><delivery>attribute</delivery></depends>
291
  </delivery_att>
292
  <delivery_in translate="label">
293
- <label>Delivery Time - In Stock</label>
294
  <frontend_type>text</frontend_type>
295
  <sort_order>43</sort_order>
296
  <show_in_default>1</show_in_default>
@@ -299,7 +299,7 @@
299
  <depends><delivery>fixed</delivery></depends>
300
  </delivery_in>
301
  <delivery_out translate="label">
302
- <label>Delivery Time - Out of Stock</label>
303
  <frontend_type>text</frontend_type>
304
  <sort_order>44</sort_order>
305
  <show_in_default>1</show_in_default>
@@ -308,7 +308,7 @@
308
  <depends><delivery>fixed</delivery></depends>
309
  </delivery_out>
310
  <heading_delivery_be translate="label">
311
- <label>Delivery Time - Belgium</label>
312
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
313
  <sort_order>45</sort_order>
314
  <show_in_default>1</show_in_default>
@@ -361,7 +361,7 @@
361
  <show_in_store>1</show_in_store>
362
  </weight_heading>
363
  <weight translate="label">
364
- <label>Include Weight Field</label>
365
  <frontend_type>select</frontend_type>
366
  <source_model>adminhtml/system_config_source_yesno</source_model>
367
  <sort_order>71</sort_order>
@@ -370,7 +370,7 @@
370
  <show_in_store>1</show_in_store>
371
  </weight>
372
  <weight_units translate="label">
373
- <label>Weight Units</label>
374
  <frontend_type>select</frontend_type>
375
  <source_model>channable/adminhtml_system_config_source_weight</source_model>
376
  <sort_order>72</sort_order>
@@ -388,7 +388,7 @@
388
  <show_in_store>1</show_in_store>
389
  </price_heading>
390
  <force_tax translate="label">
391
- <label>Force Tax Usage</label>
392
  <frontend_type>select</frontend_type>
393
  <source_model>channable/adminhtml_system_config_source_tax</source_model>
394
  <sort_order>82</sort_order>
@@ -397,7 +397,7 @@
397
  <show_in_store>1</show_in_store>
398
  </force_tax>
399
  <add_tax translate="label">
400
- <label>Manually Add Tax</label>
401
  <frontend_type>select</frontend_type>
402
  <source_model>adminhtml/system_config_source_yesno</source_model>
403
  <sort_order>83</sort_order>
@@ -433,7 +433,7 @@
433
  <show_in_store>1</show_in_store>
434
  </conf_enabled>
435
  <conf_fields translate="label">
436
- <label>Use Parent Data for Simple</label>
437
  <frontend_type>multiselect</frontend_type>
438
  <source_model>channable/adminhtml_system_config_source_configurable</source_model>
439
  <sort_order>92</sort_order>
@@ -441,7 +441,7 @@
441
  <show_in_website>0</show_in_website>
442
  <show_in_store>0</show_in_store>
443
  <depends><conf_enabled>1</conf_enabled></depends>
444
- <comment>Use parent data</comment>
445
  </conf_fields>
446
  <conf_switch_urls translate="label">
447
  <label>Configurable Switch Urls</label>
@@ -483,7 +483,7 @@
483
  <show_in_store>1</show_in_store>
484
  </note>
485
  <extra_heading translate="label">
486
- <label>Extra Fields</label>
487
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
488
  <sort_order>30</sort_order>
489
  <show_in_default>1</show_in_default>
@@ -491,7 +491,7 @@
491
  <show_in_store>1</show_in_store>
492
  </extra_heading>
493
  <extra>
494
- <label>Extra Fields</label>
495
  <frontend_model>channable/adminhtml_config_form_field_extra</frontend_model>
496
  <backend_model>channable/adminhtml_system_config_backend_design_extra</backend_model>
497
  <sort_order>32</sort_order>
@@ -500,7 +500,7 @@
500
  <show_in_store>1</show_in_store>
501
  </extra>
502
  <heading_shipping translate="label">
503
- <label>Shipping Price</label>
504
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
505
  <sort_order>50</sort_order>
506
  <show_in_default>1</show_in_default>
@@ -508,7 +508,7 @@
508
  <show_in_store>1</show_in_store>
509
  </heading_shipping>
510
  <shipping_method translate="label">
511
- <label>Shipping Calculation</label>
512
  <frontend_type>select</frontend_type>
513
  <source_model>channable/adminhtml_system_config_source_shipping</source_model>
514
  <sort_order>51</sort_order>
@@ -517,7 +517,7 @@
517
  <show_in_store>1</show_in_store>
518
  </shipping_method>
519
  <shipping_price>
520
- <label>Shipping Price</label>
521
  <frontend_model>channable/adminhtml_config_form_field_shipping</frontend_model>
522
  <backend_model>channable/adminhtml_system_config_backend_design_shipping</backend_model>
523
  <sort_order>52</sort_order>
@@ -545,7 +545,7 @@
545
  <show_in_store>1</show_in_store>
546
  </note>
547
  <category_heading translate="label">
548
- <label>Filter by Category</label>
549
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
550
  <sort_order>20</sort_order>
551
  <show_in_default>1</show_in_default>
@@ -562,7 +562,7 @@
562
  <show_in_store>1</show_in_store>
563
  </category_enabled>
564
  <category_type translate="label">
565
- <label>Type of filter</label>
566
  <frontend_type>select</frontend_type>
567
  <source_model>channable/adminhtml_system_config_source_categorytype</source_model>
568
  <sort_order>22</sort_order>
@@ -582,7 +582,7 @@
582
  <depends><category_enabled>1</category_enabled></depends>
583
  </categories>
584
  <stock_heading translate="label">
585
- <label>Exclude Products on Stock level</label>
586
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
587
  <sort_order>30</sort_order>
588
  <show_in_default>1</show_in_default>
@@ -590,7 +590,7 @@
590
  <show_in_store>1</show_in_store>
591
  </stock_heading>
592
  <stock translate="label">
593
- <label>Exclude out of stock products</label>
594
  <frontend_type>select</frontend_type>
595
  <source_model>adminhtml/system_config_source_yesno</source_model>
596
  <sort_order>31</sort_order>
@@ -600,17 +600,58 @@
600
  </stock>
601
  </fields>
602
  </filter>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
  <settings translate="label" module="channable">
604
  <label>Feeds - Available</label>
605
  <frontend_type>text</frontend_type>
606
- <sort_order>7</sort_order>
607
  <show_in_default>1</show_in_default>
608
  <show_in_website>1</show_in_website>
609
  <show_in_store>1</show_in_store>
610
  <expanded>1</expanded>
611
  <fields>
612
  <note translate="label">
613
- <label><![CDATA[Each store view will have their own Channable feed, you can easily activate or de-activate the Channable feed generation on store level by using the general settings. Use the auto connect button to connect the Feed with your Channable account.]]></label>
614
  <frontend_model>channable/adminhtml_system_config_form_field_note</frontend_model>
615
  <sort_order>1</sort_order>
616
  <show_in_default>1</show_in_default>
113
  <show_in_store>1</show_in_store>
114
  </note>
115
  <heading_general translate="label">
116
+ <label>The General Fields</label>
117
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
118
  <sort_order>10</sort_order>
119
  <show_in_default>1</show_in_default>
184
  <depends><images>all</images></depends>
185
  </default_image>
186
  <heading_additional translate="label">
187
+ <label>The Additional Fields</label>
188
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
189
  <sort_order>20</sort_order>
190
  <show_in_default>1</show_in_default>
263
  <show_in_store>1</show_in_store>
264
  </stock>
265
  <heading_delivery_nl translate="label">
266
+ <label>Delivery Time for The Netherlands</label>
267
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
268
  <sort_order>40</sort_order>
269
  <show_in_default>1</show_in_default>
290
  <depends><delivery>attribute</delivery></depends>
291
  </delivery_att>
292
  <delivery_in translate="label">
293
+ <label>Delivery Time for In Stock</label>
294
  <frontend_type>text</frontend_type>
295
  <sort_order>43</sort_order>
296
  <show_in_default>1</show_in_default>
299
  <depends><delivery>fixed</delivery></depends>
300
  </delivery_in>
301
  <delivery_out translate="label">
302
+ <label>Delivery Time for Out of Stock</label>
303
  <frontend_type>text</frontend_type>
304
  <sort_order>44</sort_order>
305
  <show_in_default>1</show_in_default>
308
  <depends><delivery>fixed</delivery></depends>
309
  </delivery_out>
310
  <heading_delivery_be translate="label">
311
+ <label>Delivery Time for Belgium</label>
312
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
313
  <sort_order>45</sort_order>
314
  <show_in_default>1</show_in_default>
361
  <show_in_store>1</show_in_store>
362
  </weight_heading>
363
  <weight translate="label">
364
+ <label>Include the Weight Field</label>
365
  <frontend_type>select</frontend_type>
366
  <source_model>adminhtml/system_config_source_yesno</source_model>
367
  <sort_order>71</sort_order>
370
  <show_in_store>1</show_in_store>
371
  </weight>
372
  <weight_units translate="label">
373
+ <label>The Weight Units</label>
374
  <frontend_type>select</frontend_type>
375
  <source_model>channable/adminhtml_system_config_source_weight</source_model>
376
  <sort_order>72</sort_order>
388
  <show_in_store>1</show_in_store>
389
  </price_heading>
390
  <force_tax translate="label">
391
+ <label>Force the Tax Usage</label>
392
  <frontend_type>select</frontend_type>
393
  <source_model>channable/adminhtml_system_config_source_tax</source_model>
394
  <sort_order>82</sort_order>
397
  <show_in_store>1</show_in_store>
398
  </force_tax>
399
  <add_tax translate="label">
400
+ <label>Manually Add the Tax</label>
401
  <frontend_type>select</frontend_type>
402
  <source_model>adminhtml/system_config_source_yesno</source_model>
403
  <sort_order>83</sort_order>
433
  <show_in_store>1</show_in_store>
434
  </conf_enabled>
435
  <conf_fields translate="label">
436
+ <label>Use the Parent Data for Simple</label>
437
  <frontend_type>multiselect</frontend_type>
438
  <source_model>channable/adminhtml_system_config_source_configurable</source_model>
439
  <sort_order>92</sort_order>
441
  <show_in_website>0</show_in_website>
442
  <show_in_store>0</show_in_store>
443
  <depends><conf_enabled>1</conf_enabled></depends>
444
+ <comment>Use the parent data</comment>
445
  </conf_fields>
446
  <conf_switch_urls translate="label">
447
  <label>Configurable Switch Urls</label>
483
  <show_in_store>1</show_in_store>
484
  </note>
485
  <extra_heading translate="label">
486
+ <label>The Additional Fields</label>
487
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
488
  <sort_order>30</sort_order>
489
  <show_in_default>1</show_in_default>
491
  <show_in_store>1</show_in_store>
492
  </extra_heading>
493
  <extra>
494
+ <label>The Additional Fields</label>
495
  <frontend_model>channable/adminhtml_config_form_field_extra</frontend_model>
496
  <backend_model>channable/adminhtml_system_config_backend_design_extra</backend_model>
497
  <sort_order>32</sort_order>
500
  <show_in_store>1</show_in_store>
501
  </extra>
502
  <heading_shipping translate="label">
503
+ <label>The Shipping Price</label>
504
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
505
  <sort_order>50</sort_order>
506
  <show_in_default>1</show_in_default>
508
  <show_in_store>1</show_in_store>
509
  </heading_shipping>
510
  <shipping_method translate="label">
511
+ <label>Shipping Calculation method</label>
512
  <frontend_type>select</frontend_type>
513
  <source_model>channable/adminhtml_system_config_source_shipping</source_model>
514
  <sort_order>51</sort_order>
517
  <show_in_store>1</show_in_store>
518
  </shipping_method>
519
  <shipping_price>
520
+ <label>The Shipping Price</label>
521
  <frontend_model>channable/adminhtml_config_form_field_shipping</frontend_model>
522
  <backend_model>channable/adminhtml_system_config_backend_design_shipping</backend_model>
523
  <sort_order>52</sort_order>
545
  <show_in_store>1</show_in_store>
546
  </note>
547
  <category_heading translate="label">
548
+ <label>Filter based on Category</label>
549
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
550
  <sort_order>20</sort_order>
551
  <show_in_default>1</show_in_default>
562
  <show_in_store>1</show_in_store>
563
  </category_enabled>
564
  <category_type translate="label">
565
+ <label>Type of the filter</label>
566
  <frontend_type>select</frontend_type>
567
  <source_model>channable/adminhtml_system_config_source_categorytype</source_model>
568
  <sort_order>22</sort_order>
582
  <depends><category_enabled>1</category_enabled></depends>
583
  </categories>
584
  <stock_heading translate="label">
585
+ <label>Exclude Products by Stock level</label>
586
  <frontend_model>channable/adminhtml_system_config_form_field_heading</frontend_model>
587
  <sort_order>30</sort_order>
588
  <show_in_default>1</show_in_default>
590
  <show_in_store>1</show_in_store>
591
  </stock_heading>
592
  <stock translate="label">
593
+ <label>Exclude the out of stock products</label>
594
  <frontend_type>select</frontend_type>
595
  <source_model>adminhtml/system_config_source_yesno</source_model>
596
  <sort_order>31</sort_order>
600
  </stock>
601
  </fields>
602
  </filter>
603
+ <server translate="label" module="channable">
604
+ <label>Overwrite the server settings</label>
605
+ <frontend_type>text</frontend_type>
606
+ <sort_order>7</sort_order>
607
+ <show_in_default>1</show_in_default>
608
+ <show_in_website>1</show_in_website>
609
+ <show_in_store>1</show_in_store>
610
+ <expanded>1</expanded>
611
+ <fields>
612
+ <overwrite translate="label">
613
+ <label>Enabled</label>
614
+ <frontend_type>select</frontend_type>
615
+ <source_model>adminhtml/system_config_source_yesno</source_model>
616
+ <sort_order>21</sort_order>
617
+ <show_in_default>1</show_in_default>
618
+ <show_in_website>0</show_in_website>
619
+ <show_in_store>0</show_in_store>
620
+ <tooltip>Only use this option if it's necessary to overwrite this setting because of your server memory limit or execution time.</tooltip>
621
+ </overwrite>
622
+ <memory_limit translate="label">
623
+ <label>The Memory Limit</label>
624
+ <frontend_type>text</frontend_type>
625
+ <sort_order>22</sort_order>
626
+ <show_in_default>1</show_in_default>
627
+ <show_in_website>0</show_in_website>
628
+ <show_in_store>0</show_in_store>
629
+ <depends><overwrite>1</overwrite></depends>
630
+ <comment><![CDATA[This overwrites the maximum amount of memory in bytes that a script is allowed to allocate, eg 1024M.]]></comment>
631
+ </memory_limit>
632
+ <max_execution_time translate="label">
633
+ <label>The Max Execution Time</label>
634
+ <frontend_type>text</frontend_type>
635
+ <sort_order>23</sort_order>
636
+ <show_in_default>1</show_in_default>
637
+ <show_in_website>0</show_in_website>
638
+ <show_in_store>0</show_in_store>
639
+ <depends><overwrite>1</overwrite></depends>
640
+ <comment><![CDATA[This overwrites the maximum time in seconds a script is allowed to run before it is terminated by the parser, eg: 300 (for 5 minutes).]]></comment>
641
+ </max_execution_time>
642
+ </fields>
643
+ </server>
644
  <settings translate="label" module="channable">
645
  <label>Feeds - Available</label>
646
  <frontend_type>text</frontend_type>
647
+ <sort_order>8</sort_order>
648
  <show_in_default>1</show_in_default>
649
  <show_in_website>1</show_in_website>
650
  <show_in_store>1</show_in_store>
651
  <expanded>1</expanded>
652
  <fields>
653
  <note translate="label">
654
+ <label><![CDATA[Each store view will have their own Channable feed. Use the auto connect button to connect the Feed with your Channable account.]]></label>
655
  <frontend_model>channable/adminhtml_system_config_form_field_note</frontend_model>
656
  <sort_order>1</sort_order>
657
  <show_in_default>1</show_in_default>
app/locale/en_US/Magmodules_Channable.csv CHANGED
@@ -1,6 +1,6 @@
1
  "-- None","-- None"
2
  "-- none","-- none"
3
- "Each store view will have their own Channable feed, you can easily activate or de-activate the Channable feed generation on store level by using the general settings. You can easily copy the url to your Channable account.","Each store view will have their own Channable feed, you can easily activate or de-activate the Channable feed generation on store level by using the general settings. You can easily copy the url to your Channable account."
4
  "Add Attribute","Add Attribute"
5
  "Add Option","Add Option"
6
  "Always Use Parent Data","Always Use Parent Data"
@@ -9,8 +9,8 @@
9
  "Brand","Brand"
10
  "Channable Connect","Channable Connect"
11
  "Color","Color"
12
- "Connector Code","Connector Code"
13
  "Cost","Cost"
 
14
  "Data Selection","Data Selection"
15
  "Delivery Time","Delivery Time"
16
  "Delivery Time - In Stock","Delivery Time - In Stock"
@@ -18,6 +18,7 @@
18
  "Description","Description"
19
  "EAN-code","EAN-code"
20
  "Enabled","Enabled"
 
21
  "Enabled Feed","Enabled Feed"
22
  "Extra Fields","Extra Fields"
23
  "Feeds - Available","Feeds - Available"
@@ -52,6 +53,9 @@
52
  "This section lists all the standard attributes for the Channable Feed. The more attributes you use the better you can use the data in Channable. To avoid errors in Channable feed please make sure that you provide most available attributes.","This section lists all the standard attributes for the Channable Feed. The more attributes you use the better you can use the data in Channable. To avoid errors in Channable feed please make sure that you provide most available attributes."
53
  "Title","Title"
54
  "Type","Type"
 
55
  "Use Attribute","Use Attribute"
56
  "Use Simple Product Data","Use Simple Product Data"
57
- "Use Parent Data as fallback","Use Parent Data as fallback"
 
 
1
  "-- None","-- None"
2
  "-- none","-- none"
3
+ "Each store view will have their own Channable feed. Use the auto connect button to connect the Feed with your Channable account.","Each store view will have their own Channable feed. Use the auto connect button to connect the Feed with your Channable account."
4
  "Add Attribute","Add Attribute"
5
  "Add Option","Add Option"
6
  "Always Use Parent Data","Always Use Parent Data"
9
  "Brand","Brand"
10
  "Channable Connect","Channable Connect"
11
  "Color","Color"
 
12
  "Cost","Cost"
13
+ "Connector Code","Connector Code"
14
  "Data Selection","Data Selection"
15
  "Delivery Time","Delivery Time"
16
  "Delivery Time - In Stock","Delivery Time - In Stock"
18
  "Description","Description"
19
  "EAN-code","EAN-code"
20
  "Enabled","Enabled"
21
+ "Exclude out of stock products","Exclude out of stock products"
22
  "Enabled Feed","Enabled Feed"
23
  "Extra Fields","Extra Fields"
24
  "Feeds - Available","Feeds - Available"
53
  "This section lists all the standard attributes for the Channable Feed. The more attributes you use the better you can use the data in Channable. To avoid errors in Channable feed please make sure that you provide most available attributes.","This section lists all the standard attributes for the Channable Feed. The more attributes you use the better you can use the data in Channable. To avoid errors in Channable feed please make sure that you provide most available attributes."
54
  "Title","Title"
55
  "Type","Type"
56
+ "Overwrite server settings","Overwrite server settings"
57
  "Use Attribute","Use Attribute"
58
  "Use Simple Product Data","Use Simple Product Data"
59
+ "Use Parent Data as fallback","Use Parent Data as fallback"
60
+ "This overwrites the maximum amount of memory in bytes that a script is allowed to allocate eg 1024M.","This overwrites the maximum amount of memory in bytes that a script is allowed to allocate eg 1024M."
61
+ "The Max Execution Time","Maximale uitvoertijd"
app/locale/nl_NL/Magmodules_Channable.csv CHANGED
@@ -1,57 +1,97 @@
1
  "-- None","-- Geen"
2
  "-- none","-- geen"
3
- "Each store view will have their own Channable feed, you can easily activate or de-activate the Channable feed generation on store level by using the general settings. You can easily copy the url to your Channable account.","Er wordt voor elk winkelzicht een eigen Channable-feed gegenereerd, dit is eenvoudig te activeren of deactiveren in de algemene instellingen tab van deze extensie. U kunt de URL van de Feed vervolgens eenvoudig kopiëren naar uw Channable account."
4
  "Add Attribute","Attribuut toevoegen"
5
  "Always Use Parent Data","Altijd data gebruiken bovenliggende product"
6
  "Add Option","Optie toevoegen"
7
- "Additional Fields","Extra velden"
8
  "Attribute","Attribuut"
9
  "Brand","Merk"
 
 
10
  "Channable Connect","Channable Connect"
11
  "Color","Kleur"
 
 
 
 
12
  "Connector Code","Connector Code"
13
- "Cost","Kosten"
 
 
 
14
  "Data Selection","Data selectie"
15
  "Delivery Time","Levertijd"
16
- "Delivery Time - In Stock","Levertijd - op voorraad"
17
- "Delivery Time - Out of Stock","Levertijd - uit voorraad"
 
 
18
  "Description","Omschrijving"
19
  "EAN-code","EAN-code"
20
- "Enabled","Geactiveerd"
 
 
21
  "Enabled Feed","Geactiveerde Feed"
 
 
22
  "Extra Fields","Extra velden"
23
  "Feeds - Available","Feeds - Beschikbaar"
 
 
24
  "Gender","Geslacht"
25
  "General - Settings","Algemeen - Instellingen"
26
- "General Fields","Algemene velden"
 
27
  "Licence","Licentie"
28
  "License Key","Licentie code"
29
  "Magento Attribute","Magento attribuut"
30
  "Magmodules","Magmodules"
31
- "Material","materiaal"
 
32
  "Products - Configurable Products","Product - Configureerbaar product"
33
- "Price From","Prijs vanaf"
34
- "Price To","Prijs tot"
 
35
  "Products - Data","Product - Data"
36
  "Products - Data Extra fields & Shipping","Product - Data extra velden & verzending"
37
  "Products per feed","Producten per feed"
 
38
  "SKU","SKU"
39
  "Set the configurable products to your needs with the option to always use the parent data from the product inside the configurable product, only when the data is not available (as a fallback) or to use the simple product data anytime.","Stel de configureerbare producten in naar wens. Dit is mogelijk door de optie te gebruiken welke altijd de bovenliggende productinformatie pakt, de optie met de fallback welke enkel de bovenliggende productinformatie pakt indien er geen informatie beschikbaar is of de optie om altijd de simpel product informatie te pakken."
40
  "Send Status","Stuur status"
41
  "Send Stock Level","Stuur voorraadniveau"
42
  "Server Name","Servernaam"
 
 
43
  "Settings","Instellingen"
44
  "Shipping Price","Verzendkosten"
45
  "Size","Maat"
46
  "Static","Static"
47
  "Stock","Voorraad"
 
48
  "Strip Tags","Strip Tags"
49
  "Fill in a valid Channable Connector code and set a product limit to your Feed whenever you want this, use 0 to export all your products into the Channable Feed. You can also enable or disable the Feed generation on certain Store Views.","Vul een geldige Channable Connector code en stel een product limiet in per Feed. Indien u alle producten wenst te exporteren naar de Channable Feed kunt u 0 gebruiken. Het is mogelijk om de feed generatie in of uit te schakelen op winkelniveau."
50
  "Text","Tekst"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  "We recommend adding as many attributes as possible to the Channable feed as this will greatly improve the quality of your data. Enter the Shipping Price by using the designated extra field.","Voeg alle attributen in de Channable Feed om een hoge kwaliteit data feed te maken. Wij raden u aan zo veel mogelijk attributen gebruiken om de feed nog waardevoller te maken. Voer eventuele verzendkosten in om deze mee te nemen in de Feed."
52
  "In this section you will see listed all of the standard attributes needed for the Channable Connect. In order to prevent some errors please fill in as many attributes as you can, this will also improve the usability of your data on the Channable platform.","Dit gedeelte bevat alle standaard attributen voor de Channable Feed. Hoe meer data in de feed hoe beter u de gegevens kunt gebruiken in Channable. Om het optimale uit Channable te halen moet u ervoor zorgen dat u de meeste beschikbare attributen mee neemt in de Feed."
53
  "Title","Titel"
54
  "Type","Type"
55
- "Use Attribute","Gebruik attribuut"
56
- "Use Simple Product Data","Gebruik data van simpel product"
57
- "Use Parent Data as fallback","Gebruik data bovenliggend product als fallback"
1
  "-- None","-- Geen"
2
  "-- none","-- geen"
3
+ "Each store view will have their own Channable feed. Use the auto connect button to connect the Feed with your Channable account.","Er wordt voor elk winkelzicht een eigen feed gegenereerd. Gebruik de auto connect link om de feed met Channable te koppelen."
4
  "Add Attribute","Attribuut toevoegen"
5
  "Always Use Parent Data","Altijd data gebruiken bovenliggende product"
6
  "Add Option","Optie toevoegen"
7
+ "The Additional Fields","Extra velden"
8
  "Attribute","Attribuut"
9
  "Brand","Merk"
10
+ "Based on product price","Gebaseerd op productprijs"
11
+ "Based on product weight","Gebaseerd op productgewicht"
12
  "Channable Connect","Channable Connect"
13
  "Color","Kleur"
14
+ "Country","Land"
15
+ "Category","Category"
16
+ "Configurable Switch Urls","Configureerbare product URLs"
17
+ "Name","Naam"
18
  "Connector Code","Connector Code"
19
+ "Configurable & Grouped data linkage","Product data voor gegroepeerde en geconfigureerde producten"
20
+ "cost","Kosten"
21
+ "Click to auto connect with Channable","Klik hier om direct te koppelen met Channable"
22
+ "Create a specific url for the simple products inside the configurable products to make sure the prices and information is correct.","Maak een specifieke URL voor de simpele producten binnen een configureerbaar product om direct naar de juiste informatie te linken."
23
  "Data Selection","Data selectie"
24
  "Delivery Time","Levertijd"
25
+ "Delivery Time for In Stock","Levertijd - op voorraad"
26
+ "Delivery Time for Out of Stock","Levertijd - uit voorraad"
27
+ "Delivery Time for The Netherlands","Levertijd - Nederland"
28
+ "Delivery Time for Belgium","Levertijd - Belgie"
29
  "Description","Omschrijving"
30
  "EAN-code","EAN-code"
31
+ "Exclude Products by Stock level","Sluit producten uit op basis van de voorraad"
32
+ "Enabled","Ingeschakeld"
33
+ "Grouped Price","Gegroepeerde prijs"
34
  "Enabled Feed","Geactiveerde Feed"
35
+ "Exclude the out of stock products","Sluit uit voorraad producten uit"
36
+ "Exclude Products on Stock level","Producten uitsluiten op basis van voorraad"
37
  "Extra Fields","Extra velden"
38
  "Feeds - Available","Feeds - Beschikbaar"
39
+ "Filter based on Category","Filter op categorieën"
40
+ "Force the Tax Usage","Forceer BTW gebruik"
41
  "Gender","Geslacht"
42
  "General - Settings","Algemeen - Instellingen"
43
+ "The General Fields","Algemene velden"
44
+ "Limits the amount of product Channable will import per run. This setting wil not limit the total products sent to Channable!","Limiteer het aantal producten voor de import naar Channable per run. Deze setting heeft geen invloed op het importeren van het totaal aantal producten naar Channable."
45
  "Licence","Licentie"
46
  "License Key","Licentie code"
47
  "Magento Attribute","Magento attribuut"
48
  "Magmodules","Magmodules"
49
+ "Manually Add the Tax","Manueel BTW toevoegen"
50
+ "Material","Materiaal"
51
  "Products - Configurable Products","Product - Configureerbaar product"
52
+ "Price from","Prijs vanaf"
53
+ "Price to","Prijs tot"
54
+ "Products per page","Producten per pagina"
55
  "Products - Data","Product - Data"
56
  "Products - Data Extra fields & Shipping","Product - Data extra velden & verzending"
57
  "Products per feed","Producten per feed"
58
+ "Price Customization","Prijs aanpassingen"
59
  "SKU","SKU"
60
  "Set the configurable products to your needs with the option to always use the parent data from the product inside the configurable product, only when the data is not available (as a fallback) or to use the simple product data anytime.","Stel de configureerbare producten in naar wens. Dit is mogelijk door de optie te gebruiken welke altijd de bovenliggende productinformatie pakt, de optie met de fallback welke enkel de bovenliggende productinformatie pakt indien er geen informatie beschikbaar is of de optie om altijd de simpel product informatie te pakken."
61
  "Send Status","Stuur status"
62
  "Send Stock Level","Stuur voorraadniveau"
63
  "Server Name","Servernaam"
64
+ "Shipping Calculation method","Verzendkosten berekenmethode"
65
+ "The Shipping Price","Verzendkosten"
66
  "Settings","Instellingen"
67
  "Shipping Price","Verzendkosten"
68
  "Size","Maat"
69
  "Static","Static"
70
  "Stock","Voorraad"
71
+ "Default Image","Standaard afbeelding"
72
  "Strip Tags","Strip Tags"
73
  "Fill in a valid Channable Connector code and set a product limit to your Feed whenever you want this, use 0 to export all your products into the Channable Feed. You can also enable or disable the Feed generation on certain Store Views.","Vul een geldige Channable Connector code en stel een product limiet in per Feed. Indien u alle producten wenst te exporteren naar de Channable Feed kunt u 0 gebruiken. Het is mogelijk om de feed generatie in of uit te schakelen op winkelniveau."
74
  "Text","Tekst"
75
+ "Use default price","Gebruik standaard prijs"
76
+ "Use minimum price","Gebruik minimale prijs"
77
+ "Use maximum price","Gebruik maximale prijs"
78
+ "Use total price","Gebruik totale prijs"
79
+ "Use Attribute","Gebruik attribuut"
80
+ "Include the Weight Field","Gebruik het gewicht veld"
81
+ "Include by category","Invoegen van categorie"
82
+ "Use the Parent Data for Simple","Gebruik data van bovenliggend product"
83
+ "Use the parent data","Gebruik data bovenliggend product"
84
+ "Overwrite the server settings","Overschrijf de server instellingen"
85
+ "The Memory Limit","Geheugen limiet"
86
+ "Type of the filter","Type filter"
87
+ "This overwrites the maximum amount of memory in bytes that a script is allowed to allocate, eg 1024M.","Dit overschrijft de maximale hoeveelheid geheugen in bytes dat het script maximaal mag gebruiken, bijvoorbeeld 1024M."
88
+ "Max Execution Time","Maximale uitvoer tijd"
89
+ "This overwrites the maximum time in seconds a script is allowed to run before it is terminated by the parser, eg: 300 (for 5 minutes).","Dit overschrijft de maximale tijd in seconden dat het script mag draaien voordat het wordt beëindigd, bijvoorbeeld: 300 (5 minuten)."
90
+ "Only use this option if it's necessary to overwrite this setting because of your server memory limit or execution time.","Gebruik deze optie alleen als het nodig is om de instelling van het geheugen limiet of uitvoertijd van je server te overschrijven."
91
+ "The Weight Units","Gewicht soort"
92
  "We recommend adding as many attributes as possible to the Channable feed as this will greatly improve the quality of your data. Enter the Shipping Price by using the designated extra field.","Voeg alle attributen in de Channable Feed om een hoge kwaliteit data feed te maken. Wij raden u aan zo veel mogelijk attributen gebruiken om de feed nog waardevoller te maken. Voer eventuele verzendkosten in om deze mee te nemen in de Feed."
93
  "In this section you will see listed all of the standard attributes needed for the Channable Connect. In order to prevent some errors please fill in as many attributes as you can, this will also improve the usability of your data on the Channable platform.","Dit gedeelte bevat alle standaard attributen voor de Channable Feed. Hoe meer data in de feed hoe beter u de gegevens kunt gebruiken in Channable. Om het optimale uit Channable te halen moet u ervoor zorgen dat u de meeste beschikbare attributen mee neemt in de Feed."
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>"
 
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Channable</name>
4
- <version>1.3.6</version>
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>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
- <date>2016-03-10</date>
14
- <time>08:26:00</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="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="61fe176ed4490ffeb9813fb6a779ebeb"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1cd66ec2147dd20dbf00d2acd4fd9c64"/></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="Shipping.php" hash="6bea82000c4341ff2c5a9b05c992406c"/></dir></dir><dir name="Source"><file name="Action.php" hash="d655c22564992e02daccd9aac650358a"/><file name="Attribute.php" hash="eca41820c579f551037fb4ea1c087165"/><file name="Category.php" hash="bad1adc7e7890cfa5b83de0cd7a16835"/><file name="Categorytype.php" hash="7284943e01d7fe3346da7233ea827086"/><file name="Configurable.php" hash="08f157df27a2424e1a91d81bc1a572a7"/><file name="Countries.php" hash="5d382aeec5a685381026571ff2201593"/><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="7f6f98ed747d4c396dd1d1cd7ab205f8"/><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="d7a779c448700e05fb1ab36e06e3d79a"/><file name="Common.php" hash="35f99fa819869c67f930eb6ef34882bb"/></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="f1cea92f6293dd716ca19324c6f6bc4f"/><file name="system.xml" hash="fa2d450ce9899a31c1e88edf8da498fe"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Channable.csv" hash="342ab8e5f81e36067a6129189ca72b6e"/></dir><dir name="nl_NL"><file name="Magmodules_Channable.csv" hash="462df316feb223708a2a104cd11d556c"/></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Channable.xml" hash="061032d718f1ddd64de211fc7133685c"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Channable</name>
4
+ <version>1.3.7</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>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
+ <date>2016-03-29</date>
14
+ <time>09:50:11</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="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="17c31e6f59f5a77cdc5f3e7d4b20aaa3"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="e785c3cac671175e139a78cbb8d39cf3"/></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="Shipping.php" hash="6bea82000c4341ff2c5a9b05c992406c"/></dir></dir><dir name="Source"><file name="Action.php" hash="d655c22564992e02daccd9aac650358a"/><file name="Attribute.php" hash="5ac290ddee216c0e823aa3543d902054"/><file name="Category.php" hash="bad1adc7e7890cfa5b83de0cd7a16835"/><file name="Categorytype.php" hash="7284943e01d7fe3346da7233ea827086"/><file name="Configurable.php" hash="08f157df27a2424e1a91d81bc1a572a7"/><file name="Countries.php" hash="5d382aeec5a685381026571ff2201593"/><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="7f6f98ed747d4c396dd1d1cd7ab205f8"/><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="3deff03e109f6e565635882ee02b141f"/><file name="Common.php" hash="35f99fa819869c67f930eb6ef34882bb"/></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="30ffdf144357201ad79cfc631112c339"/><file name="system.xml" hash="e3c476523126346c9d3c1aee47964a9b"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Channable.csv" hash="6a30f9869021b3f87b52b0cc208e51a8"/></dir><dir name="nl_NL"><file name="Magmodules_Channable.csv" hash="30a461177468e5333da3ee2aff99594d"/></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Channable.xml" hash="061032d718f1ddd64de211fc7133685c"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>