You are here

function quiz_question_form_builder in Quiz 8.4

Entity form builder to add the quiz_question information to the node.

1 string reference to 'quiz_question_form_builder'
quiz_question_form_node_form_alter in question_types/quiz_question/quiz_question.module
Implements hook_form_BASE_FORM_ID_alter().

File

question_types/quiz_question/quiz_question.module, line 180
Quiz Question module. This module provides the basic facilities for adding quiz question types to a quiz.

Code

function quiz_question_form_builder($entity_type, $entity, &$form, &$form_state) {
  _quiz_question_get_instance($entity)
    ->entityBuilder($form_state);
}