function cck_video_field_formatter_info in CCK Video 6
Same name and namespace in other branches
- 7 cck_video.module \cck_video_field_formatter_info()
File
- ./
cck_video.module, line 22
Code
function cck_video_field_formatter_info() {
$formatters = array(
'video' => array(
'label' => t('Video'),
'field types' => array(
'filefield',
),
'multiple values' => CONTENT_HANDLE_CORE,
'weight' => 20,
),
);
return $formatters;
}