You are here

function quiz_form_quiz_node_form_alter in Quiz 7.6

Same name and namespace in other branches
  1. 7.4 quiz.module \quiz_form_quiz_node_form_alter()
  2. 7.5 quiz.module \quiz_form_quiz_node_form_alter()

Implements hook_form_FORM_ID_alter() for the quiz node form.

File

./quiz.module, line 583
quiz.module Main file for the Quiz module.

Code

function quiz_form_quiz_node_form_alter(&$form, $form_state) {
  $form['actions']['submit']['#submit'][] = 'quiz_form_quiz_node_form_submit';
}