You are here

function theme_imagecache_formatter_default in ImageCache 6.2

1 string reference to 'theme_imagecache_formatter_default'
imagecache_theme in ./imagecache.module
Implementation of hook_theme().

File

./imagecache.module, line 720
Dynamic image resizer and image cacher.

Code

function theme_imagecache_formatter_default($element) {

  // Inside a view $element may contain NULL data. In that case, just return.
  if (empty($element['#item']['fid'])) {
    return '';
  }

  // Extract the preset name from the formatter name.
  $presetname = substr($element['#formatter'], 0, strrpos($element['#formatter'], '_'));
  $style = 'linked';
  $style = 'default';
  $item = $element['#item'];
  $item['data']['alt'] = isset($item['data']['alt']) ? $item['data']['alt'] : '';
  $item['data']['title'] = isset($item['data']['title']) ? $item['data']['title'] : NULL;
  $class = "imagecache imagecache-{$presetname} imagecache-{$style} imagecache-{$element['#formatter']}";
  return theme('imagecache', $presetname, $item['filepath'], $item['data']['alt'], $item['data']['title'], array(
    'class' => $class,
  ));
}