1 drupal.inc drupal_form_submit($form_id, &$form_state)

Retrieves, populates, and processes a form.

Deprecated

since 1.0.0

See also

backdrop_form_submit()

Related topics

File

core/includes/drupal.inc, line 1762
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_form_submit($form_id, &$form_state) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  backdrop_form_submit($form_id, $form_state);
}