You are here

function soundcloudfield_field_widget_info in SoundCloud field 7

Implements hook_widget_info().

File

./soundcloudfield.module, line 199
@author Attila Fekete - http://drupal.org/user/762986

Code

function soundcloudfield_field_widget_info() {
  return array(
    'soundcloud_url' => array(
      'label' => t('SoundCloud URL'),
      'field types' => array(
        'soundcloud',
      ),
      'behaviors' => array(
        'multiple values' => FIELD_BEHAVIOR_DEFAULT,
        'default value' => FIELD_BEHAVIOR_DEFAULT,
      ),
    ),
  );
}