function theme_image_scale_summary

theme_image_scale_summary($variables)

Returns HTML for a summary of an image scale effect.

Parameters

$variables: An associative array containing:

  • data: The current configuration for this scale effect.

Related topics

File

modules/image/image.admin.inc, line 895
Administration pages for image settings.

Code

function theme_image_scale_summary($variables) {
  $data = $variables['data'];
  return theme('image_resize_summary', array('data' => $data)) . ' ' . ($data['upscale'] ? '(' . t('upscaling allowed') . ')' : '');
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!image!image.admin.inc/function/theme_image_scale_summary/7.x