function theme_linkimagefield_image in Link Image Field 6
Same name and namespace in other branches
- 5 linkimagefield.module \theme_linkimagefield_image()
2 theme calls to theme_linkimagefield_image()
File
- ./
linkimagefield.module, line 274 - Defines a link image field type.
Code
function theme_linkimagefield_image($file, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE, $url = '') {
return '<a href="' . $url . '">' . theme('imagefield_image', $file, $alt, $title, $attributes, $getsize) . '</a>';
}