function theme_emvideo_video_thumbnail_provider_link in Embedded Media Field 6.3
Same name and namespace in other branches
- 6 contrib/emvideo/emvideo.theme.inc \theme_emvideo_video_thumbnail_provider_link()
- 6.2 contrib/emvideo/emvideo.theme.inc \theme_emvideo_video_thumbnail_provider_link()
File
- contrib/
emvideo/ emvideo.theme.inc, line 35 - This defines the various theme functions for Embedded Video Field (emvideo).
Code
function theme_emvideo_video_thumbnail_provider_link($field, $item, $formatter, $node, $options = array()) {
$options['link_url'] = isset($options['link_url']) ? $options['link_url'] : emfield_include_invoke('emvideo', $item['provider'], 'embedded_link', $item['value'], $item['data']);
return theme('emvideo_video_thumbnail', $field, $item, $formatter, $node, FALSE, $options);
}