You are here

function theme_imagefield_focus_scale_and_crop_summary in ImageField Focus 7

File

./imagefield_focus.effects.inc, line 88
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

function theme_imagefield_focus_scale_and_crop_summary($variables) {
  $data = $variables['data'];
  return theme('image_resize_summary', array(
    'data' => $data,
  )) . ' ' . t('!strength strength', array(
    '!strength' => t($data['strength']),
  ));
}