多个表单 ID 的单个 hook_form

发布于 2024-10-15 08:40:12 字数 333 浏览 2 评论 0原文

在我的模块中,我正在创建一个包含许多简单表单的页面:

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 技术交流群。

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

发布评论

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

评论(1

转身泪倾城 2024-10-22 08:40:12

您实际上发布了自己的答案: hook_forms

You practically posted your own answer: hook_forms

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