You are here

function theme_short_answer_response_form in Quiz 7.5

Same name and namespace in other branches
  1. 8.6 question_types/quiz_short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()
  2. 8.4 question_types/short_answer/short_answer.theme.inc \theme_short_answer_response_form()
  3. 8.5 question_types/quiz_short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()
  4. 6.4 question_types/short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()
  5. 7.6 question_types/short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()
  6. 7 question_types/short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()
  7. 7.4 question_types/short_answer/theme/short_answer.theme.inc \theme_short_answer_response_form()

Theme the short_answer response form.

Parameters

array $variables:

Return value

string An HTML string.

File

question_types/short_answer/theme/short_answer.theme.inc, line 32
Theme functions for the short_answer question type.

Code

function theme_short_answer_response_form($variables) {
  $form = $variables['form'];
  return drupal_render_children($form);
}