You are here

function hook_manualcrop_supported_widgets in Manual Crop 7

Inform Manual Crop about supported widgets and their settings.

1 function implements hook_manualcrop_supported_widgets()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

manualcrop_manualcrop_supported_widgets in ./manualcrop.module
Implements hook_manualcrop_supported_widgets().
1 invocation of hook_manualcrop_supported_widgets()
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 10
API documentation for Manual Crop

Code

function hook_manualcrop_supported_widgets() {
  return array(
    'image_image' => array(
      'thumblist',
      'inline_crop',
      'instant_crop',
    ),
  );
}