You are here

function node_comment_block_node_view in Node Comment Block 7.2

Same name and namespace in other branches
  1. 7 node_comment_block.module \node_comment_block_node_view()

Implements hook_node_view().

File

./node_comment_block.module, line 81
Moves the comments for a node into a block.

Code

function node_comment_block_node_view($node, $view_mode) {
  module_load_include('inc', 'node_comment_block', 'includes/node_comment_block.controller');
  NodeCommentBlock::setComments($node);
}