function dlike_entity_view in Drupal like (Flag counter) 7.3
Implements hook_entity_view().
File
- ./
dlike.module, line 96
Code
function dlike_entity_view($entity, $type, $view_mode, $langcode) {
$links = dlike_flag_link($type, $entity, $view_mode);
$entity->content['links']['flag'] = array(
'#theme' => 'links__node__flag',
'#links' => $links,
'#attributes' => array(
'class' => array(
'links',
'inline',
),
),
);
}