You are here

function addthis_field_widget_info in AddThis 7.4

Implements hook_field_widget_info().

File

includes/addthis.field.inc, line 123
Field related hook implementations for the AddThis-module.

Code

function addthis_field_widget_info() {
  return array(
    AddThis::WIDGET_TYPE => array(
      'label' => t('AddThis button'),
      'field types' => array(
        AddThis::FIELD_TYPE,
      ),
    ),
  );
}