function soundcloudfield_field_info in SoundCloud field 6
Same name and namespace in other branches
- 7 soundcloudfield.module \soundcloudfield_field_info()
Implementation of hook_field_info().
File
- ./
soundcloudfield.module, line 46 - SoundCloud CCK field.
Code
function soundcloudfield_field_info() {
return array(
'soundcloudfield' => array(
'label' => t('SoundCloud'),
'description' => t('This CCK field stores a SoundCloud track or set URL.'),
'callbacks' => array(
'tables' => CONTENT_CALLBACK_DEFAULT,
'arguments' => CONTENT_CALLBACK_DEFAULT,
),
),
);
}