You are here

function theme_imagecrop_reuse in Image javascript crop 7

Same name and namespace in other branches
  1. 6 imagecrop_actions.inc \theme_imagecrop_reuse()

Theme the summary from an imagecrop re-use effect.

1 string reference to 'theme_imagecrop_reuse'
imagecrop_image_effect_info in includes/imagecrop.effects.inc
Implements hook_image_effect_info().

File

includes/imagecrop.theme.inc, line 89
Theming functions for showing the imagecrop pages.

Code

function theme_imagecrop_reuse($element) {
  $data = $element['#value'];
  $description = t('Crop settings from @preset', array(
    '@preset' => $data['imagecrop_presetname'],
  ));
  return $description;
}