You are here

function mobile_codes_ahah_generator in Mobile Codes 6.2

File

includes/block.inc, line 176
Block module integration.

Code

function mobile_codes_ahah_generator($form_id, $form, $form_state, $args, $form_build_id) {

  // Process the form with drupal_process_form(), which calls the submit
  // handlers that puts whatever was worthy of keeping in the $form_state.
  drupal_process_form($form_id, $form, $form_state);
  $form = drupal_rebuild_form($form_id, $form_state, $args, $form_build_id);
  return drupal_render($form);
}