orange35 / magento2-catalog-import-export
Extends magento/module-catalog-import-export module to allow overriding custom options import/export functionality
Installs: 935
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
Type:magento2-module
Requires
- php: ~5.5.0|~5.6.0|~7.0.6|~7.1.0|~7.2.0|~7.3.0|~7.4.0
This package is auto-updated.
Last update: 2025-04-07 19:27:16 UTC
README
Module extends the magento/module-catalog-import-export to allow overriding custom options import/export functionality.
The following methods are public and available for plugins:
Orange35\CatalogImportExport\Model\Import\Product\Option:
processOptionRow(...)
getSpecificTypeData(...)
getOptionData(...)
Orange35\CatalogImportExport\Model\Export\Product:
getCustomOptionAdditionalFields(\Magento\Catalog\Model\Product\Option $option)
getCustomOptionValueAdditionalFields(\Magento\Catalog\Model\Product\Option\Value $value)
Install
Install via composer (recommended)
cd ~/public_html/
composer require orange35/magento2-catalog-import-export
php bin/magento setup:upgrade
Note: the ~/public_html/
is a project root directory which may be different in your environment
Manual installation using zip
cd ~/public_html/
wget https://github.com/orange35/magento2-catalog-import-export/archive/1.0.0.zip
mkdir -p app/code/Orange35/CatalogImportExport
upzip 1.0.0.zip -d app/code/Orange35/CatalogImportExport
rm -f 1.0.0.zip
php bin/magento module:enable Orange35_CatalogImportExport
php bin/magento setup:upgrade
Manual installation using git
cd ~/public_html/
mkdir -p app/code/Orange35
cd app/code/Orange35/
git clone https://github.com/orange35/magento2-catalog-import-export CatalogImportExport
cd -
php bin/magento module:enable Orange35_CatalogImportExport
php bin/magento setup:upgrade