You are here

function theme_media_vimeo_field_formatter_styles in Media: Vimeo 7

File

includes/themes/media_vimeo.theme.inc, line 64
media_vimeo/includes/themes/media_vimeo.theme.inc

Code

function theme_media_vimeo_field_formatter_styles($variables) {
  $element = $variables['element'];
  $style = $variables['style'];
  $variables['file'] = $element['#item'];
  $variables['uri'] = $variables['file']['uri'];
  $variables['style_name'] = $style['name'];
  return theme('media_vimeo_embed', $variables);
}