Magento2 本指南中使用的常规符号

指向模块和主题的路径的常规表示法

Magento应用程序组件,包括模块,主题和语言包,从技术上讲,可以位于Magento根目录下的任何位置。 这指的是Magento的默认组件和自定义组件。

以下相对路径用于模块和主题:

<theme_dir>

主题目录。 通常在谈论自定义主题或一般主题时使用。

对于开箱即用的前端主题,Magento的绝对路径通常是以下之一:

  • app/design/frontend/<Vendor>/<theme>
  • vendor/magento/theme-frontend-<theme>

<module_dir>

模块目录。 在谈论特定的Magento模块时,使用以下表示法:<Magento_X_module_dir>,其中X表示模块的名称。 Magento安装目录中模块X的目录为以下目录之一:

  • app/code/Magento/X
  • vendor/magento/module-x

例如,<Magento_Checkout_module_dir>将解析为以下之一:

  • app/code/Magento/Checkout
  • vendor/magento/module-checkout

本文参考:https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/conventions.html