comment_block_view
- Versions
- 7
comment_block_view($delta = '')
Implement hook_block_view().
Generates a block with the most recent comments.
Code
modules/comment/comment.module, line 331
<?php
function comment_block_view($delta = '') {
if (user_access('access comments')) {
$block['subject'] = t('Recent comments');
$block['content'] = theme('comment_block');
return $block;
}
}
?>Login or register to post comments 