├── Api ├── CustomDescriptionRepositoryInterface.php └── Data │ └── CustomDescriptionInterface.php ├── Block └── Catalog │ └── Product │ └── View │ └── CustomDescription.php ├── CHANGELOG-1.0.md ├── CHANGELOG-2.0.md ├── CHANGELOG-2.1.md ├── CHANGELOG-2.2.md ├── CHANGELOG-2.3.md ├── Controller └── Adminhtml │ └── File │ └── Upload.php ├── Helper └── Data.php ├── Model ├── CustomDescription.php ├── CustomDescriptionRepository.php └── Resource │ ├── CustomDescription.php │ ├── CustomDescription │ └── Collection.php │ └── CustomDescriptionBatchProcessor.php ├── Plugin └── Adminhtml │ └── ProductSave.php ├── README.md ├── Setup ├── InstallSchema.php └── UpgradeSchema.php ├── Ui └── DataProvider │ └── Product │ └── Form │ └── Modifier │ └── CustomDescription.php ├── composer.json ├── etc ├── adminhtml │ ├── di.xml │ └── routes.xml ├── di.xml └── module.xml ├── registration.php └── view └── frontend ├── layout └── catalog_product_view.xml └── templates └── catalog └── product └── view └── custom-description.phtml /Api/CustomDescriptionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Api/CustomDescriptionRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/CustomDescriptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Api/Data/CustomDescriptionInterface.php -------------------------------------------------------------------------------- /Block/Catalog/Product/View/CustomDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Block/Catalog/Product/View/CustomDescription.php -------------------------------------------------------------------------------- /CHANGELOG-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/CHANGELOG-1.0.md -------------------------------------------------------------------------------- /CHANGELOG-2.0.md: -------------------------------------------------------------------------------- 1 | # Changelog for 2.0 versions 2 | 3 | ## [2.0.0] 13-10-2017 4 | 5 | * Magento 2.1.x compatibility 6 | -------------------------------------------------------------------------------- /CHANGELOG-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/CHANGELOG-2.1.md -------------------------------------------------------------------------------- /CHANGELOG-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/CHANGELOG-2.2.md -------------------------------------------------------------------------------- /CHANGELOG-2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/CHANGELOG-2.3.md -------------------------------------------------------------------------------- /Controller/Adminhtml/File/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Controller/Adminhtml/File/Upload.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Model/CustomDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Model/CustomDescription.php -------------------------------------------------------------------------------- /Model/CustomDescriptionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Model/CustomDescriptionRepository.php -------------------------------------------------------------------------------- /Model/Resource/CustomDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Model/Resource/CustomDescription.php -------------------------------------------------------------------------------- /Model/Resource/CustomDescription/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Model/Resource/CustomDescription/Collection.php -------------------------------------------------------------------------------- /Model/Resource/CustomDescriptionBatchProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Model/Resource/CustomDescriptionBatchProcessor.php -------------------------------------------------------------------------------- /Plugin/Adminhtml/ProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Plugin/Adminhtml/ProductSave.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/README.md -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /Setup/UpgradeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Setup/UpgradeSchema.php -------------------------------------------------------------------------------- /Ui/DataProvider/Product/Form/Modifier/CustomDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/Ui/DataProvider/Product/Form/Modifier/CustomDescription.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/templates/catalog/product/view/custom-description.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowdogApps/module-product-custom-description/HEAD/view/frontend/templates/catalog/product/view/custom-description.phtml --------------------------------------------------------------------------------