You are here

function theme_quiz_question_navigation_form in Quiz 6.4

Same name and namespace in other branches
  1. 8.4 question_types/quiz_question/quiz_question.theme.inc \theme_quiz_question_navigation_form()
  2. 7.6 question_types/quiz_question/quiz_question.theme.inc \theme_quiz_question_navigation_form()
  3. 7 question_types/quiz_question/quiz_question.theme.inc \theme_quiz_question_navigation_form()
  4. 7.4 question_types/quiz_question/quiz_question.theme.inc \theme_quiz_question_navigation_form()
  5. 7.5 question_types/quiz_question/quiz_question.theme.inc \theme_quiz_question_navigation_form()

Theme the question navigation form(Back, Next, Skip buttons...)

Parameters

$form: Form holding the navigation buttons

File

question_types/quiz_question/quiz_question.theme.inc, line 25

Code

function theme_quiz_question_navigation_form($form) {
  return drupal_render($form);
}