function imagecrop_colorbox in Image javascript crop 7
Same name and namespace in other branches
- 6 imagecrop.module \imagecrop_colorbox()
Render the imagecrop links for colorbox.
File
- ./
imagecrop.module, line 661 - Provides a javascript toolbox through an imagecache action.
Code
function imagecrop_colorbox($url, $width, $height, $text, $style, $element) {
if (!module_exists('colorbox')) {
return FALSE;
}
imagecrop_load_colorbox();
return '<a class="colorbox-load button imagecrop-button"' . $style . ' href="' . $url . '?iframe=true&height=' . $height . '&width=' . $width . '">' . $text . '</a>';
}