You are here

function quiz_question_render_question in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/quiz_question/quiz_question.module \quiz_question_render_question()
  2. 6.3 question_types/quiz_question/quiz_question.module \quiz_question_render_question()

Implementation of hook_render_question().

Parameters

$node: The question node.

File

question_types/quiz_question/quiz_question.module, line 321
Quiz Question module. This module provides the basic facilities for adding quiz question types to a quiz. While you can create standard Quiz question types simply by implementing the appropriate hooks, this module provides a framework that makes…

Code

function quiz_question_render_question($node) {
  return drupal_get_form('quiz_question_question_form', $node);
}