多个表单 ID 的单个 hook_form
在我的模块中,我正在创建一个包含许多简单表单的页面:
foreach ($parameters as $param){
$output = drupal_get_form('mymodule_param_'.$param['id'].'_form', $product);
}
print $output;
我需要找到一种方法来实现单个 mymodule_param_form 函数(以及 _validate 、 _submit ),该函数将应用于我的 $params 数组中的每个 $param['id'] 。 我相信 drupal 允许这种行为。只是还没找到。 有什么帮助吗?
in my module i am creating a page with many simple forms:
foreach ($parameters as $param){
$output = drupal_get_form('mymodule_param_'.$param['id'].'_form', $product);
}
print $output;
i need to find a way to implement a single mymodule_param_form function (and the _validate , _submit ) that will apply on each $param['id'] in my $params array.
i trust drupal to allow such behavior. just didnt find it yet.
any help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上发布了自己的答案:
hook_forms
You practically posted your own answer:
hook_forms