drupal_rebuild_form
Related topics
| Name | Description |
|---|---|
| Form generation | Functions to enable the processing and display of HTML forms. |
Functions that call drupal_rebuild_form()
| Name | Location | Description |
|---|---|---|
| drupal_get_form | includes/form.inc | Retrieves a form from a constructor function, or from the cache if the form was built in a previous page-load. The form is then passesed on for processing, after and rendered for display if necessary. |
| drupal_rebuild_form | includes/form.inc | Retrieves a form, caches it and processes it with an empty $_POST. |
Functions called by drupal_rebuild_form()
| Name | Location | Description |
|---|---|---|
| drupal_prepare_form | includes/form.inc | Prepares a structured form array by adding required elements, executing any hook_form_alter functions, and optionally inserting a validation token to prevent tampering. |
| drupal_process_form | includes/form.inc | This function is the heart of form API. The form gets built, validated and in appropriate cases, submitted. |
| drupal_rebuild_form | includes/form.inc | Retrieves a form, caches it and processes it with an empty $_POST. |
| form_set_cache | includes/form.inc | Store a form in the cache. |
