You are here

function imagefield_crop_widget in Imagefield Crop 6

Same name and namespace in other branches
  1. 5 imagefield_crop.module \imagefield_crop_widget()

Implementation of hook_widget().

3 string references to 'imagefield_crop_widget'
imagefield_crop_init in ./imagefield_crop.module
Implementation of hook_init().
imagefield_crop_recrop in ./imagefield_crop.drush.inc
Utility function used if you want to recrop all images in a specific node. This might be useful if you want to reprocess your nodes using a different toolkit, or a different toolkit configuration
imagefield_crop_widget_settings in ./imagefield_crop.module
Implementation of CCK's hook_widget_settings().

File

./imagefield_crop.module, line 62

Code

function imagefield_crop_widget(&$form, &$form_state, $field, $items, $delta = 0) {
  $element = imagefield_widget($form, $form_state, $field, $items, $delta);
  return $element;
}