function phptemplate_system_modules in Fieldset helper 6
Overide theme_system_modules using phptemplate.
1 string reference to 'phptemplate_system_modules'
- fieldset_helper.module in ./
fieldset_helper.module - Saves the collapsed state of a Drupal collapsible fieldset.
File
- ./
fieldset_helper.theme.inc, line 29 - 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_system_modules($form) {
$output = theme_system_modules($form);
return fieldset_helper_alter_theme_system_modules($output);
}