function theme_imagefield_view_image in ImageField 5.2        
                          
                  
                        Same name and namespace in other branches
- 5 imagefield.module \theme_imagefield_view_image()
File
 
   - ./imagefield.module, line 1019
- 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);
}