function content_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 'content_skinr_preprocess_hook_callback'
- content_skinr_config in modules/
content.skinr.inc - Implementation of hook_skinr_config().
File
- modules/
content.skinr.inc, line 76 - Provide skinr handling for content.module
Code
function content_skinr_preprocess_hook_callback(&$form, $form_state) {
$preprocess_hooks = array();
$preprocess_hooks[] = 'content_field';
return $preprocess_hooks;
}