Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 hook_file_validate 检查正在验证的文件的表单 ID?我必须制作一个仅适用于特定内容类型添加表单的验证功能。
谢谢
不要将其放入 hook_file_validate 尝试通过 hook_form_alter 或 hook_FORMID_form_alter 附加表单验证处理程序。添加您的验证处理程序$form['#validate'][] = 'my_module_my_form_validation_funciton'
$form['#validate'][] = 'my_module_my_form_validation_funciton'
应该已经检查了 for Id,以便您可以在表单 ['#value'] 上运行检查。