You are here

function theme_cloze_answering_form in Quiz 8.4

Theme the cloze answering form

File

question_types/cloze/cloze.theme.inc, line 25
Theme functions for cloze.

Code

function theme_cloze_answering_form(&$variables) {
  $form =& $variables['form'];
  unset($form['question']);
  drupal_add_css(drupal_get_path('module', 'cloze') . '/css/cloze.css');
  return drupal_render_children($form);
}