You are here

function theme_media_flickr_field_formatter_styles in Media: Flickr 7.2

Same name and namespace in other branches
  1. 7 themes/media_flickr.theme.inc \theme_media_flickr_field_formatter_styles()

File

themes/media_flickr.theme.inc, line 117
Theme functions for the Media: Flickr module.

Code

function theme_media_flickr_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_flickr_embed', $variables);
}