1 image.theme.inc | theme_image_resize_summary($variables) |
Returns HTML for a summary of an image resize effect.
Parameters
$variables: An associative array containing:
- data: The current configuration for this resize effect.
Related topics
File
- core/
modules/ image/ image.theme.inc, line 284 - Theme functions for the Image module.
Code
function theme_image_resize_summary($variables) {
$data = $variables['data'];
if ($data['width'] && $data['height']) {
return check_plain($data['width']) . 'x' . check_plain($data['height']);
}
else {
return ($data['width']) ? t('width @width', array('@width' => $data['width'])) : t('height @height', array('@height' => $data['height']));
}
}