function comment_skinr_preprocess_index_handler in Skinr 6.2
Same name and namespace in other branches
- 6 modules/comment.skinr.inc \comment_skinr_preprocess_index_handler()
Skinr preprocess index handler.
Parameters
&$vars: Passes in the $vars parameter from module_preprocess().
Return value
The index where we can find our values in Skinrs data structure. If an array is returned, it will loop through each index in Skinr's data structure and merge the returned classes.
Related topics
1 string reference to 'comment_skinr_preprocess_index_handler'
- comment_skinr_config in modules/
comment.skinr.inc - Implementation of hook_skinr_config().
File
- modules/
comment.skinr.inc, line 109 - Provide skinr handling for comment.module
Code
function comment_skinr_preprocess_index_handler(&$vars) {
return $vars['node']->type;
}