在magento 2中的系统配置中添加自定义字段

时间:2016-09-21 10:30:05

标签: magento2

我试图在magento 2的系统配置中添加新字段。我使用了以下代码,但是我收到了这个错误:

  

无法创建acl对象:文件路径/ to / file

中的XML无效

建议我这样做的正确方法。在此先感谢!!

acl.xml

<?xml version="1.0"?>
<!--
/**
 * Location: magento2_root/app/code/Namespace/Module/etc/acl.xml
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
    <acl>
        <resources>
            <resource id="Magento_Backend::admin">
                <resource id="Magento_Backend::stores">
                    <resource id="Magento_Backend::stores_settings">
                        <resource id="Magento_Config::config">
                            <resource id="NAmespace_Module::config" title="Custom Settings" sortOrder="50" />
                        </resource>
                    </resource>
                </resource>
            </resource>
        </resources>
    </acl>

的system.xml

<?xml version="1.0"?>
<!--
/**
 * Location: magento2_root/app/code/Namespace/Module/etc/adminhtml/system.xml
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
    <system>
        <tab id="settings" translate="label" sortOrder="1000">
            <label>Settings</label>
        </tab>
        <section id="example_section" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
            <label>Example config section</label>
            <tab>settings</tab>
            <resource>Namespace_Module::config</resource>
            <group id="general" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">

                <field id="facebook" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Facebook</label>
                </field>

                <field id="textarea_example" translate="label" type="textarea" sortOrder="50" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Textarea example</label>
                </field>
            </group>
        </section>
    </system>
</config>

1 个答案:

答案 0 :(得分:1)

尝试关闭save as...代码

<script src="https://code.jquery.com/jquery-3.1.0.min.js" type="text/javascript"></script>