function simplecrop_image_effect_info in SimpleCrop 7
Implements hook_image_effect_info().
File
- includes/
simplecrop.effects.inc, line 11 - Contains definition and implementation of new image style effects.
Code
function simplecrop_image_effect_info() {
$effects['simplecrop'] = array(
'label' => t('Apply SimpleCrop'),
'help' => t('Crop image to selected area.'),
'effect callback' => 'simplecrop_crop_effect_callback',
);
return $effects;
}