function node_comment_block_node_view in Node Comment Block 7.2
Same name and namespace in other branches
- 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);
}