function theme_fancybox_formatter_emvideo_fancybox_video in fancyBox 6
CCK formatter theme for the emfield. This will call theme_fancybox_emvideo.
Parameters
$element: The CCK field element.
Return value
HTML output for displaying the video and link.
File
- ./
fancybox.theme.inc, line 81 - Theme functions for Fancybox module.
Code
function theme_fancybox_formatter_emvideo_fancybox_video($element) {
$field = content_fields($element['#field_name'], $element['#type_name']);
$item = $element['#item'];
$formatter = "emvideo";
$node = node_load($element['#node']->nid);
return module_invoke('emfield', 'emfield_field_formatter', $field, $item, $formatter, $node, 'fancybox');
}