是否可以自定义magento管理区域
我们可以通过复制本地模块并执行一些其他所需的操作来扩展 magento 的现有前端功能,但是我如何扩展或自定义 magento 管理区域以满足我的要求而不触及核心代码。
例如我想扩展 magento 索引功能。在重新索引目录搜索期间,Magento 在 catalgosearch_fulltext 表中添加索引数据,我还想将数据添加到我的自定义数据库表之一,以便稍后当用户在我的产品中搜索产品时我可以查找该数据库表店铺。
是否可以自定义magento管理区域?
请指导我。
谢谢
We can extend the existing functionality of magento for frontend by copying modules in local area and doing some other required stuff but how I can extend or customize the magento admin area to meet my requirements without touching the core code.
For example I want to extend magento indexing functionality. During re-indexing catalog search Magento add the indexed data in catalgosearch_fulltext table and I also want to add the data to the one of the my custom database table, so that later I can look up into this database table when user search for product in my store.
Is it possible to customize magento admin area?
Please guide me.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
处理这个问题的更好方法实际上是使用 Magento 的类覆盖系统覆盖您想要更改的模型(对于前端和管理更改)。这样,您将可以更轻松地升级 Magento 安装。
The preferable way to handle this is actually to override the models you want to change using Magento's class override system (both for FrontEnd and Admin changes). That way, you'll have a much easier time upgrading your Magento installations.
当然!您可以自定义您想要的一切。
所有与管理相关的模块都
可以重写。
Sure! You can customize everything you want.
All admin related modules are in
you can rewrite them.