You are here

function cloze_node_form_after_build in Quiz 8.4

1 string reference to 'cloze_node_form_after_build'
cloze_form_alter in question_types/cloze/cloze.module
Implementation of hook_form_alter()

File

question_types/cloze/cloze.module, line 47

Code

function cloze_node_form_after_build($form) {

  // To prevent wysiwyg editor messing with question syntax
  // @todo: verfiy once.

  //$form['body']['#access'] = FALSE;
  return $form;
}