You are here

function theme_collapse_text_form in Collapse Text 6.2

Same name and namespace in other branches
  1. 8 collapse_text.module \theme_collapse_text_form()
  2. 7.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_process in ./collapse_text.module
Implementation of hook_filter($op='process').

File

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

Code

function theme_collapse_text_form($element) {
  return drupal_render($element);
}