You are here

function theme_cloze_response_form in Cloze 6

Same name and namespace in other branches
  1. 7 theme/cloze.theme.inc \theme_cloze_response_form()

Theme the cloze response form

Parameters

$form: The response form

File

theme/cloze.theme.inc, line 54
Theme functions for cloze.

Code

function theme_cloze_response_form($form) {
  drupal_add_css(drupal_get_path('module', 'cloze') . '/theme/cloze.css');
  return drupal_render($form);
}