You are here

function theme_manualcrop_reuse_summary in Manual Crop 7

Returns HTML for a summary of an image crop selection reuse effect.

Parameters

$variables: An associative array containing:

  • data: The current configuration for this crop selection reuse effect.

Return value

Summary HTML.

File

./manualcrop.admin.inc, line 269
Admin functionality for the Manual Crop module.

Code

function theme_manualcrop_reuse_summary($variables) {
  return '(' . t('using the crop of @style', array(
    '@style' => _manualcrop_image_style_label($variables['data']['reuse_crop_style']),
  )) . ')';
}