You are here

function theme_emvideo_thickbox in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/emvideo.theme.inc \theme_emvideo_thickbox()
  2. 6 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 281
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);
}