You are here

function theme_quiz_questions in Quiz 5

Same name and namespace in other branches
  1. 5.2 quiz.module \theme_quiz_questions()
  2. 6.6 quiz.pages.inc \theme_quiz_questions()
  3. 6.2 quiz.pages.inc \theme_quiz_questions()
  4. 6.3 quiz.pages.inc \theme_quiz_questions()
  5. 6.5 quiz.pages.inc \theme_quiz_questions()

Allow the option to theme the questions form

File

./quiz.module, line 1900
Quiz Module

Code

function theme_quiz_questions($form) {
  $output = '';
  $output .= drupal_render($form);
  return $output;
}