├── .all-contributorsrc ├── .gitignore ├── Exception ├── ImportException.php ├── RuntimeException.php └── ValidationException.php ├── Files └── Sample │ └── catalog_category.csv ├── LICENSE.md ├── Model ├── Adapters │ ├── ArrayAdapter.php │ ├── ArrayAdapterFactory.php │ ├── ImportAdapterFactoryInterface.php │ ├── NestedArrayAdapter.php │ └── NestedArrayAdapterFactory.php ├── Config.php ├── Config │ └── Source │ │ ├── Behavior.php │ │ └── ValidationStrategy.php ├── Enterprise │ ├── CategoryImportVersion.php │ └── VersionFeaturesFactory.php ├── Import │ ├── Category.php │ └── Proxy │ │ └── Category │ │ └── ResourceModel.php └── Importer.php ├── README.md ├── ResourceModel └── ImportData.php ├── Service └── ImportErrorService.php ├── composer.json ├── doc ├── Category.md ├── Fieldnames.rst ├── Installation.md ├── Makefile ├── Products.md ├── conf.py ├── fields.csv ├── index.rst └── make.bat ├── etc ├── adminhtml │ └── system.xml ├── config.xml ├── di.xml ├── import.xml └── module.xml └── registration.php /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/.gitignore -------------------------------------------------------------------------------- /Exception/ImportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Exception/ImportException.php -------------------------------------------------------------------------------- /Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Exception/ValidationException.php -------------------------------------------------------------------------------- /Files/Sample/catalog_category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Files/Sample/catalog_category.csv -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Model/Adapters/ArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Adapters/ArrayAdapter.php -------------------------------------------------------------------------------- /Model/Adapters/ArrayAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Adapters/ArrayAdapterFactory.php -------------------------------------------------------------------------------- /Model/Adapters/ImportAdapterFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Adapters/ImportAdapterFactoryInterface.php -------------------------------------------------------------------------------- /Model/Adapters/NestedArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Adapters/NestedArrayAdapter.php -------------------------------------------------------------------------------- /Model/Adapters/NestedArrayAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Adapters/NestedArrayAdapterFactory.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Source/Behavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Config/Source/Behavior.php -------------------------------------------------------------------------------- /Model/Config/Source/ValidationStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Config/Source/ValidationStrategy.php -------------------------------------------------------------------------------- /Model/Enterprise/CategoryImportVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Enterprise/CategoryImportVersion.php -------------------------------------------------------------------------------- /Model/Enterprise/VersionFeaturesFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Enterprise/VersionFeaturesFactory.php -------------------------------------------------------------------------------- /Model/Import/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Import/Category.php -------------------------------------------------------------------------------- /Model/Import/Proxy/Category/ResourceModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Import/Proxy/Category/ResourceModel.php -------------------------------------------------------------------------------- /Model/Importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Model/Importer.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/README.md -------------------------------------------------------------------------------- /ResourceModel/ImportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/ResourceModel/ImportData.php -------------------------------------------------------------------------------- /Service/ImportErrorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/Service/ImportErrorService.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/composer.json -------------------------------------------------------------------------------- /doc/Category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/Category.md -------------------------------------------------------------------------------- /doc/Fieldnames.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/Fieldnames.rst -------------------------------------------------------------------------------- /doc/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/Installation.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/Products.md -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/fields.csv -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/doc/make.bat -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/etc/import.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/FireGento_FastSimpleImport2/HEAD/registration.php --------------------------------------------------------------------------------