function theme_cloze_answering_form in Cloze 7
Same name and namespace in other branches
- 6 theme/cloze.theme.inc \theme_cloze_answering_form()
 
Theme the cloze answering form
File
- theme/
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') . '/theme/cloze.css');
  return drupal_render_children($form);
}