function tweetbutton_field_widget_info in Tweet Button 7.2
Implements hook_field_widget_info().
File
- ./
tweetbutton.module, line 80
Code
function tweetbutton_field_widget_info() {
return array(
'tweetbutton' => array(
'label' => t('Tweetbutton'),
'field types' => array(
'tweetbutton',
),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
'default value' => FIELD_BEHAVIOR_DEFAULT,
),
),
);
}