You are here

function theme_adaptive_image_scale_summary in Adaptive Image 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

./adaptive_image.module, line 137
Adaptive Image - Adaptive images for Drupal

Code

function theme_adaptive_image_scale_summary($variables) {
  $data = $variables['data'];
  if ($data['resolutions']) {
    return check_plain($data['resolutions']);
  }
}