function comment_fusion_apply_preprocess_index_handler in Fusion Accelerator 7
Same name and namespace in other branches
- 7.2 fusion_apply/modules/comment.fusion.inc \comment_fusion_apply_preprocess_index_handler()
Fusion Apply preprocess index handler.
Parameters
&$variables: Passes in the $variables parameter from fusion_apply_preprocess().
Return value
The index where we can find our values in Fusion Apply's data structure. If an array is returned, it will loop through each index in Fusion Apply's data structure and merge the returned classes.
Related topics
1 string reference to 'comment_fusion_apply_preprocess_index_handler'
- comment_fusion_apply_config_info in fusion_apply/
modules/ comment.fusion.inc - Implements hook_fusion_apply_config_info().
File
- fusion_apply/
modules/ comment.fusion.inc, line 108 - Provide skins handling for comment.module
Code
function comment_fusion_apply_preprocess_index_handler(&$variables) {
return array(
$variables['node']->type,
);
}