是否可以自定义magento管理区域

发布于 2024-09-27 02:37:50 字数 279 浏览 3 评论 0原文

我们可以通过复制本地模块并执行一些其他所需的操作来扩展 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 技术交流群。

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

发布评论

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

评论(2

°如果伤别离去 2024-10-04 02:37:50

处理这个问题的更好方法实际上是使用 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.

稚气少女 2024-10-04 02:37:50

当然!您可以自定义您想要的一切。
所有与管理相关的模块都

app/code/core/Mage/Adminhtml  

可以重写。

Sure! You can customize everything you want.
All admin related modules are in

app/code/core/Mage/Adminhtml  

you can rewrite them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文