You are here

function content_content_field_content_type_edit_form_submit in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 includes/panels/content_types/content_field.inc \content_content_field_content_type_edit_form_submit()

File

includes/panels/content_types/content_field.inc, line 185
This file provides a CTools content type for fields.

Code

function content_content_field_content_type_edit_form_submit(&$form, &$form_state) {

  // Copy everything from our defaults.
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}