├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── n98-magerun.yaml ├── phpunit.xml ├── src └── FIREGENTO │ └── Magento │ └── Command │ ├── AbstractCommand.php │ └── Eav │ ├── AbstractCommand.php │ ├── CheckAttributeModelsCommand.php │ ├── CleanUpAttributesAndValuesWithoutParentCommand.php │ ├── CleanUpEntityTypeValuesCommand.php │ ├── CleanUpProductAttributeSetValuesCommand.php │ ├── CleanUpRemovedStoreViewValuesCommand.php │ ├── CleanUpScopeValuesCommand.php │ ├── MessdataCommand.php │ ├── RemoveUnusedAttributesCommand.php │ ├── RemoveUnusedMediaCommand.php │ ├── RestoreUseDefaultValueAttributesCommand.php │ └── RestoreUseDefaultValueConfigCommand.php └── tests └── RemoveUnusedMediaCommandTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/composer.json -------------------------------------------------------------------------------- /n98-magerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/n98-magerun.yaml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/AbstractCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CheckAttributeModelsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CheckAttributeModelsCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CleanUpAttributesAndValuesWithoutParentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CleanUpAttributesAndValuesWithoutParentCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CleanUpEntityTypeValuesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CleanUpEntityTypeValuesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CleanUpProductAttributeSetValuesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CleanUpProductAttributeSetValuesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CleanUpRemovedStoreViewValuesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CleanUpRemovedStoreViewValuesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/CleanUpScopeValuesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/CleanUpScopeValuesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/MessdataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/MessdataCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/RemoveUnusedAttributesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/RemoveUnusedAttributesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/RemoveUnusedMediaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/RemoveUnusedMediaCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/RestoreUseDefaultValueAttributesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/RestoreUseDefaultValueAttributesCommand.php -------------------------------------------------------------------------------- /src/FIREGENTO/Magento/Command/Eav/RestoreUseDefaultValueConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/src/FIREGENTO/Magento/Command/Eav/RestoreUseDefaultValueConfigCommand.php -------------------------------------------------------------------------------- /tests/RemoveUnusedMediaCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/EAVCleaner/HEAD/tests/RemoveUnusedMediaCommandTest.php --------------------------------------------------------------------------------