You are here

function answers_theme_preprocess_comment in Answers 7.4

Implements hook_preprocess_comment().

File

answers_theme/answers_theme.module, line 107
The Answers_Theme module.

Code

function answers_theme_preprocess_comment(&$vars) {
  $bundle = isset($vars['elements']['#bundle']) && $vars['elements']['#bundle'];
  if ($bundle == 'comment_node_answers_answer' || $bundle == 'comment_node_answers_question') {
    $vars['theme_hook_suggestions'][] = 'comment__node_answers_theme';
  }
}