function theme_quiz_questions in Quiz 5
Same name and namespace in other branches
- 5.2 quiz.module \theme_quiz_questions()
- 6.6 quiz.pages.inc \theme_quiz_questions()
- 6.2 quiz.pages.inc \theme_quiz_questions()
- 6.3 quiz.pages.inc \theme_quiz_questions()
- 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;
}