后端magento system.xml

问题描述 投票:0回答:1

我是magento的新手,我有很多问题。我正在尝试在后端添加一个新部分,但是当我进入System-> Configuration时,我收到错误:

'This page is not working'

的system.xml

<config>
<tabs>
    <packt>
        <label>Packt</label>
        <sort_order>400</sort_order>
    </packt>
</tabs>
<sections>
    <helloworld translate="label" module="helloworld">
        <label>Helloworld</label>
        <tab>packt</tab>
        <sort_order>10</sort_order>
        <show_in_default>1</show_in_default>
        <show_in_website>1</show_in_website>
        <show_in_store>1</show_in_store>
        <groups>
        </groups>
    </helloworld>
</sections>

我必须说,如果我删除system.xml,系统 - >配置工作。

system.xml路径是:

应用程序/代码/本地/年底Packt /的HelloWorld的/ etc /的system.xml

adminhtml.xml也无法正常工作,因为它返回一个空的magento管理页面。我做错了什么?

xml magento system
1个回答
0
投票

试试这段代码:

<?xml version="1.0" encoding="UTF-8"?>
<config>
        <tabs>
            <packt translate="label">
                <label>Packt</label>
                <sort_order>400</sort_order>
            </packt>
        </tabs>
        <sections>
            <helloworld translate="label" module="helloworld">
                <label>Helloworld</label>
                <tab>packt</tab>
                <sort_order>10</sort_order>
                <show_in_default>1</show_in_default>
                <show_in_website>1</show_in_website>
                <show_in_store>1</show_in_store>

                <groups>
                    <options translate="label" module="helloworld">
                        <label>Configuration</label>
                        <frontend_type>text</frontend_type>
                        <sort_order>20</sort_order>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>1</show_in_store>
                        <fields>
                            <mytext translate="label">
                                <label>My Text</label>
                                <frontend_type>text</frontend_type>
                                <sort_order>10</sort_order>
                                <show_in_default>1</show_in_default>
                                <show_in_website>1</show_in_website>
                                <show_in_store>1</show_in_store>
                            </mytext>
                        </fields>
                    </options> 
                 </groups>
            </helloworld>
        <sections>
     </config>
© www.soinside.com 2019 - 2024. All rights reserved.