You are here

function imagefield_extended_elements in ImageField Extended 6.3

Same name and namespace in other branches
  1. 6.4 imagefield_extended.module \imagefield_extended_elements()

Implementation of hook_elements().

File

./imagefield_extended.module, line 225
Insert additional fields into an ImageField data array.

Code

function imagefield_extended_elements() {
  $imagefield_elements = imagefield_elements();
  $imagefield_elements['imagefield_widget']['#process'][] = 'imagefield_extended_widget_process';
  return array(
    'imagefield_extended_widget' => $imagefield_elements['imagefield_widget'],
  );
}