You are here

function theme_media_admin_thumbnail_operations in D7 Media 7

Theme operations for a thumbnail.

File

includes/media.theme.inc, line 181
Media Theming

Code

function theme_media_admin_thumbnail_operations($variables) {
  $destination = drupal_get_destination();
  $file = $variables['file'];
  $output = l(t('edit'), 'media/' . $file->fid . '/edit', array(
    'query' => $destination,
  ));
  return $output;
}