function cck_video_field_formatter_info in CCK Video 7
Same name and namespace in other branches
- 6 cck_video.module \cck_video_field_formatter_info()
@todo Please document this function.
See also
File
- ./
cck_video.module, line 50
Code
function cck_video_field_formatter_info() {
$formatters = array(
'video' => array(
'label' => t('Video'),
'field types' => array(
'file',
),
'settings' => array(
'cck_video_player' => 'swfobject',
),
),
);
return $formatters;
}