You are here

function theme_scale_answering_form in Quiz 8.4

Theme the scale response form

Parameters

$form: The response form

File

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

Code

function theme_scale_answering_form($variables) {
  $form = $variables['form'];
  return drupal_render($form);
}