function theme_emthumb_view_image in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 contrib/emthumb/emthumb.module \theme_emthumb_view_image()
- 6 contrib/emthumb/emthumb.module \theme_emthumb_view_image()
- 6.2 contrib/emthumb/emthumb.module \theme_emthumb_view_image()
Returns the image thumbnail. @TODO: Is this even being used?
File
- contrib/
emthumb/ emthumb.module, line 944 - Allows for custom thumbnail overrides to Embedded Media Field.
Code
function theme_emthumb_view_image($file, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE) {
return theme('emthumb_image', $file, $alt, $title, $attributes, $getsize);
}