You are here

function imagefield_form_content_field_overview_form_alter in ImageField 6.3

Implementation of hook_form_[form_id]_alter().

Modify the add new field form to make "Image" the default formatter.

File

./imagefield.module, line 272

Code

function imagefield_form_content_field_overview_form_alter(&$form, &$form_state) {
  $form['#submit'][] = 'imagefield_form_content_field_overview_submit';
}