function prepopulate_form_alter in Prepopulate 7.2
Same name and namespace in other branches
- 8.2 prepopulate.module \prepopulate_form_alter()
- 5 prepopulate.module \prepopulate_form_alter()
- 6.2 prepopulate.module \prepopulate_form_alter()
- 6 prepopulate.module \prepopulate_form_alter()
Implements hook_form_alter().
File
- ./
prepopulate.module, line 25 - Fill form elements with data from GET or POST values.
Code
function prepopulate_form_alter(&$form, $form_state, $form_id) {
// If this is a subsequent step of a multi-step form, the prepopulate values
// have done their work, and the user may have modified them: bail.
if (!empty($form_state['rebuild'])) {
return;
}
if (isset($_REQUEST['edit'])) {
$form['#after_build'][] = 'prepopulate_after_build';
}
}