function theme_cloze_answering_form in Cloze 6
Same name and namespace in other branches
- 7 theme/cloze.theme.inc \theme_cloze_answering_form()
File
- theme/
cloze.theme.inc, line 59 - Theme functions for cloze.
Code
function theme_cloze_answering_form($form) {
unset($form['question']);
drupal_add_css(drupal_get_path('module', 'cloze') . '/theme/cloze.css');
return drupal_render($form);
}