├── .gitignore ├── README.markdown ├── composer.json ├── modman ├── src ├── app │ ├── code │ │ └── community │ │ │ └── AvS │ │ │ └── FastSimpleImport │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── Model │ │ │ ├── ArrayAdapter.php │ │ │ ├── Import.php │ │ │ ├── Import │ │ │ │ └── Entity │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ └── Product.php │ │ │ │ │ ├── Customer.php │ │ │ │ │ ├── Customer │ │ │ │ │ └── Address.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ └── Type │ │ │ │ │ ├── Bundle.php │ │ │ │ │ ├── Configurable.php │ │ │ │ │ ├── Downloadable.php │ │ │ │ │ ├── Grouped.php │ │ │ │ │ ├── Simple.php │ │ │ │ │ └── Virtual.php │ │ │ ├── NestedArrayAdapter.php │ │ │ └── System │ │ │ │ └── Config │ │ │ │ └── Source │ │ │ │ └── Product │ │ │ │ ├── Attribute │ │ │ │ ├── Image.php │ │ │ │ ├── Multiselect.php │ │ │ │ └── Select.php │ │ │ │ ├── Attributeset.php │ │ │ │ ├── Status.php │ │ │ │ ├── Taxclass.php │ │ │ │ ├── Visibility.php │ │ │ │ └── Website.php │ │ │ ├── Test │ │ │ ├── Config │ │ │ │ ├── DefaultValueTest.php │ │ │ │ └── MainTest.php │ │ │ ├── Model │ │ │ │ ├── Category │ │ │ │ │ ├── Import.php │ │ │ │ │ ├── MainTest.php │ │ │ │ │ └── MainTest │ │ │ │ │ │ └── providers │ │ │ │ │ │ ├── createCategoryTree.yaml │ │ │ │ │ │ └── deleteSingleCategory.yaml │ │ │ │ └── Product │ │ │ │ │ ├── BundleTest.php │ │ │ │ │ ├── BundleTest │ │ │ │ │ ├── expectations │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ └── providers │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ ├── ConfigurableTest.php │ │ │ │ │ ├── ConfigurableTest │ │ │ │ │ ├── expectations │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ └── providers │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ ├── GroupedTest.php │ │ │ │ │ ├── GroupedTest │ │ │ │ │ ├── expectations │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ └── providers │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ ├── NestedArrayTest.php │ │ │ │ │ ├── NestedArrayTest │ │ │ │ │ ├── expectations │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ └── providers │ │ │ │ │ │ └── createProduct.yaml │ │ │ │ │ ├── SimpleTest.php │ │ │ │ │ └── SimpleTest │ │ │ │ │ ├── expectations │ │ │ │ │ ├── createProduct.yaml │ │ │ │ │ ├── createProductWithDefault.yaml │ │ │ │ │ └── updateProduct.yaml │ │ │ │ │ ├── fixtures │ │ │ │ │ └── defaultValues.yaml │ │ │ │ │ └── providers │ │ │ │ │ ├── createProduct.yaml │ │ │ │ │ ├── createProductWithDefault.yaml │ │ │ │ │ └── updateProduct.yaml │ │ │ └── fixtures │ │ │ │ └── defaultEnvironment.yaml │ │ │ └── etc │ │ │ ├── adminhtml.xml │ │ │ ├── config.xml │ │ │ └── system.xml │ ├── etc │ │ └── modules │ │ │ └── AvS_FastSimpleImport.xml │ └── locale │ │ └── de_DE │ │ └── AvS_FastSimpleImport.csv └── shell │ └── import.php └── test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/.gitignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/README.markdown -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/modman -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Helper/Data.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/ArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/ArrayAdapter.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Category/Product.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Customer.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Customer/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Customer/Address.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Bundle.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Configurable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Configurable.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Downloadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Downloadable.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Grouped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Grouped.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Simple.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Virtual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/Import/Entity/Product/Type/Virtual.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/NestedArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/NestedArrayAdapter.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Image.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Multiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Multiselect.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attribute/Select.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attributeset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Attributeset.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Status.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Taxclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Taxclass.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Visibility.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Model/System/Config/Source/Product/Website.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Config/DefaultValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Config/DefaultValueTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Config/MainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Config/MainTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/Import.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest/providers/createCategoryTree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest/providers/createCategoryTree.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest/providers/deleteSingleCategory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Category/MainTest/providers/deleteSingleCategory.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest/expectations/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest/expectations/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest/providers/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/BundleTest/providers/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest/expectations/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest/expectations/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest/providers/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/ConfigurableTest/providers/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest/expectations/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest/expectations/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest/providers/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/GroupedTest/providers/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest/expectations/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest/expectations/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest/providers/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/NestedArrayTest/providers/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest.php -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/createProductWithDefault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/createProductWithDefault.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/updateProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/expectations/updateProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/fixtures/defaultValues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/fixtures/defaultValues.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/createProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/createProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/createProductWithDefault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/createProductWithDefault.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/updateProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/Model/Product/SimpleTest/providers/updateProduct.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/Test/fixtures/defaultEnvironment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/Test/fixtures/defaultEnvironment.yaml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/etc/adminhtml.xml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/etc/config.xml -------------------------------------------------------------------------------- /src/app/code/community/AvS/FastSimpleImport/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/code/community/AvS/FastSimpleImport/etc/system.xml -------------------------------------------------------------------------------- /src/app/etc/modules/AvS_FastSimpleImport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/etc/modules/AvS_FastSimpleImport.xml -------------------------------------------------------------------------------- /src/app/locale/de_DE/AvS_FastSimpleImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/app/locale/de_DE/AvS_FastSimpleImport.csv -------------------------------------------------------------------------------- /src/shell/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/src/shell/import.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avstudnitz/AvS_FastSimpleImport/HEAD/test.php --------------------------------------------------------------------------------