Magefast_ImportBundleProductType - Version 1.0.1

Version Notes

First release for community.

Download this release

Release Info

Developer Alex
Extension Magefast_ImportBundleProductType
Version 1.0.1
Comparing to
See all releases


Version 1.0.1

app/code/community/Magefast/ImportBundleProductType/Model/Import/Entity/Product/Type/Bundle.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Magefast_ImportBundleProductType_Model_Import_Entity_Product_Type_Bundle
4
+ extends Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract
5
+ {
6
+ /**
7
+ * Attributes' codes which will be allowed anyway, independently from its visibility property.
8
+ *
9
+ * @var array
10
+ */
11
+ protected $_forcedAttributesCodes = array(
12
+ 'related_tgtr_position_behavior', 'related_tgtr_position_limit',
13
+ 'upsell_tgtr_position_behavior', 'upsell_tgtr_position_limit'
14
+ );
15
+ }
app/code/community/Magefast/ImportBundleProductType/etc/config.xml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Magefast_ImportBundleProductType>
5
+ <version>1.0.1</version>
6
+ </Magefast_ImportBundleProductType>
7
+ </modules>
8
+ <global>
9
+ <models>
10
+ <importbundleproducttype>
11
+ <class>Magefast_ImportBundleProductType_Model</class>
12
+ </importbundleproducttype>
13
+ </models>
14
+ <importexport>
15
+ <import_product_types>
16
+ <bundle>importbundleproducttype/import_entity_product_type_bundle</bundle>
17
+ </import_product_types>
18
+ </importexport>
19
+ </global>
20
+ </config>
app/etc/modules/Magefast_ImportBundleProductType.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Magefast_ImportBundleProductType>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Magefast_ImportBundleProductType>
8
+ </modules>
9
+ </config>
package.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Magefast_ImportBundleProductType</name>
4
+ <version>1.0.1</version>
5
+ <stability>stable</stability>
6
+ <license>Academic Free License (AFL)</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Add support for product type - BUNDLE, in Magento module Mage_ImportExport</summary>
10
+ <description>The extension will add new product type for Bundle product. Will available add/update products data via standard Magento import, for Bundle products type.&#xD;
11
+ &#xD;
12
+ By default Bundle product type not supported for import data via CSV Mage_ImportExport module.&#xD;
13
+ &#xD;
14
+ After install extension will available add/update data for Bundled products via standart Magento Import module (in top menu System - Import/Export - Import).</description>
15
+ <notes>First release for community.&#xD;
16
+ </notes>
17
+ <authors><author><name>Alex</name><user>alexhost</user><email>magento@magefast.com</email></author></authors>
18
+ <date>2013-10-02</date>
19
+ <time>08:52:39</time>
20
+ <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="Magefast"><dir name="ImportBundleProductType"><dir name="Model"><dir name="Import"><dir name="Entity"><dir name="Product"><dir name="Type"><file name="Bundle.php" hash="cb973b8d028ef2e257159ef6b1bb46ee"/></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="79c684324d463b45a6a8b9ead26e9854"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Magefast_ImportBundleProductType.xml" hash="78a799642252c9f50a0167be88cfedca"/></dir></dir></dir></target></contents>
21
+ <compatible/>
22
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
23
+ </package>