Version Notes
Added the ability to add custom fields to products and product-attributes export.
Download this release
Release Info
Developer | sven rothe |
Extension | Minubo_Interface |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.4 to 1.0.9
- app/code/community/Minubo/Interface/Model/Mysql4/Productattributes.php +25 -10
- app/code/community/Minubo/Interface/Model/Mysql4/Products.php +6 -3
- app/code/community/Minubo/Interface/Model/Mysql4/Products2.php +9 -1
- app/code/community/Minubo/Interface/Model/Mysql4/Products3.php +9 -1
- app/code/community/Minubo/Interface/controllers/ExportController.php +8 -6
- app/code/community/Minubo/Interface/etc/config.xml +1 -2
- app/code/community/Minubo/Interface/etc/system.xml +22 -6
- package.xml +5 -5
app/code/community/Minubo/Interface/Model/Mysql4/Productattributes.php
CHANGED
@@ -6,10 +6,25 @@ class Minubo_Interface_Model_Mysql4_Productattributes extends Mage_Core_Model_My
|
|
6 |
$this->_init('minubo_interface/productattributes', 'entity_id');
|
7 |
}
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
protected function getColumns() {
|
10 |
return array('e.attribute_set_id','eas.attribute_set_name','eav.attribute_id','eav.attribute_code','eav.backend_type','eav.is_required','var.value','var.value_id');
|
11 |
}
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
public function loadByField($field,$value){
|
14 |
$table = $this->getMainTable();
|
15 |
$table2 = $this->getTable('eav_attribute');
|
@@ -18,7 +33,7 @@ class Minubo_Interface_Model_Mysql4_Productattributes extends Mage_Core_Model_My
|
|
18 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
19 |
$table4 = $this->getTable('eav_attribute_set');
|
20 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
21 |
-
$where = $this->_getReadAdapter()->quoteInto("$field = ? AND eav.attribute_code in (
|
22 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))
|
23 |
->join(array('eav'=>$table2), $cond2)
|
24 |
->join(array('var'=>$table3), $cond3)
|
@@ -38,15 +53,15 @@ class Minubo_Interface_Model_Mysql4_Productattributes extends Mage_Core_Model_My
|
|
38 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
39 |
$table4 = $this->getTable('eav_attribute_set');
|
40 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
41 |
-
$where = $this->_getReadAdapter()->quoteInto("e.entity_id > ? AND eav.attribute_code in (
|
42 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
/*
|
51 |
echo $select."<br/>";
|
52 |
|
@@ -79,7 +94,7 @@ class Minubo_Interface_Model_Mysql4_Productattributes extends Mage_Core_Model_My
|
|
79 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
80 |
$table4 = $this->getTable('eav_attribute_set');
|
81 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
82 |
-
$where = $this->_getReadAdapter()->quoteInto("e.entity_id > ? AND eav.attribute_code in (
|
83 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))->reset('columns')
|
84 |
->join(array('eav'=>$table2), $cond2)
|
85 |
->join(array('var'=>$table3), $cond3)
|
6 |
$this->_init('minubo_interface/productattributes', 'entity_id');
|
7 |
}
|
8 |
|
9 |
+
/*
|
10 |
+
SELECT *
|
11 |
+
FROM `catalog_product_entity` e
|
12 |
+
inner join eav_attribute eav on e.entity_type_id = eav.entity_type_id
|
13 |
+
inner join catalog_product_entity_varchar var on eav.attribute_id = var.attribute_id AND e.entity_id = var.entity_id
|
14 |
+
inner join eav_attribute_set eas on e.attribute_set_id = eas.attribute_set_id AND e.entity_id = var.entity_id
|
15 |
+
where e.entity_id > 0 AND eav.attribute_code in ('name','color')
|
16 |
+
*/
|
17 |
+
|
18 |
protected function getColumns() {
|
19 |
return array('e.attribute_set_id','eas.attribute_set_name','eav.attribute_id','eav.attribute_code','eav.backend_type','eav.is_required','var.value','var.value_id');
|
20 |
}
|
21 |
|
22 |
+
protected function getAttributes() {
|
23 |
+
$fields = str_replace(' ','',Mage::getStoreConfig('minubo_interface/settings/attributefields',Mage::app()->getStore()));
|
24 |
+
$f = (strlen($fields)>0 ? ",'".str_replace(",","','",$fields)."'" : '');
|
25 |
+
return "'name'".$f;
|
26 |
+
}
|
27 |
+
|
28 |
public function loadByField($field,$value){
|
29 |
$table = $this->getMainTable();
|
30 |
$table2 = $this->getTable('eav_attribute');
|
33 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
34 |
$table4 = $this->getTable('eav_attribute_set');
|
35 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
36 |
+
$where = $this->_getReadAdapter()->quoteInto("$field = ? AND eav.attribute_code in (".$this->getAttributes().")", $value);
|
37 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))
|
38 |
->join(array('eav'=>$table2), $cond2)
|
39 |
->join(array('var'=>$table3), $cond3)
|
53 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
54 |
$table4 = $this->getTable('eav_attribute_set');
|
55 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
56 |
+
$where = $this->_getReadAdapter()->quoteInto("e.entity_id > ? AND eav.attribute_code in (".$this->getAttributes().")", 0);
|
57 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))
|
58 |
+
->join(array('eav'=>$table2), $cond2)
|
59 |
+
->join(array('var'=>$table3), $cond3)
|
60 |
+
->join(array('eas'=>$table4), $cond4)
|
61 |
+
->reset('columns')
|
62 |
+
->columns($this->getColumns())
|
63 |
+
->where($where)
|
64 |
+
->order('e.entity_id');
|
65 |
/*
|
66 |
echo $select."<br/>";
|
67 |
|
94 |
$cond3 = $this->_getReadAdapter()->quoteInto('eav.attribute_id = var.attribute_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
95 |
$table4 = $this->getTable('eav_attribute_set');
|
96 |
$cond4 = $this->_getReadAdapter()->quoteInto('e.attribute_set_id = eas.attribute_set_id AND ','').$this->_getReadAdapter()->quoteInto('e.entity_id = var.entity_id', '');
|
97 |
+
$where = $this->_getReadAdapter()->quoteInto("e.entity_id > ? AND eav.attribute_code in (".$this->getAttributes().")", 0);
|
98 |
$select = $this->_getReadAdapter()->select()->from(array('e'=>$table))->reset('columns')
|
99 |
->join(array('eav'=>$table2), $cond2)
|
100 |
->join(array('var'=>$table3), $cond3)
|
app/code/community/Minubo/Interface/Model/Mysql4/Products.php
CHANGED
@@ -8,15 +8,18 @@ class Minubo_Interface_Model_Mysql4_Products extends Mage_Core_Model_Mysql4_Abst
|
|
8 |
}
|
9 |
|
10 |
protected function getColumns() {
|
11 |
-
|
12 |
'visibility','has_options','gift_message_available','price','special_price',
|
13 |
'special_from_date','special_to_date','tax_class_id','required_options',
|
14 |
'price_type','sku_type','shipment_type','cost','msrp_enabled','msrp',
|
15 |
'small_image','thumbnail','news_from_date','news_to_date','url_key','url_path',
|
16 |
'is_recurring','recurring_profile','image_label','small_image_label',
|
17 |
-
'thumbnail_label','updated_at','
|
18 |
-
'links_purchased_separately','
|
19 |
'msrp_display_actual_price_type','short_description');
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
public function loadByField($field,$value){
|
8 |
}
|
9 |
|
10 |
protected function getColumns() {
|
11 |
+
$r = array('entity_id','sku','name','type_id','attribute_set_id','created_at','type_id as typeKey','weight',
|
12 |
'visibility','has_options','gift_message_available','price','special_price',
|
13 |
'special_from_date','special_to_date','tax_class_id','required_options',
|
14 |
'price_type','sku_type','shipment_type','cost','msrp_enabled','msrp',
|
15 |
'small_image','thumbnail','news_from_date','news_to_date','url_key','url_path',
|
16 |
'is_recurring','recurring_profile','image_label','small_image_label',
|
17 |
+
'thumbnail_label','updated_at','weight_type','price_view',
|
18 |
+
'links_purchased_separately','links_exist',
|
19 |
'msrp_display_actual_price_type','short_description');
|
20 |
+
$fields = Mage::getStoreConfig('minubo_interface/settings/productfields',Mage::app()->getStore());
|
21 |
+
$f = explode(',', str_replace(' ','',$fields));
|
22 |
+
return array_merge($r, $f);
|
23 |
}
|
24 |
|
25 |
public function loadByField($field,$value){
|
app/code/community/Minubo/Interface/Model/Mysql4/Products2.php
CHANGED
@@ -7,7 +7,15 @@ class Minubo_Interface_Model_Mysql4_Products2 extends Mage_Core_Model_Mysql4_Abs
|
|
7 |
}
|
8 |
|
9 |
protected function getColumns() {
|
10 |
-
return array('entity_id','
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
public function loadByField($field,$value){
|
7 |
}
|
8 |
|
9 |
protected function getColumns() {
|
10 |
+
return array('entity_id','sku','name','type_id','attribute_set_id','created_at','type_id as typeKey','weight',
|
11 |
+
'visibility','has_options','gift_message_available','price','special_price',
|
12 |
+
'special_from_date','special_to_date','tax_class_id','required_options',
|
13 |
+
'price_type','sku_type','shipment_type','cost','msrp_enabled','msrp',
|
14 |
+
'small_image','thumbnail','news_from_date','news_to_date','url_key','url_path',
|
15 |
+
'is_recurring','recurring_profile','image_label','small_image_label',
|
16 |
+
'thumbnail_label','updated_at','weight_type','price_view',
|
17 |
+
'links_purchased_separately','links_exist',
|
18 |
+
'msrp_display_actual_price_type','short_description');
|
19 |
}
|
20 |
|
21 |
public function loadByField($field,$value){
|
app/code/community/Minubo/Interface/Model/Mysql4/Products3.php
CHANGED
@@ -7,7 +7,15 @@ class Minubo_Interface_Model_Mysql4_Products3 extends Mage_Core_Model_Mysql4_Abs
|
|
7 |
}
|
8 |
|
9 |
protected function getColumns() {
|
10 |
-
return array('entity_id','
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
public function loadByField($field,$value){
|
7 |
}
|
8 |
|
9 |
protected function getColumns() {
|
10 |
+
return array('entity_id','sku','name','type_id','attribute_set_id','created_at','type_id as typeKey','weight',
|
11 |
+
'visibility','has_options','gift_message_available','price','special_price',
|
12 |
+
'special_from_date','special_to_date','tax_class_id','required_options',
|
13 |
+
'price_type','sku_type','shipment_type','cost','msrp_enabled','msrp',
|
14 |
+
'small_image','thumbnail','news_from_date','news_to_date','url_key','url_path',
|
15 |
+
'is_recurring','recurring_profile','image_label','small_image_label',
|
16 |
+
'thumbnail_label','updated_at','weight_type','price_view',
|
17 |
+
'links_purchased_separately','links_exist',
|
18 |
+
'msrp_display_actual_price_type','short_description');
|
19 |
}
|
20 |
|
21 |
public function loadByField($field,$value){
|
app/code/community/Minubo/Interface/controllers/ExportController.php
CHANGED
@@ -156,10 +156,12 @@ class Minubo_Interface_ExportController extends Mage_Core_Controller_Front_Actio
|
|
156 |
|
157 |
$download = $this->getRequest()->getPost('download');
|
158 |
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
|
|
|
|
163 |
}
|
164 |
|
165 |
public function countriesAction ()
|
@@ -184,7 +186,7 @@ class Minubo_Interface_ExportController extends Mage_Core_Controller_Front_Actio
|
|
184 |
break;
|
185 |
}
|
186 |
$config = new Mage_Core_Model_Config();
|
187 |
-
$config->saveConfig('minubo_interface/settings/lastexportenddate', date('Y.m.d H:i:s'), 'default', 0);
|
188 |
$config = null;
|
189 |
|
190 |
$rows = null;
|
@@ -307,7 +309,7 @@ class Minubo_Interface_ExportController extends Mage_Core_Controller_Front_Actio
|
|
307 |
break;
|
308 |
}
|
309 |
$config = new Mage_Core_Model_Config();
|
310 |
-
$config->saveConfig('minubo_interface/settings/lastexportenddate', date('Y.m.d H:i:s'), 'default', 0);
|
311 |
$config = null;
|
312 |
|
313 |
$model = null;
|
156 |
|
157 |
$download = $this->getRequest()->getPost('download');
|
158 |
|
159 |
+
$endtime = str_replace('.','-',Mage::getStoreConfig('minubo_interface/settings/lastexportenddate',Mage::app()->getStore()));
|
160 |
+
if(time()-strtotime($endtime)>(600)) {
|
161 |
+
$config = new Mage_Core_Model_Config();
|
162 |
+
$config->saveConfig('minubo_interface/settings/lastexportstartdate', str_replace('.','-',date('Y.m.d H:i:s')), 'default', 0);
|
163 |
+
$config = null;
|
164 |
+
}
|
165 |
}
|
166 |
|
167 |
public function countriesAction ()
|
186 |
break;
|
187 |
}
|
188 |
$config = new Mage_Core_Model_Config();
|
189 |
+
$config->saveConfig('minubo_interface/settings/lastexportenddate', str_replace('.','-',date('Y.m.d H:i:s')), 'default', 0);
|
190 |
$config = null;
|
191 |
|
192 |
$rows = null;
|
309 |
break;
|
310 |
}
|
311 |
$config = new Mage_Core_Model_Config();
|
312 |
+
$config->saveConfig('minubo_interface/settings/lastexportenddate', str_replace('.','-',date('Y.m.d H:i:s')), 'default', 0);
|
313 |
$config = null;
|
314 |
|
315 |
$model = null;
|
app/code/community/Minubo/Interface/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Minubo_Interface>
|
5 |
-
<version>1.0.
|
6 |
</Minubo_Interface>
|
7 |
</modules>
|
8 |
<global>
|
@@ -98,7 +98,6 @@
|
|
98 |
<invoiceitems>
|
99 |
<table>sales_flat_invoice_item</table>
|
100 |
</invoiceitems>
|
101 |
-
|
102 |
</entities>
|
103 |
</minubo_mysql4>
|
104 |
</models>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Minubo_Interface>
|
5 |
+
<version>1.0.9</version>
|
6 |
</Minubo_Interface>
|
7 |
</modules>
|
8 |
<global>
|
98 |
<invoiceitems>
|
99 |
<table>sales_flat_invoice_item</table>
|
100 |
</invoiceitems>
|
|
|
101 |
</entities>
|
102 |
</minubo_mysql4>
|
103 |
</models>
|
app/code/community/Minubo/Interface/etc/system.xml
CHANGED
@@ -5,10 +5,10 @@
|
|
5 |
<label>Minubo Interface</label>
|
6 |
<tab>sales</tab>
|
7 |
<frontend_type>text</frontend_type>
|
8 |
-
<sort_order>999999</sort_order>
|
9 |
<show_in_default>1</show_in_default>
|
10 |
<show_in_website>1</show_in_website>
|
11 |
<show_in_store>1</show_in_store>
|
|
|
12 |
<groups>
|
13 |
<settings translate="label">
|
14 |
<label>Minubo Interface Settings</label>
|
@@ -70,10 +70,26 @@
|
|
70 |
<show_in_website>1</show_in_website>
|
71 |
<show_in_store>0</show_in_store>
|
72 |
</output_type>
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
<label>Last Export started at</label>
|
75 |
<frontend_type>label</frontend_type>
|
76 |
-
<sort_order>
|
77 |
<show_in_default>1</show_in_default>
|
78 |
<show_in_website>1</show_in_website>
|
79 |
<show_in_store>0</show_in_store>
|
@@ -81,7 +97,7 @@
|
|
81 |
<lastexportenddate translate="label">
|
82 |
<label>Last Export ended at</label>
|
83 |
<frontend_type>label</frontend_type>
|
84 |
-
<sort_order>
|
85 |
<show_in_default>1</show_in_default>
|
86 |
<show_in_website>1</show_in_website>
|
87 |
<show_in_store>0</show_in_store>
|
@@ -89,7 +105,7 @@
|
|
89 |
<firstchangedate translate="label">
|
90 |
<label>Last Export from Change-Date</label>
|
91 |
<frontend_type>label</frontend_type>
|
92 |
-
<sort_order>
|
93 |
<show_in_default>1</show_in_default>
|
94 |
<show_in_website>1</show_in_website>
|
95 |
<show_in_store>0</show_in_store>
|
@@ -97,7 +113,7 @@
|
|
97 |
<lastchangedate translate="label">
|
98 |
<label>Last Export to Change-Date</label>
|
99 |
<frontend_type>label</frontend_type>
|
100 |
-
<sort_order>
|
101 |
<show_in_default>1</show_in_default>
|
102 |
<show_in_website>1</show_in_website>
|
103 |
<show_in_store>0</show_in_store>
|
5 |
<label>Minubo Interface</label>
|
6 |
<tab>sales</tab>
|
7 |
<frontend_type>text</frontend_type>
|
|
|
8 |
<show_in_default>1</show_in_default>
|
9 |
<show_in_website>1</show_in_website>
|
10 |
<show_in_store>1</show_in_store>
|
11 |
+
<sort_order>1000</sort_order>
|
12 |
<groups>
|
13 |
<settings translate="label">
|
14 |
<label>Minubo Interface Settings</label>
|
70 |
<show_in_website>1</show_in_website>
|
71 |
<show_in_store>0</show_in_store>
|
72 |
</output_type>
|
73 |
+
<productfields translate="label">
|
74 |
+
<label>Additional product-fields (comma-separated, see catalog_product_flat_1)</label>
|
75 |
+
<frontend_type>text</frontend_type>
|
76 |
+
<sort_order>5</sort_order>
|
77 |
+
<show_in_default>1</show_in_default>
|
78 |
+
<show_in_website>1</show_in_website>
|
79 |
+
<show_in_store>0</show_in_store>
|
80 |
+
</productfields>
|
81 |
+
<attributefields translate="label">
|
82 |
+
<label>Additional product-attribute-fields (comma-separated, see eav_attribute.attribute_code -> catalog_product_entity_varchar)</label>
|
83 |
+
<frontend_type>text</frontend_type>
|
84 |
+
<sort_order>6</sort_order>
|
85 |
+
<show_in_default>1</show_in_default>
|
86 |
+
<show_in_website>1</show_in_website>
|
87 |
+
<show_in_store>0</show_in_store>
|
88 |
+
</attributefields>
|
89 |
+
<lastexportstartdate translate="label">
|
90 |
<label>Last Export started at</label>
|
91 |
<frontend_type>label</frontend_type>
|
92 |
+
<sort_order>7</sort_order>
|
93 |
<show_in_default>1</show_in_default>
|
94 |
<show_in_website>1</show_in_website>
|
95 |
<show_in_store>0</show_in_store>
|
97 |
<lastexportenddate translate="label">
|
98 |
<label>Last Export ended at</label>
|
99 |
<frontend_type>label</frontend_type>
|
100 |
+
<sort_order>8</sort_order>
|
101 |
<show_in_default>1</show_in_default>
|
102 |
<show_in_website>1</show_in_website>
|
103 |
<show_in_store>0</show_in_store>
|
105 |
<firstchangedate translate="label">
|
106 |
<label>Last Export from Change-Date</label>
|
107 |
<frontend_type>label</frontend_type>
|
108 |
+
<sort_order>9</sort_order>
|
109 |
<show_in_default>1</show_in_default>
|
110 |
<show_in_website>1</show_in_website>
|
111 |
<show_in_store>0</show_in_store>
|
113 |
<lastchangedate translate="label">
|
114 |
<label>Last Export to Change-Date</label>
|
115 |
<frontend_type>label</frontend_type>
|
116 |
+
<sort_order>10</sort_order>
|
117 |
<show_in_default>1</show_in_default>
|
118 |
<show_in_website>1</show_in_website>
|
119 |
<show_in_store>0</show_in_store>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Minubo_Interface</name>
|
4 |
-
<version>1.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>Minubo Interface connects your Magento Shop to the All-In-One eCommerce Cloud BI Solution at minubo.com</summary>
|
10 |
<description>Minubo Interface connects your Magento Shop to the All-In-One eCommerce Cloud BI Solution at minubo.com. With this Extension in your Magento Shop your minubo Account at minubo.com can be configured to poll the newest data - of cause without any personalization - every day to bring the information to your screen, which you need to optimize your sales business. See more about minubo at minubo.com Minubo Interface supports Magento 1.5 (or newer). In Backend you can configure the Minubo Interface at System/Configuration/Sales/Minubo Interface (enable/disable, generate access key and see information about last export). Right now, the Minubo Interface is at the end of beta status and you have to change in the Magento Connect Backend the setting to allow download of other than stable releases.</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>sven rothe</name><user>minubo</user><email>sven@minubo.com</email></author></authors>
|
13 |
-
<date>2013-09-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Minubo"><dir name="Interface"><dir name="Block"><dir name="Adminhtml"><file name="Authhash.php" hash="c98e63efd5e4e42a6bc1c223a75176c3"/><file name="Lastchangedate.php" hash="c82ee55fad83d848f47a8594bd25c5af"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="c288b69aa22cc9ff5e978ff2b89646e9"/></dir></dir></dir><file name="Version.php" hash="31db32eca5dcaf3ad86c747bb3e11efc"/></dir></dir><dir name="Helper"><file name="Data.php" hash="d9cf690ff97d2014cd3e443c07ab4ea7"/></dir><dir name="Model"><dir name="Export"><file name="Abstractcsv.php" hash="13e3663020c59a2700c298c55613cfce"/><file name="Csv.php" hash="77cbeb41b49539b9179bc185bbbb6b4e"/><file name="Status.php" hash="cef67926aef558b87d4e3bcb02386743"/></dir><dir name="Mysql4"><file name="Categories.php" hash="4c5cc06db334e8f8e93176983ff2a2a5"/><file name="Categories2.php" hash="8aca4fa85df43b3a3ce218d0af27564b"/><file name="Categories3.php" hash="a39d7d2fa625e89f731a0b84a1659563"/><file name="Creditmemoitems.php" hash="417301b2227b91c6f4289214c287b4e8"/><file name="Creditmemos.php" hash="821c38dffc35468da0b5405a18b49429"/><file name="Customeraddresses.php" hash="93d3c82c80f85de361de5e7e6c4ecf68"/><file name="Customers.php" hash="2243c128671e73cf70396efd9a9e5627"/><file name="Invoiceitems.php" hash="b487f7780366a832e9e28bb7e66e95e0"/><file name="Invoices.php" hash="8b1dcc3491f76eb68ac1ee2c4e965234"/><file name="Orderaddresses.php" hash="15672ef2e5eaf1a4a7d327edec087652"/><file name="Orderitems.php" hash="37fa91a9307f37441bdf0ac37794b3a4"/><file name="Orders.php" hash="1c221153e35b0dfc28e0ea0189bf1e83"/><file name="Productattributes.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>Minubo_Interface</name>
|
4 |
+
<version>1.0.9</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>Minubo Interface connects your Magento Shop to the All-In-One eCommerce Cloud BI Solution at minubo.com</summary>
|
10 |
<description>Minubo Interface connects your Magento Shop to the All-In-One eCommerce Cloud BI Solution at minubo.com. With this Extension in your Magento Shop your minubo Account at minubo.com can be configured to poll the newest data - of cause without any personalization - every day to bring the information to your screen, which you need to optimize your sales business. See more about minubo at minubo.com Minubo Interface supports Magento 1.5 (or newer). In Backend you can configure the Minubo Interface at System/Configuration/Sales/Minubo Interface (enable/disable, generate access key and see information about last export). Right now, the Minubo Interface is at the end of beta status and you have to change in the Magento Connect Backend the setting to allow download of other than stable releases.</description>
|
11 |
+
<notes>Added the ability to add custom fields to products and product-attributes export.</notes>
|
12 |
<authors><author><name>sven rothe</name><user>minubo</user><email>sven@minubo.com</email></author></authors>
|
13 |
+
<date>2013-09-19</date>
|
14 |
+
<time>13:49:49</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Minubo"><dir name="Interface"><dir name="Block"><dir name="Adminhtml"><file name="Authhash.php" hash="c98e63efd5e4e42a6bc1c223a75176c3"/><file name="Lastchangedate.php" hash="c82ee55fad83d848f47a8594bd25c5af"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="c288b69aa22cc9ff5e978ff2b89646e9"/></dir></dir></dir><file name="Version.php" hash="31db32eca5dcaf3ad86c747bb3e11efc"/></dir></dir><dir name="Helper"><file name="Data.php" hash="d9cf690ff97d2014cd3e443c07ab4ea7"/></dir><dir name="Model"><dir name="Export"><file name="Abstractcsv.php" hash="13e3663020c59a2700c298c55613cfce"/><file name="Csv.php" hash="77cbeb41b49539b9179bc185bbbb6b4e"/><file name="Status.php" hash="cef67926aef558b87d4e3bcb02386743"/></dir><dir name="Mysql4"><file name="Categories.php" hash="4c5cc06db334e8f8e93176983ff2a2a5"/><file name="Categories2.php" hash="8aca4fa85df43b3a3ce218d0af27564b"/><file name="Categories3.php" hash="a39d7d2fa625e89f731a0b84a1659563"/><file name="Creditmemoitems.php" hash="417301b2227b91c6f4289214c287b4e8"/><file name="Creditmemos.php" hash="821c38dffc35468da0b5405a18b49429"/><file name="Customeraddresses.php" hash="93d3c82c80f85de361de5e7e6c4ecf68"/><file name="Customers.php" hash="2243c128671e73cf70396efd9a9e5627"/><file name="Invoiceitems.php" hash="b487f7780366a832e9e28bb7e66e95e0"/><file name="Invoices.php" hash="8b1dcc3491f76eb68ac1ee2c4e965234"/><file name="Orderaddresses.php" hash="15672ef2e5eaf1a4a7d327edec087652"/><file name="Orderitems.php" hash="37fa91a9307f37441bdf0ac37794b3a4"/><file name="Orders.php" hash="1c221153e35b0dfc28e0ea0189bf1e83"/><file name="Productattributes.php" hash="3f1d8d692e5a96d231548568bc79b228"/><file name="Productcategories.php" hash="3fe724235a87d4700dc1a2dc9dde7175"/><file name="Products.php" hash="73bddd1cba6d89ef94b5a796ea4f0374"/><file name="Products2.php" hash="049c3f9d1f8f8cc389ee9b2d3d42b18f"/><file name="Products3.php" hash="f024b76ca62aab3cf0a1f2f40751f9b9"/><file name="Regions.php" hash="f1575516572fbd9a58e8c025fefa95d4"/></dir><dir name="Options"><file name="Options.php" hash="b696a731d9daa7f53c8375f19ad3838f"/><file name="Version.php" hash="fafcca0d77fbbe7fb26b869a845963bf"/></dir><dir name="Read"><file name="Collections.php" hash="2af8284c1653b0637c9d1542397043f1"/><file name="Common.php" hash="18b089bb03cbb226b95db428a7c31ef2"/></dir><file name="Tables.php" hash="c66214083bce5f94d932c6521dfaf05a"/></dir><dir name="controllers"><file name="ExportController.php" hash="9880af09daa1417e2032afe910ebe349"/></dir><dir name="etc"><file name="adminhtml.xml" hash="375c548aacaf6f1bfdf4de3af7b29dfb"/><file name="config.xml" hash="3331e80ee88730fabc8165e7b76095e4"/><file name="system.xml" hash="8bb4d0f85e323adc235985e16ecb17c9"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="minubo"><dir name="system"><dir name="config"><file name="button.phtml" hash=""/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Minubo_Interface.xml" hash=""/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|