You are here

function paragraphs_form_field_ui_field_edit_form_alter in Paragraphs 7

Implements hook_form_field_ui_field_edit_form_alter().

File

./paragraphs.module, line 408
Paragraphs hooks and common functions.

Code

function paragraphs_form_field_ui_field_edit_form_alter(&$form, $form_state) {
  if ($form['#field']['type'] == 'paragraphs') {
    $form['#theme'] = array(
      'paragraphs_bundle_settings_form',
    );
    array_unshift($form['#submit'], 'paragraphs_bundle_settings_form_submit');
  }
}