You are here

function theme_scale_response_form in Quiz 8.6

Same name and namespace in other branches
  1. 8.4 question_types/scale/scale.theme.inc \theme_scale_response_form()
  2. 8.5 question_types/quiz_scale/theme/scale.theme.inc \theme_scale_response_form()
  3. 6.4 question_types/scale/theme/scale.theme.inc \theme_scale_response_form()
  4. 7.6 question_types/scale/theme/scale.theme.inc \theme_scale_response_form()
  5. 7 question_types/scale/theme/scale.theme.inc \theme_scale_response_form()
  6. 7.4 question_types/scale/theme/scale.theme.inc \theme_scale_response_form()
  7. 7.5 question_types/scale/theme/scale.theme.inc \theme_scale_response_form()

Theme the scale response form.

Parameters

array $variables:

Return value

string An HTML string.

File

question_types/quiz_scale/theme/scale.theme.inc, line 34
Theme functions for the scale question type.

Code

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