template_preprocess_comment_wrapper

Versions
mediamosa-21
template_preprocess_comment_wrapper(&$variables)

Process variables for comment-wrapper.tpl.php.

See also

comment-wrapper.tpl.php

@see theme_comment_wrapper()

Code

modules/comment/comment.module, line 2230

<?php
function template_preprocess_comment_wrapper(&$variables) {
  // Provide contextual information.
  $variables['node'] = $variables['content']['#node'];
  $variables['display_mode'] = variable_get('comment_default_mode_' . $variables['node']->type, COMMENT_MODE_THREADED);
  $variables['theme_hook_suggestions'][] = 'comment_wrapper__' . $variables['node']->type;
}
?>