function imagecache_external_field_formatter_info in Imagecache External 7.2
Implements hook_field_formatter_info().
File
- ./
imagecache_external.module, line 73 - Allows the usage of Image Styles on external images.
Code
function imagecache_external_field_formatter_info() {
$formatters = array(
'imagecache_external_image' => array(
'label' => t('Imagecache External Image'),
'field types' => array(
'text',
'link_field',
),
'settings' => array(
'imagecache_external_style' => '',
'imagecache_external_link' => '',
),
),
);
return $formatters;
}