function theme_media_library_thumb in Media Library 6
Themes a thumbnail for browsing
1 theme call to theme_media_library_thumb()
- ml_image_basic_existing_options_form in ml_image/
ml_image_basic/ ml_image_basic.module - Image selection stage
File
- ./
media_library.module, line 400 - Main Media Library module file.
Code
function theme_media_library_thumb($image) {
if (is_object($image)) {
return theme('imagecache', 'media_library_thumb', $image->filepath, $image->title, $image->title, NULL, FALSE);
}
return '';
}