You are here

function comment_skinr_theme_hooks in Skinr 8.2

Same name and namespace in other branches
  1. 7.2 modules/comment.skinr.inc \comment_skinr_theme_hooks()

Implements hook_skinr_theme_hooks().

File

modules/comment.skinr.inc, line 43
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;
}