magento2中的magento配置所需的时间


8

我试图为magento 2的配置设置设置依赖项,但无法设置。因此,如何在magento2的system.xml文件中放置依赖项以进行配置?

Answers:


9

要使用system.xml以下语法创建从属对象,必须将您的字段标记放在其中,“ id”将是您字段所依赖的字段ID。

<depends>
    <field id="enabled">1</field>
</depends>

多重依赖:

<field id="text" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
    <label>Your Field</label>
    <depends>
        <field id="id_of_depend_field" separator=",">1,3</field>
    </depends>
</field>

多谢您的协助。它与magento 1相同,但变化很小。我试图找到但语法不正确。:)
Bhargav Joshi 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.