function comment_skinr_theme_hooks in Skinr 7.2
Same name and namespace in other branches
- 8.2 modules/comment.skinr.inc \comment_skinr_theme_hooks()
Implements hook_skinr_theme_hooks().
File
- modules/
comment.skinr.inc, line 42 - Implements Skinr hooks for comment.module.
Code
function comment_skinr_theme_hooks($module, $element) {
$theme_hooks = array();
if ($module == 'comment') {
$theme_hooks = array(
'comment_wrapper__' . $element,
'comment_wrapper',
);
}
return $theme_hooks;
}