function imagefield_crop_widget_info in Imagefield Crop 5
Same name and namespace in other branches
- 6 imagefield_crop.module \imagefield_crop_widget_info()
Implementation of hook_widget_info()
File
- ./
imagefield_crop.module, line 58
Code
function imagefield_crop_widget_info() {
return array(
'image crop' => array(
'label' => 'Image with cropping',
'field types' => array(
'image',
),
),
);
}