You are here

function fb_social_comments_content_extra_fields in Facebook social plugins integration 6

Implementation of hook_content_extra_fields.

File

modules/fb_social_comments/fb_social_comments.module, line 69

Code

function fb_social_comments_content_extra_fields($type_name) {
  if (fb_social_comments_type($type_name)) {
    $extras['fb_social_comments_widget'] = array(
      'label' => t('Facebook socials comments widget'),
      'description' => t('The facebook comments pluging widget'),
      'weight' => 20,
    );
    return $extras;
  }
}