drupal_get_form:手动调用渲染表单不起作用

发布于 2024-10-14 13:05:26 字数 745 浏览 2 评论 0原文

菜单回调

function content_form_select($id, $sid){
    $type = check_content_type($sid);
    if($type == 'video')
        // Render content edit form
        return drupal_get_form('content_video_form', $id, $sid);
    else if($type == 'gallery')
        // Render content edit form
        return drupal_get_form('content_gallery_form', $id, $sid);
}

视频表单生成器

function content_video_form($id=null, $sid=null){
    return array('#value' => 'Video form is getting rendered.');
}

图库表单生成器

function content_gallery_form($id=null, $sid=null){
    return array('#value' => 'Gallery form is getting rendered.');
}

它不会以这种方式呈现表单

Menu Callback

function content_form_select($id, $sid){
    $type = check_content_type($sid);
    if($type == 'video')
        // Render content edit form
        return drupal_get_form('content_video_form', $id, $sid);
    else if($type == 'gallery')
        // Render content edit form
        return drupal_get_form('content_gallery_form', $id, $sid);
}

Video Form Generator

function content_video_form($id=null, $sid=null){
    return array('#value' => 'Video form is getting rendered.');
}

Gallery Form Generator

function content_gallery_form($id=null, $sid=null){
    return array('#value' => 'Gallery form is getting rendered.');
}

It does not render form this way

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

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

发布评论

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

评论(1

从来不烧饼 2024-10-21 13:05:26

drupal_get_form 期望接收一个 $form 数组,其中包含表单元素。使用上面的示例函数之一,以下更改对我有用:

function content_gallery_form($id=null, $sid=null){
  $form['example'] = array('#value' => 'Gallery form is getting rendered.');
  return $form;
}

The drupal_get_form expects to receive a $form array, which then contains the form elements. Using one of your example functions above, the following change works for me:

function content_gallery_form($id=null, $sid=null){
  $form['example'] = array('#value' => 'Gallery form is getting rendered.');
  return $form;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文