From c2783e612ae47a22e82af2226e9a4bb876dd5e98 Mon Sep 17 00:00:00 2001 From: CJ Date: Wed, 30 Dec 2020 15:55:44 +0530 Subject: [PATCH 01/21] updated readme file --- app/code/Magento/Tax/README.md | 196 +++++++++++++++++---- app/code/Magento/TaxGraphQl/README.md | 14 +- app/code/Magento/TaxImportExport/README.md | 22 +++ app/code/Magento/Theme/README.md | 111 +++++++++++- app/code/Magento/ThemeGraphQl/README.md | 13 +- app/code/Magento/Tinymce3/README.md | 14 +- app/code/Magento/Translation/README.md | 40 ++++- 7 files changed, 367 insertions(+), 43 deletions(-) create mode 100644 app/code/Magento/TaxImportExport/README.md diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md index f449b1c6c6cba..1ad964a7e4702 100644 --- a/app/code/Magento/Tax/README.md +++ b/app/code/Magento/Tax/README.md @@ -1,32 +1,164 @@ -# Overview -## Purpose of module -The Magento_Tax module provides the calculations needed to compute the consumption tax on goods and services. - -The Magento_Tax module includes the following: -* configuration of the tax rates and rules to apply -* configuration of tax classes that apply to: -** taxation on products -** taxation on shipping charges -** taxation on gift options (example: gift wrapping) -* specification whether the consumption tax is "sales & use" (typically product prices are loaded without any tax) or "VAT" (typically product prices are loaded including tax) -* specification of whether the tax total line can be toggled to display the tax details/subtotals -* display of prices (presented with tax, without tax, or both with and without) - -The Magento_Tax module also handles special cases when computing tax, such as: -* determining the tax on an individual item (for example, one that is being returned) when the original tax has been computed on the entire shopping cart -** example country: United States -* being able to handle 2 or more tax rates that are applied separately (examples include a "luxury tax" on exclusive items) -* being able to handle a subsequent tax rate that is applied after a previous one is applied (a "tax on tax" situation, which recently was a part of Canadian tax law) - -# Deployment -## System requirements -The Magento_Tax module does not have any specific system requirements. - -Depending on how many tax rates and tax rules are being used, there might be consideration for the database size -Depending on the frequency of updating tax rates and tax rules, there might be consideration for the scheduling of these updates - -## Install -The Magento_Tax module is installed automatically (using the native Magento install mechanism) without any additional actions. - -## Uninstall -The Magento_Tax module should not be uninstalled; it is a required module. \ No newline at end of file +# Magento_Tax module + +The **Magento_Tax** module provides the calculations needed to compute the consumption tax on goods and services. + +The **Magento_Tax** module includes the following: +- Configuration of the tax rates and rules to apply. +- Configuration of tax classes that apply to: + - Taxation on products. + - Taxation on shipping charges. + - Taxation on gift options (example: gift wrapping). +- Specification whether the consumption tax is "sales & use" (typically product prices are loaded without any tax) or "VAT" (typically product prices are loaded including tax). +- Specification of whether the tax total line can be toggled to display the tax details/subtotals. +- Display of prices (presented with tax, without tax, or both with and without). + +The **Magento_Tax** module also handles special cases when computing tax, such as: +- Determining the tax on an individual item (for example, one that is being returned) when the original tax has been computed on the entire shopping cart. + - Example country: United States. +- Being able to handle 2 or more tax rates that are applied separately (examples include a "luxury tax" on exclusive items). +- Being able to handle a subsequent tax rate that is applied after a previous one is applied (a "tax on tax" situation, which recently was a part of Canadian tax law). + +## Installation details + +Before installing this module, note that the **Magento_Tax** is dependent on the following modules: + +- Magento_Catalog +- Magento_Checkout +- Magento_Config +- Magento_Customer +- Magento_Directory +- Magento_PageCache +- Magento_Quote +- Magento_Reports +- Magento_Sales +- Magento_Shipping +- Magento_Store +- Magento_User + +Before disabling or uninstalling this module, please consider the following dependencies: + +- Magento_TaxImportExport +- Magento_Weee + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). + +## Structure + +`CustomerData/` - Checkout totals js layout data provider +`Pricing/` - directory that contain tax adjustment. + +For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). + +## Extensibility + +Extension developers can interact with the **Magento_Tax** module. For more information about the Magento extension mechanism, see [Magento plug-ins](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_Tax** module. + +### Events + +The module dispatches the following events: + +- `adminhtml_cache_refresh_type` event in the `\Magento\Tax\Controller\Adminhtml\Tax\IgnoreTaxNotification::execute()` method. Parameters: + - `type` config is a cache refresh type. +- `tax_rate_data_fetch` event in the `\Magento\Tax\Model\Calculation::getRate()` method. Parameters: + - `request` is a Data object (`\Magento\Framework\DataObject` class). + - `sender` is a Calculation object (`\Magento\Tax\Model\Calculation` class). +- `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rule::afterSave()` method. +- `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rule::afterDelete()` method. +- `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rate::afterSave()` method. +- `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rate::afterDelete()` method. +- `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rate::deleteAllRates()` method. + +For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). + +### Layouts + +This module introduces the following layouts and layout handles in the directories: + +- `view/adminhtml/layout`: + - `sales_creditmemo_item_price` + - `sales_invoice_item_price` + - `sales_order_create_item_price` + - `sales_order_item_price` + - `tax_rate_block` + - `tax_rate_exportcsv` + - `tax_rate_exportxml` + - `tax_rate_index` + - `tax_rule_block` + - `tax_rule_edit` + - `tax_rule_index` +- `view/base/layout`: + - `catalog_product_prices` +- `view/frantend/layout`: + - `checkout_cart_index` + - `checkout_cart_sidebar_total_renderers` + - `checkout_index_index` + - `checkout_item_price_renderers` + - `sales_email_item_price` + - `sales_order_item_price` + +For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). + +### UI components + +You can extend a customer form and widgets using the configuration files located in the directories + +- `view/frontend/ui_component`: + - `widget_recently_compared` + - `widget_recently_viewed` + +For information about a UI component in Magento 2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). + +### Public APIs + +`\Magento\Tax\Api\OrderTaxManagementInterface`: + + - Get taxes applied to an order. + +`\Magento\Tax\Api\TaxAddressManagerInterface`: + + - Set default Tax Billing and Shipping address into customer session after address save. + - Set default Tax Shipping and Billing addresses into customer session after login. + +`\Magento\Tax\Api\TaxCalculationInterface`: + + - Calculate Tax. + - Get default rate request. + - Get rate request. + +`\Magento\Tax\Api\TaxClassManagementInterface`: + + - Get tax class id. + +`\Magento\Tax\Api\TaxClassRepositoryInterface`: + + - Get a tax class with the given tax class id. + - Retrieve tax classes which match a specific criterion. + - Create or update a Tax Class. + - Delete a tax class. + - Delete a tax class with the given tax class id. + +`\Magento\Tax\Api\TaxRateManagementInterface`: + + - Get rates by customerTaxClassId and productTaxClassId. + +`\Magento\Tax\Api\TaxRateRepositoryInterface`: + + - Create or update tax rate. + - Get a tax rate with the given tax rate id. + - Delete a tax rate with the given tax rate id. + - Retrieve tax rates which match a specific criterion. + - Delete a tax rate. + +`\Magento\Tax\Api\TaxRuleRepositoryInterface`: + + - Get TaxRule. + - Save TaxRule. + - Delete TaxRule. + - Delete a tax rule with the given rule id. + - Retrieve tax rules which match a specific criterion. + +[Learn detailed description of the Magento_Sales API.](https://devdocs.magento.com/guides/v2.4/mrg/ce/Sales/services.html) + +For information about a public API in Magento 2, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). diff --git a/app/code/Magento/TaxGraphQl/README.md b/app/code/Magento/TaxGraphQl/README.md index 2bb28f94219e0..4d818a5a6a004 100644 --- a/app/code/Magento/TaxGraphQl/README.md +++ b/app/code/Magento/TaxGraphQl/README.md @@ -1,4 +1,12 @@ -# TaxGraphQl +# Magento_TaxGraphQl module -**TaxGraphQl** provides type information for the GraphQl module -to generate tax fields for catalog and product information endpoints. +The **Magento_TaxGraphQl** module provides type information for the GraphQl module to generate tax fields for catalog and product information endpoints. + +## Installation details + +Before installing this module, note that the **Magento_TaxGraphQl** is dependent on the following modules: + +- Magento_CatalogGraphQl +- Magento_Tax + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). diff --git a/app/code/Magento/TaxImportExport/README.md b/app/code/Magento/TaxImportExport/README.md new file mode 100644 index 0000000000000..c34b68f9d74a0 --- /dev/null +++ b/app/code/Magento/TaxImportExport/README.md @@ -0,0 +1,22 @@ +# Magento_TaxImportExport module + +The **Magento_TaxImportExport** module enables magento to export and import tax. + +## Installation details + +Before installing this module, note that the **Magento_TaxImportExport** is dependent on the following modules: + +- Magento_Store +- Magento_Tax + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). + +### Layouts + +This module introduces the following layouts and layout handles in the directories: + +- `view/adminhtml/layout`: + - `tax_rate_block` + - `tax_rule_edit` + +For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md index 9035df6395263..bc1ccd259d740 100644 --- a/app/code/Magento/Theme/README.md +++ b/app/code/Magento/Theme/README.md @@ -1 +1,110 @@ -The Theme module contains common infrastructure that provides an ability to apply and use themes in Magento application. \ No newline at end of file +# Magento_Theme module + +The **Magento_Theme** module contains common infrastructure that provides an ability to apply and use themes in Magento application. + +## Installation details + +Before installing this module, note that the **Magento_Theme** is dependent on the following modules: + +- Magento_Cms +- Magento_Config +- Magento_Customer +- Magento_Directory +- Magento_Eav +- Magento_MediaStorage +- Magento_Store +- Magento_Widget + +Before disabling or uninstalling this module, please consider the following dependencies: + +- Magento_Backend +- Magento_Cms +- Magento_Eav +- Magento_MediaStorage +- Magento_Robots +- Magento_Swatches +- Magento_Vault + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). + +## Structure + +`CustomerData/` - directory contains messages section. + +For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). + +## Extensibility + +Extension developers can interact with the **Magento_Theme** module. For more information about the Magento extension mechanism, see [Magento plug-ins](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_Theme** module. + +### Events + +The module dispatches the following events: + +- `page_block_html_topmenu_gethtml_before` event in the `\Magento\Theme\Block\Html\Topmenu::getHtml()` method. Parameters: + - `menu` is a menu object (`\Magento\Framework\Data\Tree\Node` class). + - `block` is a Topmenu object (`\Magento\Theme\Block\Html\Topmenu` class). + - `request` is a request object (`\Magento\Framework\App\RequestInterface` class). +- `page_block_html_topmenu_gethtml_after` event in the `\Magento\Theme\Block\Html\Topmenu::getHtml()` method. Parameters: + - `menu` is a menu object (`\Magento\Framework\Data\Tree\Node` class). + - `transportObject` is a Transport object (`\Magento\Framework\DataObject` class). +- `admin_system_config_changed_section_design` event in the `\Magento\Theme\Model\Design\Config\Plugin::afterSave()` method. Parameters: + - `website` is a website object (`\Magento\Store\Api\Data\WebsiteInterface` class). + - `store` is a store object (`\Magento\Store\Api\Data\StoreInterface` class). +- `admin_system_config_changed_section_design` event in the `\Magento\Theme\Model\Design\Config\Plugin::afterDelete()` method. Parameters: + - `website` is a website object (`\Magento\Store\Api\Data\WebsiteInterface` class). + - `store` is a store object (`\Magento\Store\Api\Data\StoreInterface` class). +- `admin_system_config_changed_section_design` event in the `\Magento\Theme\Model\Config::assignToStore()` method. Parameters: + - `store` is a store object (`\Magento\Store\Api\Data\StoreInterface` class). + - `scope` is a store scope. + - `theme` is a theme object (`\Magento\Framework\View\Design\ThemeInterface` class). +- `assigned_theme_changed` event in the `\Magento\Theme\Observer\CheckThemeIsAssignedObserver::execute()` method. Parameters: + - `theme` is a theme object (`\Magento\Framework\View\Design\ThemeInterface` class). + +For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). + +### Layouts + +This module introduces the following layouts and layout handles in the directories: + +- `view/adminhtml/layout`: + - `adminhtml_system_design_theme_block` + - `adminhtml_system_design_theme_edit` + - `adminhtml_system_design_theme_grid` + - `adminhtml_system_design_theme_index` + - `adminhtml_system_design_wysiwyg_files_contents` + - `adminhtml_system_design_wysiwyg_files_index` + - `theme_design_config_edit` + - `theme_design_config_index` +- `view/frantend/layout`: + - `default` + - `default_head_blocks` + - `page_calendar` + - `print` + +For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). + +### UI components + +You can extend a customer form and widgets using the configuration files located in the directories + +- `view/adminhtml/ui_component`: + - `design_config_form` + - `design_config_listing` + - `design_theme_listing` + +For information about a UI component in Magento 2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). + +### Public APIs + +`\Magento\Theme\Api\DesignConfigRepositoryInterface`: + + - Get design settings by scope. + - Save design settings. + - Delete design settings. + +[Learn detailed description of the Magento_Sales API.](https://devdocs.magento.com/guides/v2.4/mrg/ce/Sales/services.html) + +For information about a public API in Magento 2, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). diff --git a/app/code/Magento/ThemeGraphQl/README.md b/app/code/Magento/ThemeGraphQl/README.md index 2b3d54d9b5735..9f6b975b17cb7 100644 --- a/app/code/Magento/ThemeGraphQl/README.md +++ b/app/code/Magento/ThemeGraphQl/README.md @@ -1,4 +1,11 @@ -# ThemeGraphQl +# Magento_ThemeGraphQl module -**ThemeGraphQl** provides type information for the GraphQl module -to generate theme fields information endpoints. +The **Magento_ThemeGraphQl** module provides type information for the GraphQl module to generate theme fields information endpoints. + +## Installation details + +Before installing this module, note that the **Magento_ThemeGraphQl** is dependent on the following modules: + +- Magento_StoreGraphQl + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). diff --git a/app/code/Magento/Tinymce3/README.md b/app/code/Magento/Tinymce3/README.md index 8e24c218171b6..633394da16e61 100644 --- a/app/code/Magento/Tinymce3/README.md +++ b/app/code/Magento/Tinymce3/README.md @@ -1 +1,13 @@ -We have updated the TinyMCE module to the latest available version, 4.6.4. TinyMCE v4.6.4 provides backwards-compatibility for modified editor modules to prevent the loss of functionality. The TinyMCE3 module is now deprecated and will be removed in a future release. \ No newline at end of file +# Magento_Tinymce3 module + +The **Magento_Tinymce3** module provides backwards-compatibility for modified editor modules to prevent the loss of functionality. + +## Installation details + +Before installing this module, note that the **Magento_Tinymce3** is dependent on the following modules: + +- Magento_Ui +- Magento_Variable +- Magento_Widget + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). diff --git a/app/code/Magento/Translation/README.md b/app/code/Magento/Translation/README.md index 55578a991df3c..d6b8e51308082 100644 --- a/app/code/Magento/Translation/README.md +++ b/app/code/Magento/Translation/README.md @@ -1,4 +1,38 @@ -# Translation +# Magento_Translation module -**Translation** enables localization of a store for multiple regions and markets. -Also provides the inline translation tool. +The **Magento_Translation** module enables localization of a store for multiple regions and markets. + +The **Magento_Translation** module provides the inline translation tool. + +## Installation details + +Before installing this module, note that the **Magento_Translation** is dependent on the following modules: + +- Magento_Developer +- Magento_Store +- Magento_Theme + +Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). + +## Structure + +`App/` - the directory that contain Translation class which hold all translation sources and merge them. + +For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). + +### Events + +The module dispatches the following events: + + - `adminhtml_cache_flush_system` event in the `\Magento\Translation\Model\Inline\CacheManager::updateAndGetTranslations()` method. + +For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). + +### Layouts + +This module introduces the following layouts and layout handles in the directories: + +- `view/frantend/layout`: + - `default` + +For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). From 0818699124bda65cee03edf2f36ef074d64adb36 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:21:26 +0530 Subject: [PATCH 02/21] Removed boldness --- app/code/Magento/Tax/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md index 1ad964a7e4702..0afd2a1addb05 100644 --- a/app/code/Magento/Tax/README.md +++ b/app/code/Magento/Tax/README.md @@ -1,8 +1,8 @@ # Magento_Tax module -The **Magento_Tax** module provides the calculations needed to compute the consumption tax on goods and services. +The Magento_Tax module provides the calculations needed to compute the consumption tax on goods and services. -The **Magento_Tax** module includes the following: +The Magento_Tax module includes the following: - Configuration of the tax rates and rules to apply. - Configuration of tax classes that apply to: - Taxation on products. @@ -12,7 +12,7 @@ The **Magento_Tax** module includes the following: - Specification of whether the tax total line can be toggled to display the tax details/subtotals. - Display of prices (presented with tax, without tax, or both with and without). -The **Magento_Tax** module also handles special cases when computing tax, such as: +The Magento_Tax module also handles special cases when computing tax, such as: - Determining the tax on an individual item (for example, one that is being returned) when the original tax has been computed on the entire shopping cart. - Example country: United States. - Being able to handle 2 or more tax rates that are applied separately (examples include a "luxury tax" on exclusive items). @@ -20,7 +20,7 @@ The **Magento_Tax** module also handles special cases when computing tax, such a ## Installation details -Before installing this module, note that the **Magento_Tax** is dependent on the following modules: +Before installing this module, note that the Magento_Tax is dependent on the following modules: - Magento_Catalog - Magento_Checkout @@ -40,7 +40,7 @@ Before disabling or uninstalling this module, please consider the following depe - Magento_TaxImportExport - Magento_Weee -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure @@ -51,9 +51,9 @@ For information about a typical file structure of a module in Magento 2, see [Mo ## Extensibility -Extension developers can interact with the **Magento_Tax** module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html). +Extension developers can interact with the Magento_Tax module. For more information about the Magento extension mechanism, see [Magento plug-ins](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_Tax** module. +[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_Tax module. ### Events From 536a6ff18ec168d09fd84ddbb6306ba56fc4a0b0 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:22:04 +0530 Subject: [PATCH 03/21] Update README.md --- app/code/Magento/TaxGraphQl/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/TaxGraphQl/README.md b/app/code/Magento/TaxGraphQl/README.md index 4d818a5a6a004..4d33663baa787 100644 --- a/app/code/Magento/TaxGraphQl/README.md +++ b/app/code/Magento/TaxGraphQl/README.md @@ -1,12 +1,12 @@ # Magento_TaxGraphQl module -The **Magento_TaxGraphQl** module provides type information for the GraphQl module to generate tax fields for catalog and product information endpoints. +The Magento_TaxGraphQl module provides type information for the GraphQl module to generate tax fields for catalog and product information endpoints. ## Installation details -Before installing this module, note that the **Magento_TaxGraphQl** is dependent on the following modules: +Before installing this module, note that the Magento_TaxGraphQl is dependent on the following modules: - Magento_CatalogGraphQl - Magento_Tax -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From 91993f7f24ae3c7748c17eb10febd7e598cbb4cd Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:22:54 +0530 Subject: [PATCH 04/21] Update README.md --- app/code/Magento/TaxImportExport/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/TaxImportExport/README.md b/app/code/Magento/TaxImportExport/README.md index c34b68f9d74a0..c196557391037 100644 --- a/app/code/Magento/TaxImportExport/README.md +++ b/app/code/Magento/TaxImportExport/README.md @@ -1,15 +1,15 @@ # Magento_TaxImportExport module -The **Magento_TaxImportExport** module enables magento to export and import tax. +The Magento_TaxImportExport module enables magento to export and import tax. ## Installation details -Before installing this module, note that the **Magento_TaxImportExport** is dependent on the following modules: +Before installing this module, note that the Magento_TaxImportExport is dependent on the following modules: - Magento_Store - Magento_Tax -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ### Layouts From d4a1dfe8c23fdda933f8ae5d984f0bc3bb728699 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:24:09 +0530 Subject: [PATCH 05/21] Update README.md --- app/code/Magento/Theme/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md index bc1ccd259d740..33df62b6434ab 100644 --- a/app/code/Magento/Theme/README.md +++ b/app/code/Magento/Theme/README.md @@ -1,10 +1,10 @@ # Magento_Theme module -The **Magento_Theme** module contains common infrastructure that provides an ability to apply and use themes in Magento application. +The Magento_Theme module contains common infrastructure that provides an ability to apply and use themes in Magento application. ## Installation details -Before installing this module, note that the **Magento_Theme** is dependent on the following modules: +Before installing this module, note that the Magento_Theme is dependent on the following modules: - Magento_Cms - Magento_Config @@ -25,7 +25,7 @@ Before disabling or uninstalling this module, please consider the following depe - Magento_Swatches - Magento_Vault -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure @@ -35,9 +35,9 @@ For information about a typical file structure of a module in Magento 2, see [Mo ## Extensibility -Extension developers can interact with the **Magento_Theme** module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html). +Extension developers can interact with the Magento_Theme module. For more information about the Magento extension mechanism, see [Magento plug-ins](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_Theme** module. +[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_Theme module. ### Events From 36d7b598cc965c9d4803844669ad9424a713e505 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:24:53 +0530 Subject: [PATCH 06/21] Update README.md --- app/code/Magento/ThemeGraphQl/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/ThemeGraphQl/README.md b/app/code/Magento/ThemeGraphQl/README.md index 9f6b975b17cb7..32e9320334b9d 100644 --- a/app/code/Magento/ThemeGraphQl/README.md +++ b/app/code/Magento/ThemeGraphQl/README.md @@ -1,11 +1,11 @@ # Magento_ThemeGraphQl module -The **Magento_ThemeGraphQl** module provides type information for the GraphQl module to generate theme fields information endpoints. +The Magento_ThemeGraphQl module provides type information for the GraphQl module to generate theme fields information endpoints. ## Installation details -Before installing this module, note that the **Magento_ThemeGraphQl** is dependent on the following modules: +Before installing this module, note that the Magento_ThemeGraphQl is dependent on the following modules: - Magento_StoreGraphQl -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From 9e8fb652113003cc979d64eff1b205fb62d5f9d2 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:25:25 +0530 Subject: [PATCH 07/21] Update README.md --- app/code/Magento/Tinymce3/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Tinymce3/README.md b/app/code/Magento/Tinymce3/README.md index 633394da16e61..2d2d5ecbab883 100644 --- a/app/code/Magento/Tinymce3/README.md +++ b/app/code/Magento/Tinymce3/README.md @@ -1,13 +1,13 @@ # Magento_Tinymce3 module -The **Magento_Tinymce3** module provides backwards-compatibility for modified editor modules to prevent the loss of functionality. +The Magento_Tinymce3 module provides backwards-compatibility for modified editor modules to prevent the loss of functionality. ## Installation details -Before installing this module, note that the **Magento_Tinymce3** is dependent on the following modules: +Before installing this module, note that the Magento_Tinymce3 is dependent on the following modules: - Magento_Ui - Magento_Variable - Magento_Widget -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From 3ac3bfad9704dda062e509afc7c7d4a1ad4b84cb Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:26:20 +0530 Subject: [PATCH 08/21] Update README.md --- app/code/Magento/Translation/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/code/Magento/Translation/README.md b/app/code/Magento/Translation/README.md index d6b8e51308082..5554b78e76be3 100644 --- a/app/code/Magento/Translation/README.md +++ b/app/code/Magento/Translation/README.md @@ -1,18 +1,18 @@ # Magento_Translation module -The **Magento_Translation** module enables localization of a store for multiple regions and markets. +The Magento_Translation module enables localization of a store for multiple regions and markets. -The **Magento_Translation** module provides the inline translation tool. +The Magento_Translation module provides the inline translation tool. ## Installation details -Before installing this module, note that the **Magento_Translation** is dependent on the following modules: +Before installing this module, note that the Magento_Translation is dependent on the following modules: - Magento_Developer - Magento_Store - Magento_Theme -Please find here [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure From 06d8dd974b8cff1408265e3a220b8a78be867416 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:33:19 +0530 Subject: [PATCH 09/21] Update README.md --- app/code/Magento/Tax/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md index 0afd2a1addb05..6259e655739f1 100644 --- a/app/code/Magento/Tax/README.md +++ b/app/code/Magento/Tax/README.md @@ -35,7 +35,7 @@ Before installing this module, note that the Magento_Tax is dependent on the fol - Magento_Store - Magento_User -Before disabling or uninstalling this module, please consider the following dependencies: +Before disabling or uninstalling this module, note the following dependencies: - Magento_TaxImportExport - Magento_Weee From 1537002a0cd63465a4712fae5cb611c60516dcbb Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:34:01 +0530 Subject: [PATCH 10/21] Update README.md --- app/code/Magento/Theme/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md index 33df62b6434ab..33f9a18f88f1c 100644 --- a/app/code/Magento/Theme/README.md +++ b/app/code/Magento/Theme/README.md @@ -15,7 +15,7 @@ Before installing this module, note that the Magento_Theme is dependent on the f - Magento_Store - Magento_Widget -Before disabling or uninstalling this module, please consider the following dependencies: +Before disabling or uninstalling this module, note the following dependencies: - Magento_Backend - Magento_Cms From 50bc337df14e21aca7cda855cac80ea25c3ba586 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:40:48 +0530 Subject: [PATCH 11/21] Update README.md --- app/code/Magento/Tax/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md index 6259e655739f1..acc6d1eed083b 100644 --- a/app/code/Magento/Tax/README.md +++ b/app/code/Magento/Tax/README.md @@ -47,7 +47,7 @@ Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento `CustomerData/` - Checkout totals js layout data provider `Pricing/` - directory that contain tax adjustment. -For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). +For information about a typical file structure of a module, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). ## Extensibility @@ -70,7 +70,7 @@ The module dispatches the following events: - `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rate::afterDelete()` method. - `tax_settings_change_after` event in the `\Magento\Tax\Model\Calculation\Rate::deleteAllRates()` method. -For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). +For information about the event, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). ### Layouts @@ -98,7 +98,7 @@ This module introduces the following layouts and layout handles in the directori - `sales_email_item_price` - `sales_order_item_price` -For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). +For more information about a layout, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). ### UI components @@ -108,7 +108,7 @@ You can extend a customer form and widgets using the configuration files located - `widget_recently_compared` - `widget_recently_viewed` -For information about a UI component in Magento 2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). +For information about a UI component, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). ### Public APIs @@ -161,4 +161,4 @@ For information about a UI component in Magento 2, see [Overview of UI component [Learn detailed description of the Magento_Sales API.](https://devdocs.magento.com/guides/v2.4/mrg/ce/Sales/services.html) -For information about a public API in Magento 2, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). +For information about a public API, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). From 1fc2225e25b95ccf84e1269645a8f1d67045440f Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:41:22 +0530 Subject: [PATCH 12/21] Update README.md --- app/code/Magento/TaxImportExport/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/TaxImportExport/README.md b/app/code/Magento/TaxImportExport/README.md index c196557391037..5fbe4cf57bba2 100644 --- a/app/code/Magento/TaxImportExport/README.md +++ b/app/code/Magento/TaxImportExport/README.md @@ -19,4 +19,4 @@ This module introduces the following layouts and layout handles in the directori - `tax_rate_block` - `tax_rule_edit` -For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). +For more information about a layout, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). From 5ed0a41cef6cac526997750a5b4757a9ca4f0fd1 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:42:09 +0530 Subject: [PATCH 13/21] Update README.md --- app/code/Magento/Theme/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md index 33f9a18f88f1c..a55c05a9ee6cb 100644 --- a/app/code/Magento/Theme/README.md +++ b/app/code/Magento/Theme/README.md @@ -31,7 +31,7 @@ Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento `CustomerData/` - directory contains messages section. -For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). +For information about a typical file structure of a module, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). ## Extensibility @@ -63,7 +63,7 @@ The module dispatches the following events: - `assigned_theme_changed` event in the `\Magento\Theme\Observer\CheckThemeIsAssignedObserver::execute()` method. Parameters: - `theme` is a theme object (`\Magento\Framework\View\Design\ThemeInterface` class). -For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). +For information about the event, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). ### Layouts @@ -84,7 +84,7 @@ This module introduces the following layouts and layout handles in the directori - `page_calendar` - `print` -For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). +For more information about a layout, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). ### UI components @@ -95,7 +95,7 @@ You can extend a customer form and widgets using the configuration files located - `design_config_listing` - `design_theme_listing` -For information about a UI component in Magento 2, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). +For information about a UI component, see [Overview of UI components](https://devdocs.magento.com/guides/v2.4/ui_comp_guide/bk-ui_comps.html). ### Public APIs @@ -107,4 +107,4 @@ For information about a UI component in Magento 2, see [Overview of UI component [Learn detailed description of the Magento_Sales API.](https://devdocs.magento.com/guides/v2.4/mrg/ce/Sales/services.html) -For information about a public API in Magento 2, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). +For information about a public API, see [Public interfaces & APIs](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/api-concepts.html). From 08363b2c8860029f49c87b162ca00ff235d02cf3 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 20:42:50 +0530 Subject: [PATCH 14/21] Update README.md --- app/code/Magento/Translation/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/Magento/Translation/README.md b/app/code/Magento/Translation/README.md index 5554b78e76be3..36ba8a9bfbd8c 100644 --- a/app/code/Magento/Translation/README.md +++ b/app/code/Magento/Translation/README.md @@ -18,7 +18,7 @@ Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento `App/` - the directory that contain Translation class which hold all translation sources and merge them. -For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). +For information about a typical file structure of a module, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure). ### Events @@ -26,7 +26,7 @@ The module dispatches the following events: - `adminhtml_cache_flush_system` event in the `\Magento\Translation\Model\Inline\CacheManager::updateAndGetTranslations()` method. -For information about the event system in Magento 2, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). +For information about the event, see [Events and observers](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/events-and-observers.html#events). ### Layouts @@ -35,4 +35,4 @@ This module introduces the following layouts and layout handles in the directori - `view/frantend/layout`: - `default` -For more information about a layout in Magento 2, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). +For more information about a layout, see the [Layout documentation](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html). From 00c96545a6196a1be48b7d8ae95f070b8a47f94e Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:10:09 +0530 Subject: [PATCH 15/21] Update README.md --- app/code/Magento/Tax/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md index acc6d1eed083b..451f1c8533a7b 100644 --- a/app/code/Magento/Tax/README.md +++ b/app/code/Magento/Tax/README.md @@ -40,7 +40,7 @@ Before disabling or uninstalling this module, note the following dependencies: - Magento_TaxImportExport - Magento_Weee -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure From 4cb7ea2f98a9f46c02c9486cb81c5f5cd21da041 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:10:24 +0530 Subject: [PATCH 16/21] Update README.md --- app/code/Magento/TaxGraphQl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/TaxGraphQl/README.md b/app/code/Magento/TaxGraphQl/README.md index 4d33663baa787..00b1c726552d4 100644 --- a/app/code/Magento/TaxGraphQl/README.md +++ b/app/code/Magento/TaxGraphQl/README.md @@ -9,4 +9,4 @@ Before installing this module, note that the Magento_TaxGraphQl is dependent on - Magento_CatalogGraphQl - Magento_Tax -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From bdfad3bcadfb086ec6cbce37d5bc5b3e5f0336bc Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:10:42 +0530 Subject: [PATCH 17/21] Update README.md --- app/code/Magento/TaxImportExport/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/TaxImportExport/README.md b/app/code/Magento/TaxImportExport/README.md index 5fbe4cf57bba2..f89bfbd2b8385 100644 --- a/app/code/Magento/TaxImportExport/README.md +++ b/app/code/Magento/TaxImportExport/README.md @@ -9,7 +9,7 @@ Before installing this module, note that the Magento_TaxImportExport is dependen - Magento_Store - Magento_Tax -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ### Layouts From 65a68b57a4f2b472cd2c8eff58a3ff22e579bae6 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:10:55 +0530 Subject: [PATCH 18/21] Update README.md --- app/code/Magento/Theme/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md index a55c05a9ee6cb..6e8575e5fd603 100644 --- a/app/code/Magento/Theme/README.md +++ b/app/code/Magento/Theme/README.md @@ -25,7 +25,7 @@ Before disabling or uninstalling this module, note the following dependencies: - Magento_Swatches - Magento_Vault -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure From 5e1e219dc628d07aa5e4b76e186e4e4cc042c3ce Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:11:15 +0530 Subject: [PATCH 19/21] Update README.md --- app/code/Magento/ThemeGraphQl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/ThemeGraphQl/README.md b/app/code/Magento/ThemeGraphQl/README.md index 32e9320334b9d..617615d218956 100644 --- a/app/code/Magento/ThemeGraphQl/README.md +++ b/app/code/Magento/ThemeGraphQl/README.md @@ -8,4 +8,4 @@ Before installing this module, note that the Magento_ThemeGraphQl is dependent o - Magento_StoreGraphQl -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From aefd0d304f4cb27802d1c003e145ca6bbb528433 Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:11:31 +0530 Subject: [PATCH 20/21] Update README.md --- app/code/Magento/Tinymce3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Tinymce3/README.md b/app/code/Magento/Tinymce3/README.md index 2d2d5ecbab883..fc3bc19163b5b 100644 --- a/app/code/Magento/Tinymce3/README.md +++ b/app/code/Magento/Tinymce3/README.md @@ -10,4 +10,4 @@ Before installing this module, note that the Magento_Tinymce3 is dependent on th - Magento_Variable - Magento_Widget -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). From 1b759e857a6a83c50bf80c900be3255e03d536cd Mon Sep 17 00:00:00 2001 From: chiranjeevi <52098385+chiranjeevi-cj@users.noreply.github.com> Date: Mon, 11 Jan 2021 21:11:51 +0530 Subject: [PATCH 21/21] Update README.md --- app/code/Magento/Translation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Translation/README.md b/app/code/Magento/Translation/README.md index 36ba8a9bfbd8c..1f054a6f4ec3e 100644 --- a/app/code/Magento/Translation/README.md +++ b/app/code/Magento/Translation/README.md @@ -12,7 +12,7 @@ Before installing this module, note that the Magento_Translation is dependent on - Magento_Store - Magento_Theme -Refer to [how to enable or disable modules in Magento 2](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). +For information about enabling or disabling a module, see [Enable or disable modules](https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.html). ## Structure