You are here

function _emvideo_formatter_theme_helper in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/emvideo.theme.inc \_emvideo_formatter_theme_helper()
  2. 6.2 contrib/emvideo/emvideo.theme.inc \_emvideo_formatter_theme_helper()

This ultimately calls theme('emvideo_[formatter]').

18 calls to _emvideo_formatter_theme_helper()
theme_emvideo_formatter_default in contrib/emvideo/emvideo.theme.inc
theme_emvideo_formatter_lightbox2 in contrib/emvideo/emvideo.theme.inc
theme_emvideo_formatter_shadowbox in contrib/emvideo/emvideo.theme.inc
theme_emvideo_formatter_thickbox in contrib/emvideo/emvideo.theme.inc
theme_emvideo_formatter_video_duration in contrib/emvideo/emvideo.theme.inc

... See full list

File

contrib/emvideo/emvideo.theme.inc, line 364
This defines the various theme functions for Embedded Video Field (emvideo).

Code

function _emvideo_formatter_theme_helper($element) {
  $field = content_fields($element['#field_name'], $element['#type_name']);
  return emvideo_field_formatter($field, $element['#item'], $element['#formatter'], $element['#node']);
}