function theme_video_formatter_video_thumbnail in Video 6.4
Same name and namespace in other branches
- 6.5 video_formatter.inc \theme_video_formatter_video_thumbnail()
File
- ./video_formatter.inc, line 75
- Video formatter hooks and callbacks.
Code
function theme_video_formatter_video_thumbnail($element, $imagecache = FALSE) {
if (empty($element['#item']['fid'])) {
return '';
}
module_load_include('inc', 'video', '/includes/video_helper');
$video_helper = new video_helper();
$thumbnail = $video_helper
->thumbnail_object($element);
return theme('video_image', $thumbnail, $thumbnail->alt, $thumbnail->title, '', TRUE, $imagecache);
}