You are here

function checkbox_validate_form_alter in Checkbox Validate 5

Same name and namespace in other branches
  1. 6 checkbox_validate.module \checkbox_validate_form_alter()

Implementation of hook_form_alter().

File

./checkbox_validate.module, line 19

Code

function checkbox_validate_form_alter($form_id, &$form) {
  $form = checkbox_validate_recurse($form);
  return;
}