function hook_manualcrop_supported_widgets_alter in Manual Crop 7
Allows other modules to alter the list of Manual Crop supported widgets and their settings.
See also
hook_manualcrop_supported_widgets()
1 invocation of hook_manualcrop_supported_widgets_alter()
- manualcrop_supported_widgets in ./
manualcrop.helpers.inc - Returns an array of supported widget types or checks if a type is supported.
File
- ./
manualcrop.api.php, line 22 - API documentation for Manual Crop
Code
function hook_manualcrop_supported_widgets_alter(&$widgets) {
$widgets['widget_name'] = array(
'thumblist',
);
}