You are here

function fb_social_send_content_extra_fields in Facebook social plugins integration 6

Implementation of hook_content_extra_fields.

File

modules/fb_social_send/fb_social_send.module, line 29

Code

function fb_social_send_content_extra_fields($type_name) {
  if (fb_social_send_type($type_name) && variable_get('fb_social_send_location', 0)) {
    $extras['fb_social_send_widget'] = array(
      'label' => t('Facebook socials send widget'),
      'description' => t('The facebook send pluging widget'),
      'weight' => -10,
    );
    return $extras;
  }
}