You are here

function dialog_process_ajax_form in Dialog 7

Process a form and prepare it for the dialog.

1 string reference to 'dialog_process_ajax_form'
dialog_user_form_alter in modules/dialog_user/dialog_user.module
Implement hook_form_alter().

File

./dialog.module, line 136
The Dialog module provides an API for displaying and interacting with jQuery UI Dialog modals.

Code

function dialog_process_ajax_form($element) {
  dialog_fix_element_id($element);
  return $element;
}