From f7ea0db5e46f4872adbea04bbd62fb2ea7d3873b Mon Sep 17 00:00:00 2001 From: rostislav Date: Fri, 30 Aug 2024 11:44:01 +0300 Subject: [PATCH] Added information about the ability to define area for dev:di:info CLI command --- .../extension-dev-guide/build/di-xml-file.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/guides/v2.4/extension-dev-guide/build/di-xml-file.md b/src/guides/v2.4/extension-dev-guide/build/di-xml-file.md index e2665f5d1fa..7904a29ff0e 100644 --- a/src/guides/v2.4/extension-dev-guide/build/di-xml-file.md +++ b/src/guides/v2.4/extension-dev-guide/build/di-xml-file.md @@ -502,6 +502,48 @@ Plugins for the Preference: +-----------------------------------------------------+---------+--------+ ``` +By default, the information is output for the GLOBAL area, but you can specify any of the available ones. For example: + +```bash +bin/magento dev:di:info "Magento\Framework\App\RouterList" adminhtml +``` + +```terminal +DI configuration for the class Magento\Framework\App\RouterList in the ADMINHTML area + +Preference: Magento\Framework\App\RouterList + +Constructor Parameters: ++---------------+------------------------------------------+---------------------------------------------------------------------------+ +| Name | Requested Type | Configured Value | ++---------------+------------------------------------------+---------------------------------------------------------------------------+ +| objectManager | Magento\Framework\ObjectManagerInterface | | +| routerList | | { | +| | | "admin": { | +| | | "class": "string Magento\\Backend\\App\\Router", | +| | | "disable": "string ", | +| | | "sortOrder": "string 10" | +| | | }, | +| | | "default": { | +| | | "class": "string Magento\\Framework\\App\\Router\\DefaultRouter", | +| | | "disable": "string ", | +| | | "sortOrder": "string 100" | +| | | } | +| | | } | ++---------------+------------------------------------------+---------------------------------------------------------------------------+ + +Plugins: ++--------+--------+------+ +| Plugin | Method | Type | ++--------+--------+------+ + +Plugins for the Preference: ++--------+--------+------+ +| Plugin | Method | Type | ++--------+--------+------+ +``` + + {:.ref-header} Related topics