Magento - 管理字段的默认值

发布于 2024-11-04 11:05:47 字数 52 浏览 0 评论 0原文

是否可以(通过编程或 xml 配置)为文本字段管理配置选项设置默认值?如果是这样,怎么办?

Is it possible (via programming or xml configuration) to have a default value for a text field admin config option? If so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

春花秋月 2024-11-11 11:05:48

您可以通过模块的 config.xml 文件向管理配置选项添加默认值。通过管理配置选项,我理解您指的是配置设置选项(系统 -> 配置)。

假设您有以下 system.xml 文件。添加管理配置选项需要 System.xml 文件。

<?xml version="1.0" encoding="UTF-8"?>
<config>
   <sections>         
        <mysection translate="label" module="mymodule">
            <label>My Section</label>
            <tab>catalog</tab>
            <frontend_type>text</frontend_type>
            <sort_order>110</sort_order>
            <show_in_default>1</show_in_default>
            <show_in_website>1</show_in_website>
            <show_in_store>1</show_in_store> 
            <groups>
                <mygroup translate="label" module="mymodule">
                    <label>My Group</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>99</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>
                    <fields>
                        <myfield translate="label comment">
                            <label>My Field</label>                         
                            <frontend_type>text</frontend_type>
                            <sort_order>1</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </myfield>                      
                    </fields>
                </mygroup>
            </groups>           
        </mysection>            
    </sections>
</config>

现在,要将默认值添加到管理配置选项,您需要在模块的 config.xml 文件中编写以下内容。

<default>
    <mysection>
        <mygroup>                
            <myfield>My Default Value</myfield>         
        </mygroup>      
    </mysection>
</default>

希望这有帮助。

详细说明,您可以参考:- http://alanstorm.com/magento_default_system_configuration_values

You can add default value to admin config option through config.xml file of your module. By admin config option, I understand that you mean configuration settings options (System -> Configuration).

Suppose, you have the following system.xml file. System.xml file is necessary to add admin configuration options.

<?xml version="1.0" encoding="UTF-8"?>
<config>
   <sections>         
        <mysection translate="label" module="mymodule">
            <label>My Section</label>
            <tab>catalog</tab>
            <frontend_type>text</frontend_type>
            <sort_order>110</sort_order>
            <show_in_default>1</show_in_default>
            <show_in_website>1</show_in_website>
            <show_in_store>1</show_in_store> 
            <groups>
                <mygroup translate="label" module="mymodule">
                    <label>My Group</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>99</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>
                    <fields>
                        <myfield translate="label comment">
                            <label>My Field</label>                         
                            <frontend_type>text</frontend_type>
                            <sort_order>1</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </myfield>                      
                    </fields>
                </mygroup>
            </groups>           
        </mysection>            
    </sections>
</config>

Now, to add default value to the admin configuration options, you need to write the following in config.xml file of your module.

<default>
    <mysection>
        <mygroup>                
            <myfield>My Default Value</myfield>         
        </mygroup>      
    </mysection>
</default>

Hope this helps.

For detail explanation, you may refer to:- http://alanstorm.com/magento_default_system_configuration_values

回眸一遍 2024-11-11 11:05:48
<default>
    <catalog><!-- tag of the system.xml section -->
        <frontend><!-- tag of the system.xml group -->
            <name_of_your_field>4</name_of_your_field><!-- tag of the system.xml field -->
        </frontend>
    </catalog>
</default>
<default>
    <catalog><!-- tag of the system.xml section -->
        <frontend><!-- tag of the system.xml group -->
            <name_of_your_field>4</name_of_your_field><!-- tag of the system.xml field -->
        </frontend>
    </catalog>
</default>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文