function _emvideo_formatter_theme_helper in Embedded Media Field 6.2
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.theme.inc \_emvideo_formatter_theme_helper()
- 6 contrib/emvideo/emvideo.theme.inc \_emvideo_formatter_theme_helper()
This ultimately calls theme('emvideo_[formatter]').
19 calls to _emvideo_formatter_theme_helper()
- theme_emvideo_formatter_colorbox in contrib/
emvideo/ emvideo.theme.inc - 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
File
- contrib/
emvideo/ emvideo.theme.inc, line 389 - 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']);
}