查找“更改”的模块列表Drupal 中的特定形式

发布于 2024-09-28 10:52:07 字数 301 浏览 3 评论 0原文

是否有技巧、插件或补丁可以让我找出哪些模块更改了特定的模块形式?

所有 hook_form_alters 的列表并不难实现。但我只想列出那些真正改变了我的形式的人。

模块可以通过通用的 modulename_form_alter()modulename_form_FORMID_alter() 更改表单,如果将两者都考虑在内,那就太好了。

Is there a trick, addon or patch that allows me to find out what modules altered a specfic form?

A list of all hook_form_alters is not too hard to achieve. But I want to list only those that actually changed my form.

Modules can alter a form trough a generic modulename_form_alter() and modulename_form_FORMID_alter() it would be nice if both are taken into consideration.

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

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

发布评论

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

评论(1

满天都是小星星 2024-10-05 10:52:07

drupal_prepare_form 函数调用所有 hook_form_alter 函数。在此函数中,没有存储任何实现 hook_form_alter 的模块。然而,那里有一个容器($data),它提取所有的更改函数,然后与 drupal_alter 一起应用。获取此数据需要修改此文件(参考:Drupal 6.19 中 /includes/form.inc 中的第 543 行)。

The drupal_prepare_form function calls all hook_form_alter functions. In this function, there is no storage for any modules that implement hook_form_alter. However, there is a container ($data) there that pulls all the alter functions then is applied with drupal_alter. Getting this data would require modifying this file (ref: line 543 in /includes/form.inc in Drupal 6.19).

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