You are here

function quiz_form_quiz_node_form_alter in Quiz 7.4

Same name and namespace in other branches
  1. 7.6 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 713
Quiz Module

Code

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