You are here

function theme_imagefield_view_image in ImageField 5

Same name and namespace in other branches
  1. 5.2 imagefield.module \theme_imagefield_view_image()

File

./imagefield.module, line 599
Defines an image field type. imagefield uses content.module to store the fid, and the drupal files table to store the actual file data.

Code

function theme_imagefield_view_image($file, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE) {
  return theme('imagefield_image', $file, $alt, $title, $attributes, $getsize);
}