Magento - 管理字段的默认值
是否可以(通过编程或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过模块的 config.xml 文件向管理配置选项添加默认值。通过管理配置选项,我理解您指的是配置设置选项(系统 -> 配置)。
假设您有以下 system.xml 文件。添加管理配置选项需要 System.xml 文件。
现在,要将默认值添加到管理配置选项,您需要在模块的 config.xml 文件中编写以下内容。
希望这有帮助。
详细说明,您可以参考:- 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.
Now, to add default value to the admin configuration options, you need to write the following in config.xml file of your module.
Hope this helps.
For detail explanation, you may refer to:- http://alanstorm.com/magento_default_system_configuration_values