function imageeditor_elements in Image Editor 6
Implementation of hook_elements().
File
- ./
imageeditor.module, line 513 - Allows online editing of images using different image editing services.
Code
function imageeditor_elements() {
$elements['imagefield_widget'] = array(
'#after_build' => array(
'imageeditor_process_element',
),
);
return $elements;
}