You are here

function theme_scale_response_form in Quiz 8.4

Same name and namespace in other branches
  1. 8.6 question_types/quiz_scale/theme/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

$form: The response form

File

question_types/scale/scale.theme.inc, line 32
The theme file for scale.

Code

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