Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

drupal_build_form

Definition

drupal_build_form($form_id, &$form_state)
contributions/views/views.module, line 1005

Description

Views' replacement for drupal_get_form so that we can do more with less.

Items that can be set on the form_state include:

Code

<?php
function drupal_build_form($form_id, &$form_state) {
  views_include('form');
  return _drupal_build_form($form_id, $form_state);
}
?>