在一页上多次显示相同的表单(D7+formapi)

发布于 2024-11-05 05:26:01 字数 310 浏览 0 评论 0原文

我正在尝试在视图(每行)上显示我的自定义表单。它可以工作,但表格不能正常工作。我需要为每个表单提供不同的 id。

hook_forms 应该对我有帮助,但我无法管理如何使用它。如果我将 print $form 放入其中,我仍然看不到我的表单。

我从模板文件中这样调用我的表单:

$form1 = drupal_get_form('votingform_create_decision_form_' . $node->nid, $node->nid);
print drupal_render($form1);

I'm trying show on views (each row) my custom form. It works, but the form doesn't work proper. I need to give to each form different ids.

hook_forms should help me, but I cannot manage how to use it. If I put print $form into it, I still cannot see my forms.

I'm calling my form like this from the template file:

$form1 = drupal_get_form('votingform_create_decision_form_' . $node->nid, $node->nid);
print drupal_render($form1);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

踏雪无痕 2024-11-12 05:26:02

现在我开始工作了:

function hook_forms($form_id, $args) {

  if ($args[0] == 'mymodule_form_') {
    $forms['mymodule_form_' . $args[1]] = array(
      'callback' => 'mymodule_form',
      'callback arguments' => array($args[1]),
    );
  }

  return $forms;
}

Now I got it working:

function hook_forms($form_id, $args) {

  if ($args[0] == 'mymodule_form_') {
    $forms['mymodule_form_' . $args[1]] = array(
      'callback' => 'mymodule_form',
      'callback arguments' => array($args[1]),
    );
  }

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