function theme_emvideo_thickbox in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.theme.inc \theme_emvideo_thickbox()
- 6.2 contrib/emvideo/emvideo.theme.inc \theme_emvideo_thickbox()
Display the video as a Thickbox modal popup. Requires the Thickbox module.
1 theme call to theme_emvideo_thickbox()
- theme_emthumb_imagecache_formatter_thickbox in contrib/
emthumb/ emthumb.theme.inc - Returns the imagecache image linked to a modal thickbox.
File
- contrib/
emvideo/ emvideo.theme.inc, line 246 - This defines the various theme functions for Embedded Video Field (emvideo).
Code
function theme_emvideo_thickbox($field, $item, $formatter, $node, $options = array()) {
$options['modal'] = 'thickbox';
return theme('emvideo_modal_generic', $field, $item, $formatter, $node, $options);
}