You are here

function theme_emvideo_video_url in Embedded Media Field 6.2

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

File

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

Code

function theme_emvideo_video_url($field, $item, $formatter, $node, $options = array()) {
  $url = emfield_include_invoke('emvideo', $item['provider'], 'embedded_link', $item['value'], $item['data']);
  return url($url);
}