Same name and namespace in other branches
  1. 4.7.x modules/comment.module \theme_comment_thread_expanded()
  2. 5.x modules/comment/comment.module \theme_comment_thread_expanded()

Theme comment thread expanded view.

Parameters

$comment: The comment to be themed.

$node: The comment node.

Related topics

File

modules/comment/comment.module, line 1772
Enables users to comment on published content.

Code

function theme_comment_thread_expanded($comment, $node) {
  $links = module_invoke_all('link', 'comment', $comment, 0);
  drupal_alter('link', $links, $node, $comment);
  return theme('comment_view', $comment, $node, $links);
}