function hook_form_FORM_ID_alter

7.x system.api.php hook_form_FORM_ID_alter(&$form, &$form_state, $form_id)
6.x core.php hook_form_FORM_ID_alter(&$form, &$form_state)

Provide a form-specific alteration instead of the global hook_form_alter().

Modules can implement hook_form_FORM_ID_alter() to modify a specific form, rather than implementing hook_form_alter() and checking the form ID, or using long switch statements to alter multiple forms.

Form alter hooks are called in the following order: hook_form_alter(), hook_form_BASE_FORM_ID_alter(), hook_form_FORM_ID_alter(). See hook_form_alter() for more details.

Parameters

$form: Nested array of form elements that comprise the form.

$form_state: A keyed array containing the current state of the form. The arguments that drupal_get_form() was originally called with are available in the array $form_state['build_info']['args'].

$form_id: String representing the name of the form itself. Typically this is the name of the function that generated the form.

See also

hook_form_alter()

hook_form_BASE_FORM_ID_alter()

drupal_prepare_form()

forms_api_reference.html

Related topics

54 functions implement hook_form_FORM_ID_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

aggregator_form_aggregator_admin_form_alter in drupal-7.x/modules/aggregator/aggregator.processor.inc
Implements hook_form_aggregator_admin_form_alter().
block_form_form_test_alter_form_alter in drupal-7.x/modules/simpletest/tests/form_test.module
Implements hook_form_FORM_ID_alter() on behalf of block.module.
block_form_system_performance_settings_alter in drupal-7.x/modules/block/block.module
Implements hook_form_FORM_ID_alter().
block_form_user_profile_form_alter in drupal-7.x/modules/block/block.module
Implements hook_form_FORM_ID_alter() for user_profile_form().
book_form_node_delete_confirm_alter in drupal-7.x/modules/book/book.module
Implements hook_form_FORM_ID_alter() for node_delete_confirm().

... See full list

File

drupal-7.x/modules/system/system.api.php, line 1708
Hooks provided by Drupal core and the System module.

Code

function hook_form_FORM_ID_alter(&$form, &$form_state, $form_id) {
  // Modification for the form with the given form ID goes here. For example, if
  // FORM_ID is "user_register_form" this code would run only on the user
  // registration form.

  // Add a checkbox to registration form about agreeing to terms of use.
  $form['terms_of_use'] = array(
    '#type' => 'checkbox',
    '#title' => t("I agree with the website's terms and conditions."),
    '#required' => TRUE,
  );
}