function dlike_comment_view in Drupal like (Flag counter) 7.2
Same name and namespace in other branches
- 7 dlike.module \dlike_comment_view()
Implementation of hook_comment_view().
File
- ./
dlike.module, line 158
Code
function dlike_comment_view($comment) {
$links = dlike_flag_link('comment', $comment);
$comment->content['links'][] = array(
'#theme' => 'links',
'#links' => $links,
'#attributes' => array(
'class' => array(
'links',
'inline',
),
),
);
}