function phptemplate_fieldgroup_fieldset in Fieldset helper 6
Overide CCK's theme_fieldgroup_fieldset using phptemplate.
1 string reference to 'phptemplate_fieldgroup_fieldset'
- fieldset_helper.module in ./
fieldset_helper.module - Saves the collapsed state of a Drupal collapsible fieldset.
File
- ./
fieldset_helper.theme.inc, line 21 - 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_fieldgroup_fieldset($element) {
$element = fieldset_helper_alter_theme_fieldset($element);
return theme_fieldgroup_fieldset($element);
}