如何显示 Drupal 的默认表单之一
我有一个模块,我想用它来显示 Drupal 7 默认表单之一的修改版本。我相信表单 ID 是 user_profile_form
,它是用于编辑用户帐户信息的表单。
这就是我的模块的结构:
- hook_menu 带有函数的页面回调 -->
user_exe_edit()
--> - 函数
user_exe_edit()
调用drupal_get_form(input_simple_form)
--> - function
input_simple_form($form, &$form_submit)
现在我需要函数 input_simple_form
来返回 ID 为 user_profile_form
的 Drupal 表单。
我该怎么做?
I have a module that I want to use to display a modified version of one of Drupal 7's default forms. I believe the form ID is user_profile_form
and it is the form used to edit a user's account information.
So this is the structure of my module:
- hook_menu with a page callback to a function -->
user_exe_edit()
--> - function
user_exe_edit()
callsdrupal_get_form(input_simple_form)
--> - function
input_simple_form($form, &$form_submit)
Now I need the function input_simple_form
to return the Drupal form with id user_profile_form
.
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 input_simple_form(),但您需要包含用户模块的页面:
You won't need your input_simple_form(), but you will need to include the user module's pages: