You are here

long_answer.theme.inc in Quiz 7.5

Theme functions for the long_answer question type.

File

question_types/long_answer/theme/long_answer.theme.inc
View source
<?php

/**
 * @file
 * Theme functions for the long_answer question type.
 */

/**
 * Theme the long_answer response form.
 *
 * @param array $variables
 *
 * @return string
 *   An HTML string.
 */
function theme_long_answer_response_form($variables) {
  $form = $variables['form'];
  return drupal_render_children($form);
}

Functions

Namesort descending Description
theme_long_answer_response_form Theme the long_answer response form.