You are here

function theme_retina_images_image_scale_summary in Retina Images 7

Returns HTML for a summary of an image scale effect.

Parameters

$variables: An associative array containing:

  • data: The current configuration for this scale effect.

File

./retina_images.module, line 301
This module provides an image effect to assist in outputing high resolution images.

Code

function theme_retina_images_image_scale_summary($variables) {
  $data = $variables['data'];
  $retinafied = isset($data['retinafy']) ? $data['retinafy'] : FALSE;
  return theme('image_scale_summary', $variables) . ' ' . ($retinafied ? '(' . t('retinafied') . ')' : '');
}