Skip to content

update README.md for Downloadable, DownloadableGraphQl, DownloadableImportExport #36540

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 2.4-develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion app/code/Magento/Downloadable/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,50 @@
Magento_Downloadable module introduces new product type in the Magento application called Downloadable Product.
# Magento_Downloadable

**Magento_Downloadable** module introduces new product type in the Magento application called Downloadable Product.
This module is designed to extend existing functionality of Magento_Catalog module by adding new product type.

The module interacts with the following layout handles:

`view/base/layout` directory:
The module interacts with the following layout handles:

`view/adminhtml/layout` directory:
- `catalog_product_downloadable.xml`
- `catalog_product_simple.xml`
- `catalog_product_view_type_downloadable.xml`
- `catalog_product_virtual.xml`
- `customer_index_wishlist.xml`
- `downloadable_items.xml`
- `sales_order_creditmemo_new.xml`
- `sales_order_creditmemo_updateqty.xml`
- `sales_order_creditmemo_view.xml`
- `sales_order_invoice_new.xml`
- `sales_order_invoice_updateqty.xml`
- `sales_order_invoice_view.xml`
- `sales_order_view.xml`
The module interacts with the following layout handles in the `view/frontend/layout` directory:
- `catalog_product_view_type_downloadable.xml`
- `checkout_cart_configure_type_downloadable.xml`
- `checkout_cart_item_renderers.xml`
- `checkout_onepage_review_item_renderers.xml`
- `checkout_onepage_success.xml`
- `customer_account.xml`
- `downloadable_customer_products.xml`
- `multishipping_checkout_success.xml`
- `sales_email_order_creditmemo_renderers.xml`
- `sales_email_order_invoice_renderers.xml`
- `sales_email_order_renderers.xml`
- `sales_order_creditmemo_renderers.xml`
- `sales_order_invoice_renderers.xml`
- `sales_order_item_renderers.xml`
- `sales_order_print_creditmemo_renderers.xml`
- `sales_order_print_invoice_renderers.xml`
- `sales_order_print_renderers.xml`

## Extensibility

Extension developers can interact with the Magento_Csp module. For more information about the Magento extension mechanism, see [Magento plugins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).

[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_Csp module.

A lot of functionality in the module is on JavaScript, use [mixins](https://devdocs.magento.com/guides/v2.4/javascript-dev-guide/javascript/js_mixins.html) to extend it.
9 changes: 9 additions & 0 deletions app/code/Magento/DownloadableGraphQl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,12 @@

**DownloadableGraphQl** provides type and resolver information for the GraphQl module
to generate downloadable product information.

## Extensibility

Extension developers can interact with the Magento_Csp module. For more information about the Magento extension mechanism, see [Magento plugins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).

[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_Csp module.

A lot of functionality in the module is on JavaScript, use [mixins](https://devdocs.magento.com/guides/v2.4/javascript-dev-guide/javascript/js_mixins.html) to extend it.

11 changes: 11 additions & 0 deletions app/code/Magento/DownloadableImportExport/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# Magento_DownloadableImportExport

The Magento_DownloadableImportExport module handles the import and export of the downloadable products.

## Extensibility

Extension developers can interact with the Magento_Csp module. For more information about the Magento extension mechanism, see [Magento plugins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).

[The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_Csp module.

A lot of functionality in the module is on JavaScript, use [mixins](https://devdocs.magento.com/guides/v2.4/javascript-dev-guide/javascript/js_mixins.html) to extend it.