You are here

function social_comments_field_widget_info in Open Social 7

Implements hook_field_widget_info().

File

./social_comments.module, line 130

Code

function social_comments_field_widget_info() {
  return array(
    'social_comments_field' => array(
      'label' => 'Social field',
      'field types' => array(
        'social_comments_field',
      ),
      'multiple values' => FIELD_BEHAVIOR_DEFAULT,
    ),
  );
}