You are here

function cck_video_field_formatter_info in CCK Video 7

Same name and namespace in other branches
  1. 6 cck_video.module \cck_video_field_formatter_info()

@todo Please document this function.

See also

http://drupal.org/node/1354

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;
}