You are here

function theme_collapse_text_form in Collapse Text 7.2

Same name and namespace in other branches
  1. 8 collapse_text.module \theme_collapse_text_form()
  2. 6.2 collapse_text.module \theme_collapse_text_form()

Theme the outer form. This is required for the fieldset(s) to validate.

1 theme call to theme_collapse_text_form()
_collapse_text_filter_process in ./collapse_text.module
Implements hook_filter_FILTER_process().

File

./collapse_text.module, line 632
collapse_text is an input filter that allows text to be collapsible

Code

function theme_collapse_text_form($element) {
  return drupal_render_children($element['element']);
}