function theme_quizfileupload_response_form in Quiz File Upload 7.5
Theme the quizfileupload response form.
Parameters
array $variables:
Return value
string An HTML string.
File
- theme/
quizfileupload.theme.inc, line 32 - Theme functions for the quizfileupload question type.
Code
function theme_quizfileupload_response_form($variables) {
$form = $variables['form'];
return drupal_render_children($form);
}