├── Block └── Adminhtml │ ├── Attribute │ └── Edit │ │ └── Options │ │ └── Descriptions.php │ └── Product │ └── Attribute │ └── Edit │ └── Tabs.php ├── LICENSE.txt ├── Model ├── Entity │ └── Attribute.php ├── Product │ └── Type │ │ └── Configurable │ │ └── Attribute.php └── ResourceModel │ └── Entity │ └── Attribute.php ├── Observer └── CatalogAttributeSaveAfterObserver.php ├── Plugin └── Model │ └── ConfigurableAttributeDataPlugin.php ├── README.md ├── Setup └── InstallSchema.php ├── composer.json ├── docs └── screenshots │ └── admin_edit_attribute_descriptions.png ├── etc ├── adminhtml │ └── events.xml ├── di.xml └── module.xml ├── registration.php └── view └── adminhtml ├── layout └── catalog_product_attribute_edit.xml └── templates └── catalog └── product └── attribute └── descriptions.phtml /Block/Adminhtml/Attribute/Edit/Options/Descriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Block/Adminhtml/Attribute/Edit/Options/Descriptions.php -------------------------------------------------------------------------------- /Block/Adminhtml/Product/Attribute/Edit/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Block/Adminhtml/Product/Attribute/Edit/Tabs.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Model/Entity/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Model/Entity/Attribute.php -------------------------------------------------------------------------------- /Model/Product/Type/Configurable/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Model/Product/Type/Configurable/Attribute.php -------------------------------------------------------------------------------- /Model/ResourceModel/Entity/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Model/ResourceModel/Entity/Attribute.php -------------------------------------------------------------------------------- /Observer/CatalogAttributeSaveAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Observer/CatalogAttributeSaveAfterObserver.php -------------------------------------------------------------------------------- /Plugin/Model/ConfigurableAttributeDataPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Plugin/Model/ConfigurableAttributeDataPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/README.md -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/composer.json -------------------------------------------------------------------------------- /docs/screenshots/admin_edit_attribute_descriptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/docs/screenshots/admin_edit_attribute_descriptions.png -------------------------------------------------------------------------------- /etc/adminhtml/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/etc/adminhtml/events.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/catalog_product_attribute_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/view/adminhtml/layout/catalog_product_attribute_edit.xml -------------------------------------------------------------------------------- /view/adminhtml/templates/catalog/product/attribute/descriptions.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmatthew/magento2-attribute-description/HEAD/view/adminhtml/templates/catalog/product/attribute/descriptions.phtml --------------------------------------------------------------------------------