将联系我们更改为在 magento 中保护
我知道为了做到这一点,我需要将以下内容添加到位于 app/code/core/Mage/Contacts/etc/config.xml 中
<secure_url>
<contacts>/contacts/</contacts>
</secure_url>
下方的
标记
配置文件中,但是如果我想创建一个依赖于 Mage_Contacts 的模块,我可以基本上创建一个模仿 Mage_Contacts_Etc 中的文件的 etc/config.xml 文件吗?此外,仅仅为了这么小的改变而这样做似乎有点矫枉过正。
I know in order to do this I need to add to the config file located in app/code/core/Mage/Contacts/etc/config.xml the following
<secure_url>
<contacts>/contacts/</contacts>
</secure_url>
below the
<frontend>
tag
but if I wanted to create a module that depends on Mage_Contacts can I just create basically an etc/config.xml file that mimics the one in Mage_Contacts_Etc? Additionally it seems like overkill just to do that for such a small little change.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以在另一个模块中覆盖它。 Magento 将所有 XML 文件合并到一棵大的 XML 树中,因此单个文件不是问题。您也说得对,这并不真正值得整个模块。在我完成的项目中,通常有一个特定于项目的模块来处理像这样的零碎的事情。
希望有帮助!
谢谢,
乔
Yes, you can override it in another module. Magento combines all XML files into one large XML tree, so individual files are not a problem. You are also right that this isn't really worth an entire module. In projects I complete, it's common to have a project-specific module for odds and ends like this.
Hope that helps!
Thanks,
Joe