You are here

function shariff_field_info in Shariff Social Media Buttons 7

Implements hook_field_info().

File

./shariff.module, line 438
Integrating Shariff library, providing settings form and block.

Code

function shariff_field_info() {
  return array(
    'shariff' => array(
      'label' => t('Shariff sharing buttons'),
      'description' => t('This field displays the Shariff sharing buttons for the activated services.'),
      'default_widget' => 'shariff_widget',
      'default_formatter' => 'shariff_formatter',
    ),
  );
}