You are here

function oembed_field_formatter_info in oEmbed 7.0

Same name and namespace in other branches
  1. 7 oembed.field.inc \oembed_field_formatter_info()

Implements hook_field_formatter_info().

File

./oembed.module, line 886

Code

function oembed_field_formatter_info() {
  $formatters = array(
    'oembed_default' => array(
      'label' => t('OEmbed'),
      'field types' => array(
        'link_field',
      ),
      'description' => t('Embeds links if possible - otherwise just links them.'),
      'settings' => array(
        'maxwidth' => '',
        'maxheight' => '',
      ),
    ),
  );
  return $formatters;
}