function social_comments_field_info in Open Social 7
Implements hook_field_info().
File
- ./
social_comments.module, line 91
Code
function social_comments_field_info() {
return array(
'social_comments_field' => array(
'label' => t('Social comments'),
'description' => t('Store an URL string.'),
'default_widget' => 'social_comments',
'default_formatter' => 'social_comments_google',
),
);
}