yireo/magento2-easier-extension-attributes

N/A

Installs: 186

Dependents: 1

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 1

Type:magento2-module

dev-master 2022-08-26 11:21 UTC

This package is auto-updated.

Last update: 2024-04-22 00:16:51 UTC


README

This module tries to make implementing Magento 2 Extension Attributes easier by offering generic DI plugins that hook into various repositories.

Current features

  • Creation of plugins for various entities (See etc/di.xml for a listing of current repositories supported)
  • Saving simple Extension Attributes in the table of the original entity (by copying the Extension Attribute to a data property of the entity and vice versa)

Example

For an example implementation, see YireoTraining_EasierExtensionAttributesExample, more specifically its easier_extension_attributes.xml which complements the regular extension_attributes.xml. For extending the MSI Source entity, it adds a column example to the source database table, which is then automatically filled with the Yireo EasierExtensionAttributes module.

TODO

  • Integration tests for getList, save and getById
  • Integration tests for additional repositories
  • Connect your own simple Extension Attribute with a separate table
  • Connect your own Extension Attribute with a custom repository
  • Connect your own complex Extension Attribute
  • Try to merge extension_attributes.xml with easier_extension_attributes.xml to cleanup code
  • Automatically add extension attributes to frontend and backend forms