You are here

function fieldgroup_skinr_preprocess_hook_callback in Skinr 6.2

Skinr preprocess_hook_callback.

Parameters

&$form: Passes in the $form parameter from hook_form_alter().

$form_state: Passes in the $form_state parameter from hook_form_alter().

Return value

The preprocess_hook we wish to use.

Related topics

1 string reference to 'fieldgroup_skinr_preprocess_hook_callback'
fieldgroup_skinr_config in modules/fieldgroup.skinr.inc
Implementation of hook_skinr_config().

File

modules/fieldgroup.skinr.inc, line 78
Provide skinr handling for fieldgroup.module

Code

function fieldgroup_skinr_preprocess_hook_callback(&$form, $form_state) {
  $preprocess_hooks = array();
  $preprocess_hooks[] = 'fieldgroup_simple';
  $preprocess_hooks[] = 'fieldgroup_fieldset';
  return $preprocess_hooks;
}