function theme_collapse_text_fieldset in Collapse Text 6
Same name and namespace in other branches
- 6.2 collapse_text.module \theme_collapse_text_fieldset()
- 7.2 collapse_text.module \theme_collapse_text_fieldset()
Theme a section of collapsible text. By default, this function calls the default 'theme_fieldset' implementation, but this function can be overridden to implement a custom theme just for collapsed text.
Parameters
$element: An associative array containing the properties of the element. Properties used: attributes, title, value, description, children, collapsible, collapsed
Return value
A themed HTML string representing the collapsed text.
1 theme call to theme_collapse_text_fieldset()
File
- ./
collapse_text.module, line 231 - collapse_text is an input filter that allows text to be collapsible
Code
function theme_collapse_text_fieldset($element) {
return drupal_render($element);
}