You are here

function imagecrop_elements in Image javascript crop 6

Implementation of hook_elements().

File

./imagecrop.module, line 280
Provides a javascript toolbox through an imagecache action.

Code

function imagecrop_elements() {

  // Add our function to the form element declared by imagefield.
  $elements = array();
  $elements['imagefield_widget'] = array(
    '#after_build' => array(
      'imagecrop_process_cck_field',
    ),
  );
  $elements['image_fupload_imagefield_widget'] = $elements['imagefield_widget'];
  $elements['linkimagefield_widget'] = $elements['imagefield_widget'];
  return $elements;
}