You are here

function image_ncck_field_formatter_info in Embedded Media Field 5

Implementation of hook_emfield_field_formatter_info *

File

contrib/image_ncck/image_ncck.module, line 98

Code

function image_ncck_field_formatter_info() {
  $types = array(
    'image_ncck',
  );
  $formats = array(
    'default' => array(
      'label' => t('Default'),
      'field types' => $types,
    ),
    'image_full' => array(
      'label' => t('Full Size Image'),
      'field types' => $types,
    ),
    'image_preview' => array(
      'label' => t('Preview Size Image'),
      'field types' => $types,
    ),
    'image_thumbnail' => array(
      'label' => t('Image Thumbnail'),
      'field types' => $types,
    ),
    'image_embed' => array(
      'label' => t('Embed Code'),
      'field types' => $types,
    ),
  );
  return $formats;
}