You are here

function imagecrop_colorbox in Image javascript crop 6

Same name and namespace in other branches
  1. 7 imagecrop.module \imagecrop_colorbox()

Render the imagecrop links for colorbox.

File

./imagecrop.module, line 509
Provides a javascript toolbox through an imagecache action.

Code

function imagecrop_colorbox($url, $width, $height) {
  if (!module_exists('colorbox')) {
    return FALSE;
  }
  return '[<a class="colorbox-load" href="' . $url . '?iframe=true&height=' . $height . '&width=' . $width . '">' . t('Crop this image') . '</a>]';
}