Skip to content

Instantly share code, notes, and snippets.

@underhilllabs
Created March 18, 2014 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underhilllabs/9631264 to your computer and use it in GitHub Desktop.
Save underhilllabs/9631264 to your computer and use it in GitHub Desktop.
Drupal, implements hook_form_alter to show form ID of form.
function dance_code_form_alter(&$form, &$form_state, $form_id) {
drupal_set_message("Form ID is : " . $form_id);
}
@underhilllabs
Copy link
Author

function dance_code_form_alter(&$form, &$form_state, $form_id) {
  drupal_set_message("Form ID is : " . $form_id);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment