You are here

function file_entity_file_display_content_type_edit_form_submit in File Entity (fieldable files) 7.2

Same name and namespace in other branches
  1. 7.3 plugins/content_types/file_display.inc \file_entity_file_display_content_type_edit_form_submit()

File

plugins/content_types/file_display.inc, line 138

Code

function file_entity_file_display_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];
  }
}