You are here

function theme_emthumb_view_image in Embedded Media Field 6

Same name and namespace in other branches
  1. 5 contrib/emthumb/emthumb.module \theme_emthumb_view_image()
  2. 6.3 contrib/emthumb/emthumb.module \theme_emthumb_view_image()
  3. 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 780
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);
}