You are here

function cloze_form_alter in Quiz 8.4

Implementation of hook_form_alter()

File

question_types/cloze/cloze.module, line 41

Code

function cloze_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'cloze_node_form') {
    $form['#after_build'][] = 'cloze_node_form_after_build';
  }
}