查找“更改”的模块列表Drupal 中的特定形式
是否有技巧、插件或补丁可以让我找出哪些模块更改了特定的模块形式?
所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).