You are here

function theme_imagecache_crop in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache_actions.inc \theme_imagecache_crop()

File

./imagecache_actions.inc, line 182

Code

function theme_imagecache_crop($element) {
  $data = $element['#value'];
  return t('width: @width, height: @height, xoffset: @xoffset, yoffset: @yoffset', array(
    '@width' => $data['width'],
    '@height' => $data['height'],
    '@xoffset' => $data['xoffset'],
    '@yoffset' => $data['yoffset'],
  ));
}