You are here

function cloze_form_alter in Cloze 7

Same name and namespace in other branches
  1. 6 cloze.module \cloze_form_alter()

Implementation of hook_form_alter()

File

./cloze.module, line 52

Code

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