function theme_retina_images_image_crop_summary in Retina Images 7
Returns HTML for a summary of an image crop effect.
Parameters
$variables: An associative array containing:
- data: The current configuration for this crop effect.
 
File
- ./
retina_images.module, line 333  - This module provides an image effect to assist in outputing high resolution images.
 
Code
function theme_retina_images_image_crop_summary($variables) {
  $data = $variables['data'];
  $retinafied = isset($data['retinafy']) ? $data['retinafy'] : FALSE;
  return theme('image_crop_summary', $variables) . ' ' . ($retinafied ? '(' . t('retinafied') . ')' : '');
}