You are here

function asset_widget_field_widget_imagefield_crop_widget_form_alter in Asset 7

Implements hook_field_widget_imagefield_crop_widget_form().

File

modules/asset_widget/asset_widget.module, line 1019
Code for the Asset widget module.

Code

function asset_widget_field_widget_imagefield_crop_widget_form_alter(&$elements, $form_state, $context) {
  foreach ($elements as &$element) {
    if (in_array('imagefield_crop_widget_process', $element['#process'])) {
      $element['#process'][] = 'asset_widget_imagefield_crop_widget_process';
    }
  }
}