You are here

function phptemplate_fieldset in Fieldset helper 6

Overide theme_fieldset using phptemplate.

1 string reference to 'phptemplate_fieldset'
fieldset_helper.module in ./fieldset_helper.module
Saves the collapsed state of a Drupal collapsible fieldset.

File

./fieldset_helper.theme.inc, line 13
Using an include file insures that if a phptemplate_fieldset() function already exists the below function won't throw a 'Fatal error: Cannot redeclare _phptemplate_fieldset()'

Code

function phptemplate_fieldset($element) {
  $element = fieldset_helper_alter_theme_fieldset($element);
  return theme_fieldset($element);
}