function likebtn_votingapi_views_formatters in Like Button 7
Same name and namespace in other branches
- 8.2 likebtn.module \likebtn_votingapi_views_formatters()
Implements hook_votingapi_views_formatters().
File
- ./
likebtn.module, line 1371 - Implements the LikeBtn module.
Code
function likebtn_votingapi_views_formatters($details = array()) {
if ($details->field == 'value') {
return array(
'likebtn_views_widget_display_only' => t('LikeBtn widget (display only)'),
'likebtn_views_widget_full' => t('LikeBtn widget'),
);
}
}