You are here

function fieldset_helper_theme_custom in Fieldset helper 6.2

Custom handler for theme function that have been hijacked by fieldset_helper_theme_registry_alter().

2 calls to fieldset_helper_theme_custom()
fieldset_helper_fieldgroup_fieldset_custom_preprocess in ./fieldset_helper.theme.inc
Implementation of hook_theme_custom_preprocess().
fieldset_helper_fieldset_custom_preprocess in ./fieldset_helper.theme.inc
Implementation of hook_theme_custom_preprocess().

File

./fieldset_helper.theme.inc, line 245
Theme functions for fieldset helper module

Code

function fieldset_helper_theme_custom($name, $element = NULL) {

  // Call originally registered theme function.
  $theme_registry = theme_get_registry();
  $theme_function = $theme_registry[$name]['original_function'];
  return call_user_func($theme_function, $element);
}