You are here

function theme_linkimagefield_view_image in Link Image Field 5

File

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

Code

function theme_linkimagefield_view_image($file, $alt = '', $url = '', $title = '', $attributes = NULL, $getsize = TRUE) {
  return theme('linkimagefield_image', $file, $alt, $url, $title, $attributes, $getsize);
}